Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. documentclass[12pt]{article}
  2. usepackage{tikz}
  3. usepackage{graphicx}
  4.  
  5. defnamelist{"New York", "Illinois","Texas"}
  6. defabrevlist{NY,IL,TX}
  7.  
  8. begin{document}
  9.  
  10. foreach x in abrevlist {%
  11. newpage
  12. section*{x} % <-- I want to use the state name here
  13.  
  14. begin{figure}[h!]
  15. includegraphics[width=.5textwidth]{../charts/summary/x _compare.pdf}
  16. caption{x} % <-- I want to use the state name here
  17. end{figure}
  18.  
  19. }
  20. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement