How to add a description after each column at the bottom?











up vote
3
down vote

favorite












I want to add a description "column a" for the first column, "column b" for the second column, "column c" for the third column. How to do that?



documentclass{article}
begin{document}
begin{figure}[h!]
includegraphics[width=0.32textwidth]{example-image-a}
includegraphics[width=0.32textwidth]{example-image-b}
includegraphics[width=0.32textwidth]{example-image-c}

includegraphics[width=0.32textwidth]{example-image-a}
includegraphics[width=0.32textwidth]{example-image-b}
includegraphics[width=0.32textwidth]{example-image-c}

includegraphics[width=0.32textwidth]{example-image-a}
includegraphics[width=0.32textwidth]{example-image-b}
includegraphics[width=0.32textwidth]{example-image-c}
caption{Column A $rightarrow$ Column B $rightarrow$ Column C. }
end{figure}

end{document}


table_grid**strong text**










share|improve this question


























    up vote
    3
    down vote

    favorite












    I want to add a description "column a" for the first column, "column b" for the second column, "column c" for the third column. How to do that?



    documentclass{article}
    begin{document}
    begin{figure}[h!]
    includegraphics[width=0.32textwidth]{example-image-a}
    includegraphics[width=0.32textwidth]{example-image-b}
    includegraphics[width=0.32textwidth]{example-image-c}

    includegraphics[width=0.32textwidth]{example-image-a}
    includegraphics[width=0.32textwidth]{example-image-b}
    includegraphics[width=0.32textwidth]{example-image-c}

    includegraphics[width=0.32textwidth]{example-image-a}
    includegraphics[width=0.32textwidth]{example-image-b}
    includegraphics[width=0.32textwidth]{example-image-c}
    caption{Column A $rightarrow$ Column B $rightarrow$ Column C. }
    end{figure}

    end{document}


    table_grid**strong text**










    share|improve this question
























      up vote
      3
      down vote

      favorite









      up vote
      3
      down vote

      favorite











      I want to add a description "column a" for the first column, "column b" for the second column, "column c" for the third column. How to do that?



      documentclass{article}
      begin{document}
      begin{figure}[h!]
      includegraphics[width=0.32textwidth]{example-image-a}
      includegraphics[width=0.32textwidth]{example-image-b}
      includegraphics[width=0.32textwidth]{example-image-c}

      includegraphics[width=0.32textwidth]{example-image-a}
      includegraphics[width=0.32textwidth]{example-image-b}
      includegraphics[width=0.32textwidth]{example-image-c}

      includegraphics[width=0.32textwidth]{example-image-a}
      includegraphics[width=0.32textwidth]{example-image-b}
      includegraphics[width=0.32textwidth]{example-image-c}
      caption{Column A $rightarrow$ Column B $rightarrow$ Column C. }
      end{figure}

      end{document}


      table_grid**strong text**










      share|improve this question













      I want to add a description "column a" for the first column, "column b" for the second column, "column c" for the third column. How to do that?



      documentclass{article}
      begin{document}
      begin{figure}[h!]
      includegraphics[width=0.32textwidth]{example-image-a}
      includegraphics[width=0.32textwidth]{example-image-b}
      includegraphics[width=0.32textwidth]{example-image-c}

      includegraphics[width=0.32textwidth]{example-image-a}
      includegraphics[width=0.32textwidth]{example-image-b}
      includegraphics[width=0.32textwidth]{example-image-c}

      includegraphics[width=0.32textwidth]{example-image-a}
      includegraphics[width=0.32textwidth]{example-image-b}
      includegraphics[width=0.32textwidth]{example-image-c}
      caption{Column A $rightarrow$ Column B $rightarrow$ Column C. }
      end{figure}

      end{document}


      table_grid**strong text**







      graphics subfloats






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 14 hours ago









      Peter

      1576




      1576






















          3 Answers
          3






          active

          oldest

          votes

















          up vote
          2
          down vote



          accepted










          A solution with tabular for more control:



          documentclass{article}
          usepackage{graphicx}
          begin{document}
          begin{figure}[h!]
          begin{tabular}{c@{hspace{1.5mm}}c@{hspace{1.5mm}}c}
          includegraphics[width=0.32textwidth]{example-image-a}&
          includegraphics[width=0.32textwidth]{example-image-b}&
          includegraphics[width=0.32textwidth]{example-image-c}\[0.1mm]
          includegraphics[width=0.32textwidth]{example-image-a}&
          includegraphics[width=0.32textwidth]{example-image-b}&
          includegraphics[width=0.32textwidth]{example-image-c}\[0.1mm]
          includegraphics[width=0.32textwidth]{example-image-a}&
          includegraphics[width=0.32textwidth]{example-image-b}&
          includegraphics[width=0.32textwidth]{example-image-c}\[0.1mm]
          (a) &
          (b) &
          (c)
          end{tabular}
          caption{Column A $rightarrow$ Column B $rightarrow$ Column C. }
          end{figure}

          end{document}


          enter image description here






          share|improve this answer




























            up vote
            2
            down vote













            A solution with subfigure:



            documentclass{article}
            usepackage{graphicx}
            usepackage{subcaption}
            begin{document}
            begin{figure}[h!]
            begin{subfigure}[t]{.32linewidth}
            includegraphics[width=linewidth]{example-image-a}
            includegraphics[width=linewidth]{example-image-b}
            includegraphics[width=linewidth]{example-image-c}
            caption{Column A $rightarrow$}
            end{subfigure}
            begin{subfigure}[t]{.32linewidth}
            includegraphics[width=linewidth]{example-image-a}
            includegraphics[width=linewidth]{example-image-b}
            includegraphics[width=linewidth]{example-image-c}
            caption{Column B $rightarrow$}
            end{subfigure}
            begin{subfigure}[t]{.32linewidth}
            includegraphics[width=linewidth]{example-image-a}
            includegraphics[width=linewidth]{example-image-b}
            includegraphics[width=linewidth]{example-image-c}
            caption{Column C. }
            end{subfigure}
            caption{Caption for all the three subfigures}
            end{figure}
            end{document}


            enter image description here






            share|improve this answer






























              up vote
              1
              down vote













              Use Subfigures, see related question.



              documentclass{article}
              usepackage[utf8]{inputenc}
              usepackage{graphicx}
              usepackage{caption}
              usepackage{subcaption}



              begin{document}
              begin{figure}[t]
              centering
              begin{subfigure}[t]{0.32textwidth}
              includegraphics{a}
              includegraphics{a}
              includegraphics{a}
              subcaption{caption of Column A}
              end{subfigure}
              begin{subfigure}[t]{0.32textwidth}
              includegraphics{b}
              includegraphics{b}
              includegraphics{b}
              subcaption{caption of Column B}
              end{subfigure}
              begin{subfigure}[t]{0.32textwidth}
              includegraphics{c}
              includegraphics{c}
              includegraphics{c}
              subcaption{caption of Column C}
              end{subfigure}
              caption{Caption of all the figures }
              end{figure}

              end{document}


              You are able to nest subfigures within the figure-environment.



              enter image description here






              share|improve this answer























              • aww :( I was too slow.
                – Hiwi Makro
                12 hours ago











              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',
              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%2f461812%2fhow-to-add-a-description-after-each-column-at-the-bottom%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              3 Answers
              3






              active

              oldest

              votes








              3 Answers
              3






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes








              up vote
              2
              down vote



              accepted










              A solution with tabular for more control:



              documentclass{article}
              usepackage{graphicx}
              begin{document}
              begin{figure}[h!]
              begin{tabular}{c@{hspace{1.5mm}}c@{hspace{1.5mm}}c}
              includegraphics[width=0.32textwidth]{example-image-a}&
              includegraphics[width=0.32textwidth]{example-image-b}&
              includegraphics[width=0.32textwidth]{example-image-c}\[0.1mm]
              includegraphics[width=0.32textwidth]{example-image-a}&
              includegraphics[width=0.32textwidth]{example-image-b}&
              includegraphics[width=0.32textwidth]{example-image-c}\[0.1mm]
              includegraphics[width=0.32textwidth]{example-image-a}&
              includegraphics[width=0.32textwidth]{example-image-b}&
              includegraphics[width=0.32textwidth]{example-image-c}\[0.1mm]
              (a) &
              (b) &
              (c)
              end{tabular}
              caption{Column A $rightarrow$ Column B $rightarrow$ Column C. }
              end{figure}

              end{document}


              enter image description here






              share|improve this answer

























                up vote
                2
                down vote



                accepted










                A solution with tabular for more control:



                documentclass{article}
                usepackage{graphicx}
                begin{document}
                begin{figure}[h!]
                begin{tabular}{c@{hspace{1.5mm}}c@{hspace{1.5mm}}c}
                includegraphics[width=0.32textwidth]{example-image-a}&
                includegraphics[width=0.32textwidth]{example-image-b}&
                includegraphics[width=0.32textwidth]{example-image-c}\[0.1mm]
                includegraphics[width=0.32textwidth]{example-image-a}&
                includegraphics[width=0.32textwidth]{example-image-b}&
                includegraphics[width=0.32textwidth]{example-image-c}\[0.1mm]
                includegraphics[width=0.32textwidth]{example-image-a}&
                includegraphics[width=0.32textwidth]{example-image-b}&
                includegraphics[width=0.32textwidth]{example-image-c}\[0.1mm]
                (a) &
                (b) &
                (c)
                end{tabular}
                caption{Column A $rightarrow$ Column B $rightarrow$ Column C. }
                end{figure}

                end{document}


                enter image description here






                share|improve this answer























                  up vote
                  2
                  down vote



                  accepted







                  up vote
                  2
                  down vote



                  accepted






                  A solution with tabular for more control:



                  documentclass{article}
                  usepackage{graphicx}
                  begin{document}
                  begin{figure}[h!]
                  begin{tabular}{c@{hspace{1.5mm}}c@{hspace{1.5mm}}c}
                  includegraphics[width=0.32textwidth]{example-image-a}&
                  includegraphics[width=0.32textwidth]{example-image-b}&
                  includegraphics[width=0.32textwidth]{example-image-c}\[0.1mm]
                  includegraphics[width=0.32textwidth]{example-image-a}&
                  includegraphics[width=0.32textwidth]{example-image-b}&
                  includegraphics[width=0.32textwidth]{example-image-c}\[0.1mm]
                  includegraphics[width=0.32textwidth]{example-image-a}&
                  includegraphics[width=0.32textwidth]{example-image-b}&
                  includegraphics[width=0.32textwidth]{example-image-c}\[0.1mm]
                  (a) &
                  (b) &
                  (c)
                  end{tabular}
                  caption{Column A $rightarrow$ Column B $rightarrow$ Column C. }
                  end{figure}

                  end{document}


                  enter image description here






                  share|improve this answer












                  A solution with tabular for more control:



                  documentclass{article}
                  usepackage{graphicx}
                  begin{document}
                  begin{figure}[h!]
                  begin{tabular}{c@{hspace{1.5mm}}c@{hspace{1.5mm}}c}
                  includegraphics[width=0.32textwidth]{example-image-a}&
                  includegraphics[width=0.32textwidth]{example-image-b}&
                  includegraphics[width=0.32textwidth]{example-image-c}\[0.1mm]
                  includegraphics[width=0.32textwidth]{example-image-a}&
                  includegraphics[width=0.32textwidth]{example-image-b}&
                  includegraphics[width=0.32textwidth]{example-image-c}\[0.1mm]
                  includegraphics[width=0.32textwidth]{example-image-a}&
                  includegraphics[width=0.32textwidth]{example-image-b}&
                  includegraphics[width=0.32textwidth]{example-image-c}\[0.1mm]
                  (a) &
                  (b) &
                  (c)
                  end{tabular}
                  caption{Column A $rightarrow$ Column B $rightarrow$ Column C. }
                  end{figure}

                  end{document}


                  enter image description here







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered 13 hours ago









                  koleygr

                  10.9k1937




                  10.9k1937






















                      up vote
                      2
                      down vote













                      A solution with subfigure:



                      documentclass{article}
                      usepackage{graphicx}
                      usepackage{subcaption}
                      begin{document}
                      begin{figure}[h!]
                      begin{subfigure}[t]{.32linewidth}
                      includegraphics[width=linewidth]{example-image-a}
                      includegraphics[width=linewidth]{example-image-b}
                      includegraphics[width=linewidth]{example-image-c}
                      caption{Column A $rightarrow$}
                      end{subfigure}
                      begin{subfigure}[t]{.32linewidth}
                      includegraphics[width=linewidth]{example-image-a}
                      includegraphics[width=linewidth]{example-image-b}
                      includegraphics[width=linewidth]{example-image-c}
                      caption{Column B $rightarrow$}
                      end{subfigure}
                      begin{subfigure}[t]{.32linewidth}
                      includegraphics[width=linewidth]{example-image-a}
                      includegraphics[width=linewidth]{example-image-b}
                      includegraphics[width=linewidth]{example-image-c}
                      caption{Column C. }
                      end{subfigure}
                      caption{Caption for all the three subfigures}
                      end{figure}
                      end{document}


                      enter image description here






                      share|improve this answer



























                        up vote
                        2
                        down vote













                        A solution with subfigure:



                        documentclass{article}
                        usepackage{graphicx}
                        usepackage{subcaption}
                        begin{document}
                        begin{figure}[h!]
                        begin{subfigure}[t]{.32linewidth}
                        includegraphics[width=linewidth]{example-image-a}
                        includegraphics[width=linewidth]{example-image-b}
                        includegraphics[width=linewidth]{example-image-c}
                        caption{Column A $rightarrow$}
                        end{subfigure}
                        begin{subfigure}[t]{.32linewidth}
                        includegraphics[width=linewidth]{example-image-a}
                        includegraphics[width=linewidth]{example-image-b}
                        includegraphics[width=linewidth]{example-image-c}
                        caption{Column B $rightarrow$}
                        end{subfigure}
                        begin{subfigure}[t]{.32linewidth}
                        includegraphics[width=linewidth]{example-image-a}
                        includegraphics[width=linewidth]{example-image-b}
                        includegraphics[width=linewidth]{example-image-c}
                        caption{Column C. }
                        end{subfigure}
                        caption{Caption for all the three subfigures}
                        end{figure}
                        end{document}


                        enter image description here






                        share|improve this answer

























                          up vote
                          2
                          down vote










                          up vote
                          2
                          down vote









                          A solution with subfigure:



                          documentclass{article}
                          usepackage{graphicx}
                          usepackage{subcaption}
                          begin{document}
                          begin{figure}[h!]
                          begin{subfigure}[t]{.32linewidth}
                          includegraphics[width=linewidth]{example-image-a}
                          includegraphics[width=linewidth]{example-image-b}
                          includegraphics[width=linewidth]{example-image-c}
                          caption{Column A $rightarrow$}
                          end{subfigure}
                          begin{subfigure}[t]{.32linewidth}
                          includegraphics[width=linewidth]{example-image-a}
                          includegraphics[width=linewidth]{example-image-b}
                          includegraphics[width=linewidth]{example-image-c}
                          caption{Column B $rightarrow$}
                          end{subfigure}
                          begin{subfigure}[t]{.32linewidth}
                          includegraphics[width=linewidth]{example-image-a}
                          includegraphics[width=linewidth]{example-image-b}
                          includegraphics[width=linewidth]{example-image-c}
                          caption{Column C. }
                          end{subfigure}
                          caption{Caption for all the three subfigures}
                          end{figure}
                          end{document}


                          enter image description here






                          share|improve this answer














                          A solution with subfigure:



                          documentclass{article}
                          usepackage{graphicx}
                          usepackage{subcaption}
                          begin{document}
                          begin{figure}[h!]
                          begin{subfigure}[t]{.32linewidth}
                          includegraphics[width=linewidth]{example-image-a}
                          includegraphics[width=linewidth]{example-image-b}
                          includegraphics[width=linewidth]{example-image-c}
                          caption{Column A $rightarrow$}
                          end{subfigure}
                          begin{subfigure}[t]{.32linewidth}
                          includegraphics[width=linewidth]{example-image-a}
                          includegraphics[width=linewidth]{example-image-b}
                          includegraphics[width=linewidth]{example-image-c}
                          caption{Column B $rightarrow$}
                          end{subfigure}
                          begin{subfigure}[t]{.32linewidth}
                          includegraphics[width=linewidth]{example-image-a}
                          includegraphics[width=linewidth]{example-image-b}
                          includegraphics[width=linewidth]{example-image-c}
                          caption{Column C. }
                          end{subfigure}
                          caption{Caption for all the three subfigures}
                          end{figure}
                          end{document}


                          enter image description here







                          share|improve this answer














                          share|improve this answer



                          share|improve this answer








                          edited 12 hours ago

























                          answered 13 hours ago









                          CarLaTeX

                          27.5k445120




                          27.5k445120






















                              up vote
                              1
                              down vote













                              Use Subfigures, see related question.



                              documentclass{article}
                              usepackage[utf8]{inputenc}
                              usepackage{graphicx}
                              usepackage{caption}
                              usepackage{subcaption}



                              begin{document}
                              begin{figure}[t]
                              centering
                              begin{subfigure}[t]{0.32textwidth}
                              includegraphics{a}
                              includegraphics{a}
                              includegraphics{a}
                              subcaption{caption of Column A}
                              end{subfigure}
                              begin{subfigure}[t]{0.32textwidth}
                              includegraphics{b}
                              includegraphics{b}
                              includegraphics{b}
                              subcaption{caption of Column B}
                              end{subfigure}
                              begin{subfigure}[t]{0.32textwidth}
                              includegraphics{c}
                              includegraphics{c}
                              includegraphics{c}
                              subcaption{caption of Column C}
                              end{subfigure}
                              caption{Caption of all the figures }
                              end{figure}

                              end{document}


                              You are able to nest subfigures within the figure-environment.



                              enter image description here






                              share|improve this answer























                              • aww :( I was too slow.
                                – Hiwi Makro
                                12 hours ago















                              up vote
                              1
                              down vote













                              Use Subfigures, see related question.



                              documentclass{article}
                              usepackage[utf8]{inputenc}
                              usepackage{graphicx}
                              usepackage{caption}
                              usepackage{subcaption}



                              begin{document}
                              begin{figure}[t]
                              centering
                              begin{subfigure}[t]{0.32textwidth}
                              includegraphics{a}
                              includegraphics{a}
                              includegraphics{a}
                              subcaption{caption of Column A}
                              end{subfigure}
                              begin{subfigure}[t]{0.32textwidth}
                              includegraphics{b}
                              includegraphics{b}
                              includegraphics{b}
                              subcaption{caption of Column B}
                              end{subfigure}
                              begin{subfigure}[t]{0.32textwidth}
                              includegraphics{c}
                              includegraphics{c}
                              includegraphics{c}
                              subcaption{caption of Column C}
                              end{subfigure}
                              caption{Caption of all the figures }
                              end{figure}

                              end{document}


                              You are able to nest subfigures within the figure-environment.



                              enter image description here






                              share|improve this answer























                              • aww :( I was too slow.
                                – Hiwi Makro
                                12 hours ago













                              up vote
                              1
                              down vote










                              up vote
                              1
                              down vote









                              Use Subfigures, see related question.



                              documentclass{article}
                              usepackage[utf8]{inputenc}
                              usepackage{graphicx}
                              usepackage{caption}
                              usepackage{subcaption}



                              begin{document}
                              begin{figure}[t]
                              centering
                              begin{subfigure}[t]{0.32textwidth}
                              includegraphics{a}
                              includegraphics{a}
                              includegraphics{a}
                              subcaption{caption of Column A}
                              end{subfigure}
                              begin{subfigure}[t]{0.32textwidth}
                              includegraphics{b}
                              includegraphics{b}
                              includegraphics{b}
                              subcaption{caption of Column B}
                              end{subfigure}
                              begin{subfigure}[t]{0.32textwidth}
                              includegraphics{c}
                              includegraphics{c}
                              includegraphics{c}
                              subcaption{caption of Column C}
                              end{subfigure}
                              caption{Caption of all the figures }
                              end{figure}

                              end{document}


                              You are able to nest subfigures within the figure-environment.



                              enter image description here






                              share|improve this answer














                              Use Subfigures, see related question.



                              documentclass{article}
                              usepackage[utf8]{inputenc}
                              usepackage{graphicx}
                              usepackage{caption}
                              usepackage{subcaption}



                              begin{document}
                              begin{figure}[t]
                              centering
                              begin{subfigure}[t]{0.32textwidth}
                              includegraphics{a}
                              includegraphics{a}
                              includegraphics{a}
                              subcaption{caption of Column A}
                              end{subfigure}
                              begin{subfigure}[t]{0.32textwidth}
                              includegraphics{b}
                              includegraphics{b}
                              includegraphics{b}
                              subcaption{caption of Column B}
                              end{subfigure}
                              begin{subfigure}[t]{0.32textwidth}
                              includegraphics{c}
                              includegraphics{c}
                              includegraphics{c}
                              subcaption{caption of Column C}
                              end{subfigure}
                              caption{Caption of all the figures }
                              end{figure}

                              end{document}


                              You are able to nest subfigures within the figure-environment.



                              enter image description here







                              share|improve this answer














                              share|improve this answer



                              share|improve this answer








                              edited 12 hours ago

























                              answered 13 hours ago









                              Hiwi Makro

                              355




                              355












                              • aww :( I was too slow.
                                – Hiwi Makro
                                12 hours ago


















                              • aww :( I was too slow.
                                – Hiwi Makro
                                12 hours ago
















                              aww :( I was too slow.
                              – Hiwi Makro
                              12 hours ago




                              aww :( I was too slow.
                              – Hiwi Makro
                              12 hours ago


















                               

                              draft saved


                              draft discarded



















































                               


                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function () {
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f461812%2fhow-to-add-a-description-after-each-column-at-the-bottom%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

                              How did Captain America manage to do this?

                              迪纳利

                              南乌拉尔铁路局