需要考试标题布局方面的帮助(LaTeX 新手)

需要考试标题布局方面的帮助(LaTeX 新手)

我是瑞士一所中学的数学老师。直到今天,我还是习惯在 LibreOffice 上写测试,使用 TexMath 扩展在 LaTeX 中创建数学部分。

我希望使用“考试”包完全用 LaTeX 编写考试。但是,为了保持连续性,我希望考试的外观与我以前在 LibreOffice 上编写的考试相比不要有太大变化。(见下图)

我完全不知道如何在 LaTeX 中编写布局。到目前为止,我只使用 LaTeX 来编写数学表达式。有 LaTeX 天才愿意指导我如何重现我的布局吗?我不需要新布局与旧布局完美契合,只要保留其精神即可。

我的考试布局

答案1

我对该包了解不够,exam无法操作图像的问题格式,但对于顶部,您可以执行如下操作:

\documentclass{exam}
\usepackage{amsmath}
\usepackage{tabularx}
\usepackage{multirow}
\usepackage{roboto}
\usepackage{tcolorbox}
\begin{document}
\sffamily
\noindent NAME OF MY SCHOOL \hfill DD.MM.YYY\\

\noindent\begin{tabularx}{\linewidth}{@{}X|r|@{}}
\cline{2-2}
LAST NAME:&\multirow{3}{*}{$\text{GRADE}=\frac{\hspace{.5in}}{\text{\textbf{PTS}}}=\hspace{.75in}$}\\
&\\
FIRST NAME: &\\
\cline{2-2}
\multicolumn{1}{l}{} & \multicolumn{1}{c}{\textit{\small How grade is calculated: formula}}\\
\end{tabularx}\\

\noindent{\large COURSE NAME} \hfill \textbf{\large LENGTH = XX MIN}\\
\textbf{\Huge SUBJECT OF THE EXAM} SOME COMPLEMENTS TO THE SUBJECT\\

\begin{tcolorbox}[colback=lightgray!50!white,colframe=black, sharp corners]
\textit{\textbf{Instructions:}
\begin{itemize}
\item I was starting to worry that my pet turtle could tell what I was thinking.
\end{itemize}}
\end{tcolorbox}

\end{document}

在此处输入图片描述

相关内容