Yet another images in tables question alignment. Want text to start at top of cell. Not ceteredproblem with Vertical alignment of text and images in long table when using tex4htUse column-separator & (ampersand) inside newenvironmentaligning a multiline formula with the bullet of itemizeConflict between color, graphicx and libertineTwo figures side by side with text wrappingTabular and grid typesettingTop padding inside tabular when using parboxTables: vertical alignment of celltabu package - gaps in vertical linesVertically aligning fixed height tablesI cannot add pictures to my document using latex and texstudio

Does the wearer know what items are in which patch in the Robe of Useful items?

Why does SSL Labs now consider CBC suites weak?

What color to choose as "danger" if the main color of my app is red

Capital gains on stocks sold to take initial investment off the table

What metal is most suitable for a ladder submerged in an underground water tank?

Why did the soldiers of the North disobey Jon?

c++ conditional uni-directional iterator

Would life always name the light from their sun "white"

Why did Varys remove his rings?

Why do galaxies collide

Can I say: "When was your train leaving?" if the train leaves in the future?

Can a tourist shoot a gun in the USA?

How to rename multiple files in a directory at the same time

Will there be more tax deductions if I put the house completely under my name, versus doing a joint ownership?

Why did the UK remove the 'European Union' from its passport?

I recently started my machine learning PhD and I have absolutely no idea what I'm doing

Developers demotivated due to working on same project for more than 2 years

​Cuban​ ​Primes

2 parabolas through 4 points

Is there an academic word that means "to split hairs over"?

Why are goodwill impairments on the statement of cash-flows of GE?

Assembly writer vs compiler

Why were the bells ignored in S8E5?

What do the "optional" resistor and capacitor do in this circuit?



Yet another images in tables question alignment. Want text to start at top of cell. Not cetered


problem with Vertical alignment of text and images in long table when using tex4htUse column-separator & (ampersand) inside newenvironmentaligning a multiline formula with the bullet of itemizeConflict between color, graphicx and libertineTwo figures side by side with text wrappingTabular and grid typesettingTop padding inside tabular when using parboxTables: vertical alignment of celltabu package - gaps in vertical linesVertically aligning fixed height tablesI cannot add pictures to my document using latex and texstudio













4















I want to have a table with image in one cell and text in other cells.



I know about the issue of alignment at center of cells. So I use the trick of



 raisebox-.5height{includegraphics[...]` 


But this does not do what I want. The text in the other cells in the table all start from the middle of the cell. leaving lots of empty space above.



I want the text to start from the top of the other cells. But do not know how to do it. i.e. I want text and images to all start from top of cell.



A picture is worth a 1,000 words, so here is a MWE



documentclass[12pt]article%
usepackagegraphicx

begindocument

begintabularp1.5inhline
AAAAAAAAAAAA AAAAAAAAA&
raisebox-.5heightincludegraphics[width=3in]example-image-a&
BBBBBBBBBBB BBBB BBBBBBBBB BBBBBBBBB\hline
AAAAAAAAAAAA AAAAAAAAA&
raisebox-.5heightincludegraphics[width=3in]example-image-a&
BBBBBBBBBBB BBBBBB BBBBBBBBB BBBBBBB\hline
endtabular

enddocument


Mathematica graphics



If I do not use raisebox then it looks like this



documentclass[12pt]article%
usepackagegraphicx
begindocument
begintabularp1.5inhline
AAAAAAAAAAAA AAAAAAAAA&
includegraphics[width=3in]example-image-a&
BBBBBBBBBBB BBBB BBBBBBBBB BBBBBBBBB\hline
AAAAAAAAAAAA AAAAAAAAA&
includegraphics[width=3in]example-image-a&
BBBBBBBBBBB BBBBBB BBBBBBBBB BBBBBBB\hline
endtabular
enddocument


Mathematica graphics



Which is worst.



Any advice on how to do this?




Update



I tried the suggestion in comment to use vspace0pt before includegraphics which works, but only for tabular. I need it to work also for longtable. I did not think it will make a difference, so my MWE only used tabular.



Here is MWE for longtable



documentclass[12pt]article%
usepackagegraphicx
usepackagelongtable
begindocument
beginlongtablep1.5inhline
AAAAAAAAAAAA AAAAAAAAA&
vspace0ptincludegraphics[width=3in]example-image-a&
BBBBBBBBBBB BBBB BBBBBBBBB BBBBBBBBB\hline
AAAAAAAAAAAA AAAAAAAAA&
vspace0ptincludegraphics[width=3in]example-image-a&
BBBBBBBBBBB BBBBBB BBBBBBBBB BBBBBBB\hline
endlongtable


Which gives



Mathematica graphics



But it works OK for tabular.



documentclass[12pt]article%
usepackagegraphicx
usepackagelongtable
begindocument
begintabularp1.5inhline
AAAAAAAAAAAA AAAAAAAAA&
vspace0ptincludegraphics[width=3in]example-image-a&
BBBBBBBBBBB BBBB BBBBBBBBB BBBBBBBBB\hline
AAAAAAAAAAAA AAAAAAAAA&
vspace0ptincludegraphics[width=3in]example-image-a&
BBBBBBBBBBB BBBBBB BBBBBBBBB BBBBBBB\hline
endtabular
enddocument


Mathematica graphics



So I need a solution that works for longtable and not just tabular as I use longtable much more.



TL 2019










share|improve this question
























  • Use height in the raisebox argument , or add vspace0pt before the graphic (and no raisebox)

    – Ulrike Fischer
    May 4 at 7:29












  • if you don't raise it aligns at the bottom, if you lower by half the height it aligns in the centre, so if you lower by the full height it aligns...

    – David Carlisle
    May 4 at 7:58











  • With longtable you need vspace0ptpar as longtable quits vmode internally at the begin of the cell.

    – Ulrike Fischer
    May 4 at 16:16















4















I want to have a table with image in one cell and text in other cells.



I know about the issue of alignment at center of cells. So I use the trick of



 raisebox-.5height{includegraphics[...]` 


But this does not do what I want. The text in the other cells in the table all start from the middle of the cell. leaving lots of empty space above.



I want the text to start from the top of the other cells. But do not know how to do it. i.e. I want text and images to all start from top of cell.



A picture is worth a 1,000 words, so here is a MWE



documentclass[12pt]article%
usepackagegraphicx

begindocument

begintabularp1.5inhline
AAAAAAAAAAAA AAAAAAAAA&
raisebox-.5heightincludegraphics[width=3in]example-image-a&
BBBBBBBBBBB BBBB BBBBBBBBB BBBBBBBBB\hline
AAAAAAAAAAAA AAAAAAAAA&
raisebox-.5heightincludegraphics[width=3in]example-image-a&
BBBBBBBBBBB BBBBBB BBBBBBBBB BBBBBBB\hline
endtabular

enddocument


Mathematica graphics



If I do not use raisebox then it looks like this



documentclass[12pt]article%
usepackagegraphicx
begindocument
begintabularp1.5inhline
AAAAAAAAAAAA AAAAAAAAA&
includegraphics[width=3in]example-image-a&
BBBBBBBBBBB BBBB BBBBBBBBB BBBBBBBBB\hline
AAAAAAAAAAAA AAAAAAAAA&
includegraphics[width=3in]example-image-a&
BBBBBBBBBBB BBBBBB BBBBBBBBB BBBBBBB\hline
endtabular
enddocument


Mathematica graphics



Which is worst.



Any advice on how to do this?




Update



I tried the suggestion in comment to use vspace0pt before includegraphics which works, but only for tabular. I need it to work also for longtable. I did not think it will make a difference, so my MWE only used tabular.



Here is MWE for longtable



documentclass[12pt]article%
usepackagegraphicx
usepackagelongtable
begindocument
beginlongtablep1.5inhline
AAAAAAAAAAAA AAAAAAAAA&
vspace0ptincludegraphics[width=3in]example-image-a&
BBBBBBBBBBB BBBB BBBBBBBBB BBBBBBBBB\hline
AAAAAAAAAAAA AAAAAAAAA&
vspace0ptincludegraphics[width=3in]example-image-a&
BBBBBBBBBBB BBBBBB BBBBBBBBB BBBBBBB\hline
endlongtable


Which gives



Mathematica graphics



But it works OK for tabular.



documentclass[12pt]article%
usepackagegraphicx
usepackagelongtable
begindocument
begintabularp1.5inhline
AAAAAAAAAAAA AAAAAAAAA&
vspace0ptincludegraphics[width=3in]example-image-a&
BBBBBBBBBBB BBBB BBBBBBBBB BBBBBBBBB\hline
AAAAAAAAAAAA AAAAAAAAA&
vspace0ptincludegraphics[width=3in]example-image-a&
BBBBBBBBBBB BBBBBB BBBBBBBBB BBBBBBB\hline
endtabular
enddocument


Mathematica graphics



So I need a solution that works for longtable and not just tabular as I use longtable much more.



TL 2019










share|improve this question
























  • Use height in the raisebox argument , or add vspace0pt before the graphic (and no raisebox)

    – Ulrike Fischer
    May 4 at 7:29












  • if you don't raise it aligns at the bottom, if you lower by half the height it aligns in the centre, so if you lower by the full height it aligns...

    – David Carlisle
    May 4 at 7:58











  • With longtable you need vspace0ptpar as longtable quits vmode internally at the begin of the cell.

    – Ulrike Fischer
    May 4 at 16:16













4












4








4


0






I want to have a table with image in one cell and text in other cells.



I know about the issue of alignment at center of cells. So I use the trick of



 raisebox-.5height{includegraphics[...]` 


But this does not do what I want. The text in the other cells in the table all start from the middle of the cell. leaving lots of empty space above.



I want the text to start from the top of the other cells. But do not know how to do it. i.e. I want text and images to all start from top of cell.



A picture is worth a 1,000 words, so here is a MWE



documentclass[12pt]article%
usepackagegraphicx

begindocument

begintabularp1.5inhline
AAAAAAAAAAAA AAAAAAAAA&
raisebox-.5heightincludegraphics[width=3in]example-image-a&
BBBBBBBBBBB BBBB BBBBBBBBB BBBBBBBBB\hline
AAAAAAAAAAAA AAAAAAAAA&
raisebox-.5heightincludegraphics[width=3in]example-image-a&
BBBBBBBBBBB BBBBBB BBBBBBBBB BBBBBBB\hline
endtabular

enddocument


Mathematica graphics



If I do not use raisebox then it looks like this



documentclass[12pt]article%
usepackagegraphicx
begindocument
begintabularp1.5inhline
AAAAAAAAAAAA AAAAAAAAA&
includegraphics[width=3in]example-image-a&
BBBBBBBBBBB BBBB BBBBBBBBB BBBBBBBBB\hline
AAAAAAAAAAAA AAAAAAAAA&
includegraphics[width=3in]example-image-a&
BBBBBBBBBBB BBBBBB BBBBBBBBB BBBBBBB\hline
endtabular
enddocument


Mathematica graphics



Which is worst.



Any advice on how to do this?




Update



I tried the suggestion in comment to use vspace0pt before includegraphics which works, but only for tabular. I need it to work also for longtable. I did not think it will make a difference, so my MWE only used tabular.



Here is MWE for longtable



documentclass[12pt]article%
usepackagegraphicx
usepackagelongtable
begindocument
beginlongtablep1.5inhline
AAAAAAAAAAAA AAAAAAAAA&
vspace0ptincludegraphics[width=3in]example-image-a&
BBBBBBBBBBB BBBB BBBBBBBBB BBBBBBBBB\hline
AAAAAAAAAAAA AAAAAAAAA&
vspace0ptincludegraphics[width=3in]example-image-a&
BBBBBBBBBBB BBBBBB BBBBBBBBB BBBBBBB\hline
endlongtable


Which gives



Mathematica graphics



But it works OK for tabular.



documentclass[12pt]article%
usepackagegraphicx
usepackagelongtable
begindocument
begintabularp1.5inhline
AAAAAAAAAAAA AAAAAAAAA&
vspace0ptincludegraphics[width=3in]example-image-a&
BBBBBBBBBBB BBBB BBBBBBBBB BBBBBBBBB\hline
AAAAAAAAAAAA AAAAAAAAA&
vspace0ptincludegraphics[width=3in]example-image-a&
BBBBBBBBBBB BBBBBB BBBBBBBBB BBBBBBB\hline
endtabular
enddocument


Mathematica graphics



So I need a solution that works for longtable and not just tabular as I use longtable much more.



TL 2019










share|improve this question
















I want to have a table with image in one cell and text in other cells.



I know about the issue of alignment at center of cells. So I use the trick of



 raisebox-.5height{includegraphics[...]` 


But this does not do what I want. The text in the other cells in the table all start from the middle of the cell. leaving lots of empty space above.



I want the text to start from the top of the other cells. But do not know how to do it. i.e. I want text and images to all start from top of cell.



A picture is worth a 1,000 words, so here is a MWE



documentclass[12pt]article%
usepackagegraphicx

begindocument

begintabularp1.5inhline
AAAAAAAAAAAA AAAAAAAAA&
raisebox-.5heightincludegraphics[width=3in]example-image-a&
BBBBBBBBBBB BBBB BBBBBBBBB BBBBBBBBB\hline
AAAAAAAAAAAA AAAAAAAAA&
raisebox-.5heightincludegraphics[width=3in]example-image-a&
BBBBBBBBBBB BBBBBB BBBBBBBBB BBBBBBB\hline
endtabular

enddocument


Mathematica graphics



If I do not use raisebox then it looks like this



documentclass[12pt]article%
usepackagegraphicx
begindocument
begintabularp1.5inhline
AAAAAAAAAAAA AAAAAAAAA&
includegraphics[width=3in]example-image-a&
BBBBBBBBBBB BBBB BBBBBBBBB BBBBBBBBB\hline
AAAAAAAAAAAA AAAAAAAAA&
includegraphics[width=3in]example-image-a&
BBBBBBBBBBB BBBBBB BBBBBBBBB BBBBBBB\hline
endtabular
enddocument


Mathematica graphics



Which is worst.



Any advice on how to do this?




Update



I tried the suggestion in comment to use vspace0pt before includegraphics which works, but only for tabular. I need it to work also for longtable. I did not think it will make a difference, so my MWE only used tabular.



Here is MWE for longtable



documentclass[12pt]article%
usepackagegraphicx
usepackagelongtable
begindocument
beginlongtablep1.5inhline
AAAAAAAAAAAA AAAAAAAAA&
vspace0ptincludegraphics[width=3in]example-image-a&
BBBBBBBBBBB BBBB BBBBBBBBB BBBBBBBBB\hline
AAAAAAAAAAAA AAAAAAAAA&
vspace0ptincludegraphics[width=3in]example-image-a&
BBBBBBBBBBB BBBBBB BBBBBBBBB BBBBBBB\hline
endlongtable


Which gives



Mathematica graphics



But it works OK for tabular.



documentclass[12pt]article%
usepackagegraphicx
usepackagelongtable
begindocument
begintabularp1.5inhline
AAAAAAAAAAAA AAAAAAAAA&
vspace0ptincludegraphics[width=3in]example-image-a&
BBBBBBBBBBB BBBB BBBBBBBBB BBBBBBBBB\hline
AAAAAAAAAAAA AAAAAAAAA&
vspace0ptincludegraphics[width=3in]example-image-a&
BBBBBBBBBBB BBBBBB BBBBBBBBB BBBBBBB\hline
endtabular
enddocument


Mathematica graphics



So I need a solution that works for longtable and not just tabular as I use longtable much more.



TL 2019







tables graphics vertical-alignment includegraphics






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited May 4 at 8:10







Nasser

















asked May 4 at 7:16









NasserNasser

8,41073490




8,41073490












  • Use height in the raisebox argument , or add vspace0pt before the graphic (and no raisebox)

    – Ulrike Fischer
    May 4 at 7:29












  • if you don't raise it aligns at the bottom, if you lower by half the height it aligns in the centre, so if you lower by the full height it aligns...

    – David Carlisle
    May 4 at 7:58











  • With longtable you need vspace0ptpar as longtable quits vmode internally at the begin of the cell.

    – Ulrike Fischer
    May 4 at 16:16

















  • Use height in the raisebox argument , or add vspace0pt before the graphic (and no raisebox)

    – Ulrike Fischer
    May 4 at 7:29












  • if you don't raise it aligns at the bottom, if you lower by half the height it aligns in the centre, so if you lower by the full height it aligns...

    – David Carlisle
    May 4 at 7:58











  • With longtable you need vspace0ptpar as longtable quits vmode internally at the begin of the cell.

    – Ulrike Fischer
    May 4 at 16:16
















Use height in the raisebox argument , or add vspace0pt before the graphic (and no raisebox)

– Ulrike Fischer
May 4 at 7:29






Use height in the raisebox argument , or add vspace0pt before the graphic (and no raisebox)

– Ulrike Fischer
May 4 at 7:29














if you don't raise it aligns at the bottom, if you lower by half the height it aligns in the centre, so if you lower by the full height it aligns...

– David Carlisle
May 4 at 7:58





if you don't raise it aligns at the bottom, if you lower by half the height it aligns in the centre, so if you lower by the full height it aligns...

– David Carlisle
May 4 at 7:58













With longtable you need vspace0ptpar as longtable quits vmode internally at the begin of the cell.

– Ulrike Fischer
May 4 at 16:16





With longtable you need vspace0ptpar as longtable quits vmode internally at the begin of the cell.

– Ulrike Fischer
May 4 at 16:16










2 Answers
2






active

oldest

votes


















4














With the valign=t option (from the adjustbox package) you can achieve the desired layout also in a longtable environment:



documentclass[12pt]article%
usepackagegraphicx
usepackagelongtable
usepackage[export]adjustbox
begindocument
beginlongtablep1.5inhline
AAAAAAAAAAAA AAAAAAAAA&
vspace0ptincludegraphics[width=3in,valign=t]example-image-a&
BBBBBBBBBBB BBBB BBBBBBBBB BBBBBBBBB\hline
AAAAAAAAAAAA AAAAAAAAA&
vspace0ptincludegraphics[width=3in,valign=t]example-image-a&
BBBBBBBBBBB BBBBBB BBBBBBBBB BBBBBBB\hline
endlongtable
enddocument


enter image description here






share|improve this answer






























    4














    as supplement to @leandris answer, with some off-topic suggestions (which can be helpful):



    documentclass[12pt]article%
    usepackagelongtable
    usepackage[export]adjustbox % it load graphicx too
    usepackageetoolbox % for Gin's key patches

    begindocument
    begingroup
    expandafterpatchcmdcsname Gin@iiendcsname % needed etoolbox
    setkeys Gin#1
    setkeys Gin
    width=dimexprlinewidth-tabcolsep, % standard graphicx settings
    valign=t, margin=0pt 6pt 0pt 6pt % settings from adjustbox

    beginlongtablep1.5in
    hline
    AAAA AAA AA AAA AA AAAAA AA
    & includegraphicsexample-image-a
    & BBBBBBBBBBB BBBB BBBBBBBBB BBBBBBBBB \
    hline
    AAAA AAA AA AAA AA AAAAA AA
    & includegraphicsexample-image-b
    & BBBBBBBBBBB BBBB BBBBBBBBB BBBBBBBBB \
    hline
    AAAA AAA AA AAA AA AAAAA AA
    & includegraphicsexample-image-c
    & BBBBBBBBBBB BBBB BBBBBBBBB BBBBBBBBB \
    hline
    endlongtable
    endgroup
    enddocument


    enter image description here



    note: your table is wider than text width!






    share|improve this answer























      Your Answer








      StackExchange.ready(function()
      var channelOptions =
      tags: "".split(" "),
      id: "85"
      ;
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function()
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled)
      StackExchange.using("snippets", function()
      createEditor();
      );

      else
      createEditor();

      );

      function createEditor()
      StackExchange.prepareEditor(
      heartbeatType: 'answer',
      autoActivateHeartbeat: false,
      convertImagesToLinks: false,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: null,
      bindNavPrevention: true,
      postfix: "",
      imageUploader:
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      ,
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      );



      );













      draft saved

      draft discarded


















      StackExchange.ready(
      function ()
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f489102%2fyet-another-images-in-tables-question-alignment-want-text-to-start-at-top-of-ce%23new-answer', 'question_page');

      );

      Post as a guest















      Required, but never shown

























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      4














      With the valign=t option (from the adjustbox package) you can achieve the desired layout also in a longtable environment:



      documentclass[12pt]article%
      usepackagegraphicx
      usepackagelongtable
      usepackage[export]adjustbox
      begindocument
      beginlongtablep1.5inhline
      AAAAAAAAAAAA AAAAAAAAA&
      vspace0ptincludegraphics[width=3in,valign=t]example-image-a&
      BBBBBBBBBBB BBBB BBBBBBBBB BBBBBBBBB\hline
      AAAAAAAAAAAA AAAAAAAAA&
      vspace0ptincludegraphics[width=3in,valign=t]example-image-a&
      BBBBBBBBBBB BBBBBB BBBBBBBBB BBBBBBB\hline
      endlongtable
      enddocument


      enter image description here






      share|improve this answer



























        4














        With the valign=t option (from the adjustbox package) you can achieve the desired layout also in a longtable environment:



        documentclass[12pt]article%
        usepackagegraphicx
        usepackagelongtable
        usepackage[export]adjustbox
        begindocument
        beginlongtablep1.5inhline
        AAAAAAAAAAAA AAAAAAAAA&
        vspace0ptincludegraphics[width=3in,valign=t]example-image-a&
        BBBBBBBBBBB BBBB BBBBBBBBB BBBBBBBBB\hline
        AAAAAAAAAAAA AAAAAAAAA&
        vspace0ptincludegraphics[width=3in,valign=t]example-image-a&
        BBBBBBBBBBB BBBBBB BBBBBBBBB BBBBBBB\hline
        endlongtable
        enddocument


        enter image description here






        share|improve this answer

























          4












          4








          4







          With the valign=t option (from the adjustbox package) you can achieve the desired layout also in a longtable environment:



          documentclass[12pt]article%
          usepackagegraphicx
          usepackagelongtable
          usepackage[export]adjustbox
          begindocument
          beginlongtablep1.5inhline
          AAAAAAAAAAAA AAAAAAAAA&
          vspace0ptincludegraphics[width=3in,valign=t]example-image-a&
          BBBBBBBBBBB BBBB BBBBBBBBB BBBBBBBBB\hline
          AAAAAAAAAAAA AAAAAAAAA&
          vspace0ptincludegraphics[width=3in,valign=t]example-image-a&
          BBBBBBBBBBB BBBBBB BBBBBBBBB BBBBBBB\hline
          endlongtable
          enddocument


          enter image description here






          share|improve this answer













          With the valign=t option (from the adjustbox package) you can achieve the desired layout also in a longtable environment:



          documentclass[12pt]article%
          usepackagegraphicx
          usepackagelongtable
          usepackage[export]adjustbox
          begindocument
          beginlongtablep1.5inhline
          AAAAAAAAAAAA AAAAAAAAA&
          vspace0ptincludegraphics[width=3in,valign=t]example-image-a&
          BBBBBBBBBBB BBBB BBBBBBBBB BBBBBBBBB\hline
          AAAAAAAAAAAA AAAAAAAAA&
          vspace0ptincludegraphics[width=3in,valign=t]example-image-a&
          BBBBBBBBBBB BBBBBB BBBBBBBBB BBBBBBB\hline
          endlongtable
          enddocument


          enter image description here







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered May 4 at 8:19









          leandriisleandriis

          12.8k1933




          12.8k1933





















              4














              as supplement to @leandris answer, with some off-topic suggestions (which can be helpful):



              documentclass[12pt]article%
              usepackagelongtable
              usepackage[export]adjustbox % it load graphicx too
              usepackageetoolbox % for Gin's key patches

              begindocument
              begingroup
              expandafterpatchcmdcsname Gin@iiendcsname % needed etoolbox
              setkeys Gin#1
              setkeys Gin
              width=dimexprlinewidth-tabcolsep, % standard graphicx settings
              valign=t, margin=0pt 6pt 0pt 6pt % settings from adjustbox

              beginlongtablep1.5in
              hline
              AAAA AAA AA AAA AA AAAAA AA
              & includegraphicsexample-image-a
              & BBBBBBBBBBB BBBB BBBBBBBBB BBBBBBBBB \
              hline
              AAAA AAA AA AAA AA AAAAA AA
              & includegraphicsexample-image-b
              & BBBBBBBBBBB BBBB BBBBBBBBB BBBBBBBBB \
              hline
              AAAA AAA AA AAA AA AAAAA AA
              & includegraphicsexample-image-c
              & BBBBBBBBBBB BBBB BBBBBBBBB BBBBBBBBB \
              hline
              endlongtable
              endgroup
              enddocument


              enter image description here



              note: your table is wider than text width!






              share|improve this answer



























                4














                as supplement to @leandris answer, with some off-topic suggestions (which can be helpful):



                documentclass[12pt]article%
                usepackagelongtable
                usepackage[export]adjustbox % it load graphicx too
                usepackageetoolbox % for Gin's key patches

                begindocument
                begingroup
                expandafterpatchcmdcsname Gin@iiendcsname % needed etoolbox
                setkeys Gin#1
                setkeys Gin
                width=dimexprlinewidth-tabcolsep, % standard graphicx settings
                valign=t, margin=0pt 6pt 0pt 6pt % settings from adjustbox

                beginlongtablep1.5in
                hline
                AAAA AAA AA AAA AA AAAAA AA
                & includegraphicsexample-image-a
                & BBBBBBBBBBB BBBB BBBBBBBBB BBBBBBBBB \
                hline
                AAAA AAA AA AAA AA AAAAA AA
                & includegraphicsexample-image-b
                & BBBBBBBBBBB BBBB BBBBBBBBB BBBBBBBBB \
                hline
                AAAA AAA AA AAA AA AAAAA AA
                & includegraphicsexample-image-c
                & BBBBBBBBBBB BBBB BBBBBBBBB BBBBBBBBB \
                hline
                endlongtable
                endgroup
                enddocument


                enter image description here



                note: your table is wider than text width!






                share|improve this answer

























                  4












                  4








                  4







                  as supplement to @leandris answer, with some off-topic suggestions (which can be helpful):



                  documentclass[12pt]article%
                  usepackagelongtable
                  usepackage[export]adjustbox % it load graphicx too
                  usepackageetoolbox % for Gin's key patches

                  begindocument
                  begingroup
                  expandafterpatchcmdcsname Gin@iiendcsname % needed etoolbox
                  setkeys Gin#1
                  setkeys Gin
                  width=dimexprlinewidth-tabcolsep, % standard graphicx settings
                  valign=t, margin=0pt 6pt 0pt 6pt % settings from adjustbox

                  beginlongtablep1.5in
                  hline
                  AAAA AAA AA AAA AA AAAAA AA
                  & includegraphicsexample-image-a
                  & BBBBBBBBBBB BBBB BBBBBBBBB BBBBBBBBB \
                  hline
                  AAAA AAA AA AAA AA AAAAA AA
                  & includegraphicsexample-image-b
                  & BBBBBBBBBBB BBBB BBBBBBBBB BBBBBBBBB \
                  hline
                  AAAA AAA AA AAA AA AAAAA AA
                  & includegraphicsexample-image-c
                  & BBBBBBBBBBB BBBB BBBBBBBBB BBBBBBBBB \
                  hline
                  endlongtable
                  endgroup
                  enddocument


                  enter image description here



                  note: your table is wider than text width!






                  share|improve this answer













                  as supplement to @leandris answer, with some off-topic suggestions (which can be helpful):



                  documentclass[12pt]article%
                  usepackagelongtable
                  usepackage[export]adjustbox % it load graphicx too
                  usepackageetoolbox % for Gin's key patches

                  begindocument
                  begingroup
                  expandafterpatchcmdcsname Gin@iiendcsname % needed etoolbox
                  setkeys Gin#1
                  setkeys Gin
                  width=dimexprlinewidth-tabcolsep, % standard graphicx settings
                  valign=t, margin=0pt 6pt 0pt 6pt % settings from adjustbox

                  beginlongtablep1.5in
                  hline
                  AAAA AAA AA AAA AA AAAAA AA
                  & includegraphicsexample-image-a
                  & BBBBBBBBBBB BBBB BBBBBBBBB BBBBBBBBB \
                  hline
                  AAAA AAA AA AAA AA AAAAA AA
                  & includegraphicsexample-image-b
                  & BBBBBBBBBBB BBBB BBBBBBBBB BBBBBBBBB \
                  hline
                  AAAA AAA AA AAA AA AAAAA AA
                  & includegraphicsexample-image-c
                  & BBBBBBBBBBB BBBB BBBBBBBBB BBBBBBBBB \
                  hline
                  endlongtable
                  endgroup
                  enddocument


                  enter image description here



                  note: your table is wider than text width!







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered May 4 at 8:41









                  ZarkoZarko

                  134k872178




                  134k872178



























                      draft saved

                      draft discarded
















































                      Thanks for contributing an answer to TeX - LaTeX Stack Exchange!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid


                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.

                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function ()
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f489102%2fyet-another-images-in-tables-question-alignment-want-text-to-start-at-top-of-ce%23new-answer', 'question_page');

                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      Popular posts from this blog

                      Wikipedia:Vital articles Мазмуну Biography - Өмүр баян Philosophy and psychology - Философия жана психология Religion - Дин Social sciences - Коомдук илимдер Language and literature - Тил жана адабият Science - Илим Technology - Технология Arts and recreation - Искусство жана эс алуу History and geography - Тарых жана география Навигация менюсу

                      Bruxelas-Capital Índice Historia | Composición | Situación lingüística | Clima | Cidades irmandadas | Notas | Véxase tamén | Menú de navegacióneO uso das linguas en Bruxelas e a situación do neerlandés"Rexión de Bruxelas Capital"o orixinalSitio da rexiónPáxina de Bruselas no sitio da Oficina de Promoción Turística de Valonia e BruxelasMapa Interactivo da Rexión de Bruxelas-CapitaleeWorldCat332144929079854441105155190212ID28008674080552-90000 0001 0666 3698n94104302ID540940339365017018237

                      What should I write in an apology letter, since I have decided not to join a company after accepting an offer letterShould I keep looking after accepting a job offer?What should I do when I've been verbally told I would get an offer letter, but still haven't gotten one after 4 weeks?Do I accept an offer from a company that I am not likely to join?New job hasn't confirmed starting date and I want to give current employer as much notice as possibleHow should I address my manager in my resignation letter?HR delayed background verification, now jobless as resignedNo email communication after accepting a formal written offer. How should I phrase the call?What should I do if after receiving a verbal offer letter I am informed that my written job offer is put on hold due to some internal issues?Should I inform the current employer that I am about to resign within 1-2 weeks since I have signed the offer letter and waiting for visa?What company will do, if I send their offer letter to another company