试卷标题

试卷标题

我想重新创造这样的东西

马耳他大学

尽可能让我的学生的论文真实可信。如何实现这样的标题,使用命令可以吗\maketitle?“MAT1511 解析几何”和日期如何单独对齐?

答案1

您可以在环境中设置标题center,并采用必要的格式(可能是\large\bfseries)。主题和日期的间距可以通过插入水平空格来实现(例如\qquad,或\hspace{2em})。

在此处输入图片描述

\documentclass{article}
\usepackage{amsfonts}

\begin{document}

\begin{center}
  \bfseries\large
  UNIVERSITY OF MALTA

  FACULTY OF SCIENCE

  Department of Mathematics

  B.SC.(Hons.) Year I

  January 2013 Examination Session

  MAT1511 Analytical Geometry \qquad \today

  \bigskip

  \normalfont\normalsize
  11.45a.m.~--~1.45p.m.
\end{center}

\noindent
\begin{tabular}{p{\dimexpr\linewidth-2\tabcolsep}}
  Answer THREE questions \\
  \hline
\end{tabular}

\begin{enumerate}
  \item
  \begin{enumerate}
    \item
    Define the \textit{scalar triple product} $[\mathbf{x}, \mathbf{y}, \mathbf{z}]$ for vectors $\mathbf{x}, \mathbf{y}, \mathbf{z} \in \mathbb{R}^3$, and show
    \[
      [\mathbf{z}, \mathbf{x}, \mathbf{y}] = [\mathbf{y}, \mathbf{z}, \mathbf{x}].
    \]

    \item
    \ldots
  \end{enumerate}
\end{enumerate}

\end{document}

答案2

我永远不会选择文档类文章。\documentclass{exam} 更好,有预定义的问题

根据你想要的,你可以找到

\documentclass[11pt,a4paper,addpoints]{exam} 

\noprintanswers
%\printanswers

\pointsinmargin 
%\pointsinrightmargin
%\bracketedpoints
\boxedpoints
%\noboxedpoints

\parindent=0pt 
\title{UNIVERSITY OF MALTA\\FACULTY OF SCIENCE \vspace{-1em}}
\author{Department of Mathematics\\B.SC.(Hons.) YEAR 1\\January 2013 Examination Session\\MAT1511 Analytical Geometry \qquad January 25, 2016}
\date{11.45 a.m. - 1.45 p.m }

\begin{document}
\maketitle
Answer THREE QUESTIONS
\hrule
\begin{questions}
\question[1] 
    \begin{parts}
        \part lqkjfmlk
        \part mlqkjfsmd
        \part qdsfq
    \end{parts}

\question[5] qdslfkjq m
    \begin{solutionordottedlines}[2cm]
    Here comes the answer
    \end{solutionordottedlines}

\question[2] Multiple choice
\begin{checkboxes}
    \choice qdsf
    \choice dsfq    
    \CorrectChoice If you delete the \% before the printanswers, the document will show you the answers \ldots
    \end{checkboxes}
\end{questions}

\end{document}

在此处输入图片描述

结束了解更多:http://www-math.mit.edu/~psh/exam/examdoc.pdf

所以我根据考试的题目修改了我的答案。因此我认为你应该使用在类中构建的 \maketitle 命令。

在序言中,您可以根据考试情况更改这些内容。

(题外话:你真的应该测试一下打印答案的开启和关闭模式,这样你就能看到你可以把每个答案都放在你的考试或测试中。只要切换到开启和关闭,你就完成了)

答案3

可能有一些更优雅的 LaTeX 结构,但我只会使用center带有 的环境\obeylines,如下所示:

\documentclass{article}
\begin{document}
\begin{center}
    \Large\obeylines
    UNIVERSITY OF STACK
    FACULTY OF EXCHANGE
    Department of TeX Questions
    D.Phil. \quad Year IV
    January 2016 Examination Session
    \medskip
    \hbox to \textwidth{TEX3142 Advanced Typesetting \hss 25 Jan 2016}
    \medskip
    \large
    16.15 p.m. --- 17.45 p.m.
\end{center}
\bigskip

\noindent
Answer as much as you can.
\hrule

\end{document}

笔记

我在这里使用了一些老式的纯 TeX:

  • \obeylines使每行结尾表现得像段落结尾。其效果包含在center此处的环境中。

  • \quad放入“四”大小的空间

  • \medskip在段落之间添加中等大小的间距

  • \hbox to \textwidth{...}为您提供一个设置为 的框\textwidth\hss它的内部会进行“水平拉伸或收缩”,以便在中间提供适当的空间。

相关内容