How can I create a Continued Figure Caption?If I break up a large table so it doesn't overflow onto the next...

What do you call something that goes against the spirit of the law, but is legal when interpreting the law to the letter?

How to move the player while also allowing forces to affect it

Is Social Media Science Fiction?

What happens when a metallic dragon and a chromatic dragon mate?

Re-submission of rejected manuscript without informing co-authors

Why airport relocation isn't done gradually?

Why is my log file so massive? 22gb. I am running log backups

What is the command to reset a PC without deleting any files

How to answer pointed "are you quitting" questioning when I don't want them to suspect

Unbreakable Formation vs. Cry of the Carnarium

Where else does the Shulchan Aruch quote an authority by name?

Is there a familial term for apples and pears?

Is every set a filtered colimit of finite sets?

How to deal with fear of taking dependencies

extract characters between two commas?

Information to fellow intern about hiring?

Does bootstrapped regression allow for inference?

How would photo IDs work for shapeshifters?

Could Giant Ground Sloths have been a good pack animal for the ancient Mayans?

How to manage monthly salary

What are the advantages and disadvantages of running one shots compared to campaigns?

I see my dog run

What does 'script /dev/null' do?

Does it makes sense to buy a new cycle to learn riding?



How can I create a Continued Figure Caption?


If I break up a large table so it doesn't overflow onto the next page how do I suppress the numberingList of Figures - how to add caption labelLaTeX numbering one figure incorrectly (Figure 2 instead of Figure 2.1)Sub-figures in multiple pages but with one figure caption and showing “continued on next page”Create a figure reference without defining a figurelist of figures and tables when there are no figures or tables?Caption in Figure only partially centeredKeep Figures RIGHT AFTER textList of Figures - ContinuedSplit caption based on a height?How should I express/typeset a caption-ish comment on a figure?













11















I have two figures with somehow the same caption, see the code:



begin{figure}[!ht]centering
includegraphics[height=18cm]{pic1}
caption{caption}
end{figure}
addtocounter{figure}{-1}
begin{figure}[!ht]centering
includegraphics[height=18cm]{pic2}
caption{(continued)}
end{figure}


Is there a way to have only the first figure referenced in the list of figures?










share|improve this question





























    11















    I have two figures with somehow the same caption, see the code:



    begin{figure}[!ht]centering
    includegraphics[height=18cm]{pic1}
    caption{caption}
    end{figure}
    addtocounter{figure}{-1}
    begin{figure}[!ht]centering
    includegraphics[height=18cm]{pic2}
    caption{(continued)}
    end{figure}


    Is there a way to have only the first figure referenced in the list of figures?










    share|improve this question



























      11












      11








      11


      3






      I have two figures with somehow the same caption, see the code:



      begin{figure}[!ht]centering
      includegraphics[height=18cm]{pic1}
      caption{caption}
      end{figure}
      addtocounter{figure}{-1}
      begin{figure}[!ht]centering
      includegraphics[height=18cm]{pic2}
      caption{(continued)}
      end{figure}


      Is there a way to have only the first figure referenced in the list of figures?










      share|improve this question
















      I have two figures with somehow the same caption, see the code:



      begin{figure}[!ht]centering
      includegraphics[height=18cm]{pic1}
      caption{caption}
      end{figure}
      addtocounter{figure}{-1}
      begin{figure}[!ht]centering
      includegraphics[height=18cm]{pic2}
      caption{(continued)}
      end{figure}


      Is there a way to have only the first figure referenced in the list of figures?







      table-of-contents floats






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 18 hours ago







      pluton

















      asked Jul 21 '12 at 21:42









      plutonpluton

      8,034960133




      8,034960133






















          1 Answer
          1






          active

          oldest

          votes


















          16














          You can achieve this using the caption package which gives you access to the ContinuedFloat float command (to keep the figure number the same) and an additional field to the caption which when used but left empty prevent the figure to be mentioned in the List of Figures:



          documentclass{article}
          usepackage{graphicx}
          usepackage{caption}

          begin{document}

          begin{figure}[!ht]
          centering
          includegraphics[height=18cm]{pic1}
          caption{caption}
          end{figure}

          begin{figure}[!ht]
          ContinuedFloat
          centering
          includegraphics[height=18cm]{pic2}
          caption[]{caption (continued)}
          end{figure}

          end{document}


          If you use the subfig package as well, you can also include the graphics inside a subfloat which would enable you to give each graphic it own caption in addition to the main figure one:



          subfloat[][]{includegraphics[height=18cm]{pic2}}


          this would then use an alpha counter within the figure to differentiate between the parts. The second [] can contain the subfloat caption.






          share|improve this answer


























          • Sorry I forgot to type the [] to the second caption.

            – ArTourter
            Jul 21 '12 at 22:15






          • 1





            I'll just delete my answer then, as yours has the same info, and the added suggestion about subfloats (and you posted first). I'll also delete my comment above.

            – Torbjørn T.
            Jul 21 '12 at 22:23











          • Thanks @TorbjørnT. I have fixed the explanation of which package does what.

            – ArTourter
            Jul 21 '12 at 22:29












          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%2f64231%2fhow-can-i-create-a-continued-figure-caption%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          16














          You can achieve this using the caption package which gives you access to the ContinuedFloat float command (to keep the figure number the same) and an additional field to the caption which when used but left empty prevent the figure to be mentioned in the List of Figures:



          documentclass{article}
          usepackage{graphicx}
          usepackage{caption}

          begin{document}

          begin{figure}[!ht]
          centering
          includegraphics[height=18cm]{pic1}
          caption{caption}
          end{figure}

          begin{figure}[!ht]
          ContinuedFloat
          centering
          includegraphics[height=18cm]{pic2}
          caption[]{caption (continued)}
          end{figure}

          end{document}


          If you use the subfig package as well, you can also include the graphics inside a subfloat which would enable you to give each graphic it own caption in addition to the main figure one:



          subfloat[][]{includegraphics[height=18cm]{pic2}}


          this would then use an alpha counter within the figure to differentiate between the parts. The second [] can contain the subfloat caption.






          share|improve this answer


























          • Sorry I forgot to type the [] to the second caption.

            – ArTourter
            Jul 21 '12 at 22:15






          • 1





            I'll just delete my answer then, as yours has the same info, and the added suggestion about subfloats (and you posted first). I'll also delete my comment above.

            – Torbjørn T.
            Jul 21 '12 at 22:23











          • Thanks @TorbjørnT. I have fixed the explanation of which package does what.

            – ArTourter
            Jul 21 '12 at 22:29
















          16














          You can achieve this using the caption package which gives you access to the ContinuedFloat float command (to keep the figure number the same) and an additional field to the caption which when used but left empty prevent the figure to be mentioned in the List of Figures:



          documentclass{article}
          usepackage{graphicx}
          usepackage{caption}

          begin{document}

          begin{figure}[!ht]
          centering
          includegraphics[height=18cm]{pic1}
          caption{caption}
          end{figure}

          begin{figure}[!ht]
          ContinuedFloat
          centering
          includegraphics[height=18cm]{pic2}
          caption[]{caption (continued)}
          end{figure}

          end{document}


          If you use the subfig package as well, you can also include the graphics inside a subfloat which would enable you to give each graphic it own caption in addition to the main figure one:



          subfloat[][]{includegraphics[height=18cm]{pic2}}


          this would then use an alpha counter within the figure to differentiate between the parts. The second [] can contain the subfloat caption.






          share|improve this answer


























          • Sorry I forgot to type the [] to the second caption.

            – ArTourter
            Jul 21 '12 at 22:15






          • 1





            I'll just delete my answer then, as yours has the same info, and the added suggestion about subfloats (and you posted first). I'll also delete my comment above.

            – Torbjørn T.
            Jul 21 '12 at 22:23











          • Thanks @TorbjørnT. I have fixed the explanation of which package does what.

            – ArTourter
            Jul 21 '12 at 22:29














          16












          16








          16







          You can achieve this using the caption package which gives you access to the ContinuedFloat float command (to keep the figure number the same) and an additional field to the caption which when used but left empty prevent the figure to be mentioned in the List of Figures:



          documentclass{article}
          usepackage{graphicx}
          usepackage{caption}

          begin{document}

          begin{figure}[!ht]
          centering
          includegraphics[height=18cm]{pic1}
          caption{caption}
          end{figure}

          begin{figure}[!ht]
          ContinuedFloat
          centering
          includegraphics[height=18cm]{pic2}
          caption[]{caption (continued)}
          end{figure}

          end{document}


          If you use the subfig package as well, you can also include the graphics inside a subfloat which would enable you to give each graphic it own caption in addition to the main figure one:



          subfloat[][]{includegraphics[height=18cm]{pic2}}


          this would then use an alpha counter within the figure to differentiate between the parts. The second [] can contain the subfloat caption.






          share|improve this answer















          You can achieve this using the caption package which gives you access to the ContinuedFloat float command (to keep the figure number the same) and an additional field to the caption which when used but left empty prevent the figure to be mentioned in the List of Figures:



          documentclass{article}
          usepackage{graphicx}
          usepackage{caption}

          begin{document}

          begin{figure}[!ht]
          centering
          includegraphics[height=18cm]{pic1}
          caption{caption}
          end{figure}

          begin{figure}[!ht]
          ContinuedFloat
          centering
          includegraphics[height=18cm]{pic2}
          caption[]{caption (continued)}
          end{figure}

          end{document}


          If you use the subfig package as well, you can also include the graphics inside a subfloat which would enable you to give each graphic it own caption in addition to the main figure one:



          subfloat[][]{includegraphics[height=18cm]{pic2}}


          this would then use an alpha counter within the figure to differentiate between the parts. The second [] can contain the subfloat caption.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Jul 21 '12 at 23:21

























          answered Jul 21 '12 at 22:07









          ArTourterArTourter

          10.8k43651




          10.8k43651













          • Sorry I forgot to type the [] to the second caption.

            – ArTourter
            Jul 21 '12 at 22:15






          • 1





            I'll just delete my answer then, as yours has the same info, and the added suggestion about subfloats (and you posted first). I'll also delete my comment above.

            – Torbjørn T.
            Jul 21 '12 at 22:23











          • Thanks @TorbjørnT. I have fixed the explanation of which package does what.

            – ArTourter
            Jul 21 '12 at 22:29



















          • Sorry I forgot to type the [] to the second caption.

            – ArTourter
            Jul 21 '12 at 22:15






          • 1





            I'll just delete my answer then, as yours has the same info, and the added suggestion about subfloats (and you posted first). I'll also delete my comment above.

            – Torbjørn T.
            Jul 21 '12 at 22:23











          • Thanks @TorbjørnT. I have fixed the explanation of which package does what.

            – ArTourter
            Jul 21 '12 at 22:29

















          Sorry I forgot to type the [] to the second caption.

          – ArTourter
          Jul 21 '12 at 22:15





          Sorry I forgot to type the [] to the second caption.

          – ArTourter
          Jul 21 '12 at 22:15




          1




          1





          I'll just delete my answer then, as yours has the same info, and the added suggestion about subfloats (and you posted first). I'll also delete my comment above.

          – Torbjørn T.
          Jul 21 '12 at 22:23





          I'll just delete my answer then, as yours has the same info, and the added suggestion about subfloats (and you posted first). I'll also delete my comment above.

          – Torbjørn T.
          Jul 21 '12 at 22:23













          Thanks @TorbjørnT. I have fixed the explanation of which package does what.

          – ArTourter
          Jul 21 '12 at 22:29





          Thanks @TorbjørnT. I have fixed the explanation of which package does what.

          – ArTourter
          Jul 21 '12 at 22:29


















          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%2f64231%2fhow-can-i-create-a-continued-figure-caption%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

          Why does my Macbook overheat and use so much CPU and energy when on YouTube?Why do so many insist on using...

          How to prevent page numbers from appearing on glossaries?How to remove a dot and a page number in the...

          Puerta de Hutt Referencias Enlaces externos Menú de navegación15°58′00″S 5°42′00″O /...