Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. documentclass[12pt]{article}
  2. usepackage[margin=1in]{geometry}
  3. usepackage{catchfilebetweentags}
  4. usepackage{wrapfig}
  5. usepackage{graphicx}
  6. CatchFileBetweenTags{SectionA}{content.tex}{SectionA}
  7. CatchFileBetweenTags{SectionB}{content.tex}{SectionB}
  8. begin{document}
  9. section*{Section A}
  10. SectionA
  11. section*{Section B}
  12. SectionB
  13. end{document}
  14.  
  15. %<*SectionA>
  16. text
  17. %</SectionA>
  18. %<*SectionB>
  19. text
  20. begin{wrapfigure}{r}{0.25linewidth}
  21. begin{center}
  22. includegraphics[width=linewidth]{./graphics/example.png}
  23. end{center}
  24. caption{Caption here.}
  25. label{example_wrap_figure}
  26. end{wrapfigure}
  27. text
  28. text
  29. %</SectionB>
  30.  
  31. %<*SectionA>
  32. text
  33. begin{wrapfigure}{r}{0.25linewidth}
  34. begin{center}
  35. includegraphics[width=linewidth]{./graphics/example.png}
  36. end{center}
  37. caption{Caption here.}
  38. label{example_wrap_figure}
  39. end{wrapfigure}
  40. %</SectionA>
  41. %<*SectionB>
  42. text
  43. text
  44. text
  45. %</SectionB>
  46.  
  47. section*{Section A}
  48. SectionA
  49. begin{wrapfigure}{r}{0.25linewidth}
  50. begin{center}
  51. includegraphics[width=linewidth]{./graphics/example.png}
  52. end{center}
  53. caption{Caption here.}
  54. label{example_wrap_figure}
  55. end{wrapfigure}
  56. section*{Section B}
  57. SectionB
  58.  
  59. section*{Section A}
  60. SectionA
  61. {
  62. begin{wrapfigure}{r}{0.25linewidth}
  63. begin{center}
  64. includegraphics[width=linewidth]{./graphics/example.png}
  65. end{center}
  66. caption{Caption here.}
  67. label{example_wrap_figure}
  68. end{wrapfigure}
  69. }
  70. section*{Section B}
  71. SectionB
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement