把[翻到页面末尾

把[翻到页面末尾

如何表达这句话[翻在以下代码的第一页(以及随后的奇数页)的末尾。提前致谢。

\documentclass[11pt,a4paper,addpoints]{exam} 
\usepackage{graphicx}
\noprintanswers
%\printanswers

\pointsinmargin 
%\pointsinrightmargin
%\bracketedpoints
\boxedpoints
%\noboxedpoints
%https://tex.stackexchange.com/questions/102066/how-to-insert-logo-in-exam-document-class
\parindent=0pt 
\title{\begin{picture}(0,0)\unitlength=1cm
    \put (-5,-1) {\includegraphics[width=5em]{example-image-a}}
    \end{picture}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


\newpage


Page 2

\end{document}

答案1

您可以使用

\firstpagefooter
  {}
  {}
  {\textbf{[Turn over}}
\runningfooter
  {}
  {Page \thepage\ of \numpages}
  {\ifodd\value{page}
    \ifnum\value{page}<\numpages\textbf{[Turn over}\fi
  \fi}

\thispagestyle{headandfoot}紧挨着\maketitle

例子:

\documentclass[11pt,a4paper,addpoints]{exam} 
\usepackage{graphicx}
\noprintanswers
%\printanswers

\pointsinmargin 
%\pointsinrightmargin
%\bracketedpoints
\boxedpoints
%\noboxedpoints
%https://tex.stackexchange.com/questions/102066/how-to-insert-logo-in-exam-document-class
\parindent=0pt 
\title{\begin{picture}(0,0)\unitlength=1cm
    \put (-5,-1) {\includegraphics[width=5em]{example-image-a}}
    \end{picture}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 }

% footer:
\firstpagefooter
  {}
  {}
  {\textbf{[Turn over}}
\runningfooter
  {}
  {Page \thepage\ of \numpages}
  {\ifodd\value{page}
    \ifnum\value{page}<\numpages\textbf{[Turn over}\fi
  \fi}

\begin{document}
\maketitle
\thispagestyle{headandfoot}% <- added
Answer THREE QUESTIONS
\hrule

\newpage
Page 2
\newpage
Page 3
\newpage
Page 4
\end{document}

结果:

在此处输入图片描述

相关内容