Guest User

Untitled

a guest
Sep 13th, 2018
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 0.44 KB | None | 0 0
  1. \documentclass{article}
  2.  
  3. \usepackage{float}
  4. \usepackage{tikz,caption}
  5. \usepackage{ifthen}
  6.  
  7. \begin{document}
  8.  
  9. \newcommand{\titlename}[1]
  10. {%
  11.     \ifthenelse{\equal{#1}{a}}{First}{}%
  12.     \ifthenelse{\equal{#1}{b}}{Second}{}%
  13. }
  14.  
  15. \foreach \y in {a,b}{
  16.  \foreach \a in {No,Yes}{
  17.    \begin{table}[H]
  18.    \captionsetup{width=.9\linewidth}%
  19.     \caption{\protect\titlename{\y}, \a  ~Other Text}
  20.    \end{table}
  21.  }
  22. }
  23.  
  24. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment