I have a macros.tex file where I keep my macros and
I use them with different document classes.
I want to skip including some of my macros
based on the document class (e.g. if it is beamer).
How can I branch based the document class?
Asked
Active
Viewed 30 times
2
Kaveh
- 1,177
- 2
- 10
- 21
\@ifclassloaded{<class>}{<true>}{<false>}. And other, related, commands.... – jon May 31 '16 at 03:20