我正在寻找模板、示例或一些解决方法来设计数学工作表。我对设计工作表的标题特别感兴趣,其中应包括教职员工、系和教授。此外,还包括讲座名称、年份和练习次数;请参见此示例:
我想坚持使用我的文档类“scrartcl”。我见过一些其他类,例如https://www.ctan.org/pkg/mathexam但使用我熟悉的文档类会感觉更舒服(可以防止后续的意外/问题)。谢谢
答案1
包 scrlayer-scrpage 是唯一具有 KOMA 类的页眉/页脚定制包。
\documentclass[headlines=6,headinclude=true]{scrartcl}
\usepackage{mwe}
\usepackage{scrlayer-scrpage}
\ihead*{\begin{tabular}{l}
Mathematics Tutorial\\
Summer Term 2014\\
\\
Some Name\\
Some Mail\end{tabular}
}
\chead*{\includegraphics[height=5\baselineskip]{example-image-a}}
\ohead*{\begin{tabular}{r}MLU Halle\\Jur und WiWi-Fak\\BWL\\
Some Prof\\ Some mathematician\end{tabular}}
\renewcommand{\raggedsection}{\centering}
\begin{document}
\blinddocument
\end{document}
答案2
好的,我使用了这个修改:
\documentclass[headlines=6,headinclude=true]{scrartcl}
\usepackage{mwe}
\usepackage{scrlayer-scrpage}
\usepackage[left=1.5cm,right=1.5cm,top=4cm,bottom=0.5cm,includefoot]{geometry}
\ihead{\begin{tabular}{l}
Mathematics Tutorial\\
Summer Term 2014\\
\\
Some Name\\
Some Mail\end{tabular}
}
\chead{\includegraphics[height=5\baselineskip]{example-image-a}}
\ohead{\begin{tabular}{r}MLU Halle\\Jur und WiWi-Fak\\BWL\\
Some Prof\\ Some mathematician\end{tabular}}
\renewcommand{\raggedsection}{\centering}
\begin{document}
\blinddocument
\end{document}
“geometry” 包,因为标题离顶部太远了(在我看来)。我仍然不知道为什么你在 ihead、chead、ohead 后面放置了星号 (*)?这些星号实际上作为符号出现在我的文档顶部。
最后看起来像这样:
:)