Advertisement
Guest User

Untitled

a guest
Jul 1st, 2015
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.20 KB | None | 0 0
  1. documentclass{report}
  2. usepackage{etoolbox} % or xpatch
  3.  
  4. makeatletter
  5.  
  6. % initial definitions of the part info (name and number)
  7. defthisparttitle{}defthispartnumber{}
  8. defthischaptertitle{}defthischapternumber{}
  9.  
  10. newtoggle{noFigs}
  11. newtoggle{noTabs}
  12.  
  13. apptocmd{@chapter}{gdefthischaptertitle{#1}gdefthischapternumber{thechapter}globaltoggletrue{noFigs}}{}{}
  14. apptocmd{@part}{gdefthisparttitle{#1}gdefthispartnumber{thepart}globaltoggletrue{noFigs}globaltoggletrue{noTabs}}{}{}
  15.  
  16. % the figure environment does the job: the first time it is used after a chapter command, it writes the information of the chapter to the LoF
  17. AtBeginDocument{%
  18. AtBeginEnvironment{figure}{%
  19. iftoggle{noFigs}{
  20. addtocontents{lof}{protectcontentsline{part}%
  21. {protectnumberline{thisparttitle}}{}{3.2em} }
  22. addtocontents{lof}{protectcontentsline {chapter}%
  23. {protectnumberline {thischapternumber} {thischaptertitle}}{}{} }
  24. globaltogglefalse{noFigs}
  25. }{}
  26. }%
  27. AtBeginEnvironment{table}{%
  28. iftoggle{noTabs}{
  29. addtocontents{lot}{protectcontentsline{part}%
  30. {protectnumberline{thisparttitle}}{}{} }
  31. addtocontents{lot}{protectcontentsline {chapter}%
  32. {protectnumberline {thischapternumber} {thischaptertitle}}{}{} }
  33. globaltogglefalse{noTabs}
  34. }{}
  35. }%
  36. }
  37.  
  38.  
  39. makeatother
  40.  
  41. begin{document}
  42.  
  43. tableofcontents
  44. listoffigures
  45.  
  46.  
  47. part{The first}
  48.  
  49. chapter{Introduction with no Figures}
  50.  
  51. chapter{Test Chapter with Figures}
  52. begin{figure}
  53. caption{caption text}
  54. end{figure}
  55. begin{figure}
  56. caption{caption text}
  57. end{figure}
  58.  
  59. chapter{Test Chapter with no Figures}
  60.  
  61. part{The second}
  62.  
  63. chapter{Another Test Chapter with Figures}
  64. begin{figure}
  65. caption{caption text}
  66. end{figure}
  67. begin{figure}
  68. caption{caption text}
  69. end{figure}
  70. begin{figure}
  71. caption{caption text}
  72. end{figure}
  73. begin{figure}
  74. caption{caption text}
  75. end{figure}
  76. begin{figure}
  77. caption{caption text}
  78. end{figure}
  79.  
  80. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement