alpenwasser / alpenthesis

Thesis Class
0 stars 0 forks source link

Random Potentially Useful Code Snippets #9

Open alpenwasser opened 7 years ago

alpenwasser commented 7 years ago

Various code snippets which might be of use at some point.

alpenwasser commented 7 years ago

Having optional arguments inside a \def or a \newcommand works:

\documentclass[a4paper,11pt]{article}
\usepackage{lipsum}
\def\mytest{\lipsum[2]}
\newcommand*\anothertest{\lipsum[3]}
\begin{document}
\mytest
\anothertest
\end{document}