我如何获得类似

我如何获得类似
Name                                                                           Chapter name
roll No.
___________________________________________________________________________________________


content


___________________________________________________________________________________________
University name                                                                    page No.

答案1

这是一个使用的解决方案fancyhdr包裹。

编辑:您可以使用包让部分名称显示在表头的右侧nameref。我已修改解决方案以执行此操作。

\documentclass[11pt,a4paper]{article}
\usepackage{fancyhdr}
\pagestyle{fancy}
\lhead{%
    Name\\
    Roll Number%
}
\chead{}
\rhead{\itshape\nameref{chapter}\\}    
\lfoot{University Name}
\cfoot{}
\rfoot{\thepage}
\begin{document}
\section{Carrot Cake}\label{chapter}
\noindent
Yellow matter custard, green slop pie,\\
All mixed together with a dead dog's eye,\\
Slap it on a butty, ten foot thick,\\
Then wash it all down with a cup of cold sick.
\end{document}

在此处输入图片描述

相关内容