Guest User

Untitled

a guest
Jan 18th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. documentclass{article}
  2.  
  3. usepackage[pdftex]{graphicx}
  4. usepackage{hyperref}
  5.  
  6. graphicspath{{./Figures/}}
  7.  
  8. begin{document}
  9.  
  10. begin{figure}
  11. includegraphics{NodesEdgesExample2.pdf}
  12. caption{
  13. Paragraph 1.
  14.  
  15. Paragraph 2.
  16.  
  17. Paragraph 3.
  18. }
  19. label{fig:AltNavigationConcept}
  20. end{figure}
  21.  
  22. end{document}
  23.  
  24. documentclass{article}
  25.  
  26. begin{document}
  27.  
  28. listoffigures
  29.  
  30. section{foo}
  31.  
  32. begin{figure}[!ht]
  33. centering
  34. rule{1cm}{1cm}
  35. caption[LoF entry]{The first paragraph of a figure's caption.
  36.  
  37. And the second.}
  38. end{figure}
  39.  
  40. end{document}
  41.  
  42. documentclass{article}
  43. usepackage[demo]{graphicx}
  44. usepackage{caption}
  45. usepackage{lipsum}
  46. begin{document}
  47. captionsetup{margin={15pt},parskip=10pt,format=hang,indention=-.8cm}
  48. begin{figure}[h]
  49. centering
  50. includegraphics[width=textwidth]{myfigure}
  51. caption[my caption]{lipsum[1-2]}
  52. end{figure}
  53. This is regular text. lipsum[1]
  54. end{document}
Add Comment
Please, Sign In to add comment