截图

截图

平均能量损失

\documentclass[12pt,a4paper]{article} 

\usepackage{enumitem}
\usepackage{fancyhdr}
\usepackage[margin=3cm]{geometry}
\usepackage{pgfplots}

\newlength{\tabcont}
\setlength{\parindent}{0.0in}
\setlength{\parskip}{0.05in}


\title{Assignment 4}


\newcommand{\course}{lipsum}
\newcommand{\coursen}{lipsum}
\newcommand{\semester}{lipsum} 
\newcommand{\TDAG}{lipsum}
\newcommand{\campus}{lipsum}
\newcommand{\dept}{lipsum}



\pagestyle{fancyplain}
\headheight 56.2pt

\chead{\campus \\ \dept \\ \course \\ \coursen }
\lhead{\TDAG}
\rfoot{\thepage}
\begin{document}
\maketitle
Submit the following problems which are given in the tutorial 4 as your Assignment 4.
\begin{enumerate}

\item In question 19 ,part (d).
\end{enumerate}
 
\end{document}

我想要的解决方案

编译上述文件后,\rhead\chead在高度位置上相似。 我想要的是 位于\rhead上方 并且\chead位于 下方/之后\rhead

我收到过一篇帖子,里面有类似的东西\header[C],但不起作用。我正在使用 Miktex + texMaker。但是如果你知道如何处理,请提供一个例子 \header[C]:)

截图

当前一个

当我编译上述代码时我得到了什么

我需要的解决方案

我需要一个代码来获得这个外观

编辑:一些 Tex.SE 贡献者添加了图像(由于我的声誉较低,我不得不将它们作为链接插入),添加了相关标签并修复了语法;谢谢。

答案1

您可以使用顶部对齐tabular

\documentclass[12pt,a4paper]{article} 

\usepackage{enumitem}
\usepackage{fancyhdr}
\usepackage[margin=3cm,top=1cm,includehead,headheight=60pt]{geometry}
\usepackage{pgfplots}

\newlength{\tabcont}
\setlength{\parindent}{0.0in}
\setlength{\parskip}{0.05in}


\title{Assignment 4}

\newcommand{\course}{lipsum}
\newcommand{\coursen}{lipsum}
\newcommand{\semester}{lipsum} 
\newcommand{\TDAG}{lipsum}
\newcommand{\campus}{lipsum}
\newcommand{\dept}{lipsum}



\pagestyle{fancyplain}
\chead{\begin{tabular}[t]{l}\campus \\ \dept \\ \course \\ \coursen \end{tabular}}
\lhead{\TDAG}
\cfoot{}
\rfoot{\thepage}

\begin{document}

\maketitle
Submit the following problems which are given in the tutorial 4 as your Assignment 4.
\begin{enumerate}

\item In question 19, part (d).
\end{enumerate}
 
\end{document}

我已减小了顶部边距。您还应headheight在选项中使用geometryincludehead。我还添加了\cfoot{}删除居中页码的功能。

我不确定\parskip1.3 毫米的用途是什么。

在此处输入图片描述

相关内容