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 Nov 26 at 12:34









      Peter

      1497




      1497






















          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
                Nov 26 at 14:13











              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 Nov 26 at 13:49









                  koleygr

                  11k11038




                  11k11038






















                      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 Nov 26 at 14:38

























                          answered Nov 26 at 13:56









                          CarLaTeX

                          28.6k446122




                          28.6k446122






















                              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
                                Nov 26 at 14:13















                              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
                                Nov 26 at 14:13













                              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 Nov 26 at 14:12

























                              answered Nov 26 at 13:48









                              Hiwi Makro

                              1056




                              1056












                              • aww :( I was too slow.
                                – Hiwi Makro
                                Nov 26 at 14:13


















                              • aww :( I was too slow.
                                – Hiwi Makro
                                Nov 26 at 14:13
















                              aww :( I was too slow.
                              – Hiwi Makro
                              Nov 26 at 14:13




                              aww :( I was too slow.
                              – Hiwi Makro
                              Nov 26 at 14:13


















                              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.





                              Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                              Please pay close attention to the following guidance:


                              • 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%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

                              Plaza Victoria

                              In PowerPoint, is there a keyboard shortcut for bulleted / numbered list?

                              How to put 3 figures in Latex with 2 figures side by side and 1 below these side by side images but in...