所以我想为我的学生制作帮助卡,但我正在努力寻找一个聪明的解决方案来做到这一点(无需打印文档并手动测量并手动设置背面的所有垂直页面)。
最小的工作示例可能看起来像这样:
\documentclass[a4paper,12pt]{article}
\begin{document}
\setlength{\parindent}{0pt}
% front side of the document
\textbf{Help for number 1}
Explanation\\
text\\
across\\
some\\
lines
\vspace*{5mm}
\textbf{Help for number 2}
Explanation text\\
across different\\
amount of lines
\newpage
% back side of the document
\huge{Help for number 1}
\vspace*{3cm} %not sure how much I actually need. Can I calculate this automatically?
\huge{Help for number 2}
\end{document}
到目前为止,我只是在打印的文档上手写背面。但必须有一个聪明的解决方案。你能帮助我(和我的学生)实现这一点吗?