平均能量损失
\documentclass[12pt,a4paper]{article}
\usepackage{fancyhdr}
\usepackage[margin=3cm,top=1cm,includehead,headheight=60pt]{geometry}
\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{\campuslipsum}
\newcommand{\dept}{lipsum}
\fancypagestyle{plain}
\lhead{\TDAG}
\chead{\begin{tabular}[t]{c}\begin{footnotesize}\campus \\ \dept \\ \course \\ \coursen \end{footnotesize}\end{tabular}}
\begin{document}
\maketitle
\lipsum
\end{document}
我需要的:
(截图上的手绘)
顺便说一下,一个问题已经得到部分回答如何让\rhead 向上移动到顶部,\chead 向下。这个问题是一个后续问题,因为我的需求是\chead
在之后开始的\lhead
。
答案1
您可能指的是lhead
而不是rhead
。
我猜你的意思可能是下面这样:
\chead{
\begin{tabular}[t]{l}
\campus \\ \dept \\ \course \\ \coursen
\end{tabular}
}
\lhead{
\begin{tabular}[b]{p{0.4\textwidth}}
\TDAG \\\hline \\[-2ex]
\end{tabular}
}
您可以调整以-2ex
获得正确的位置。但请注意,您会收到有关太小的警告\headheight
。这可能会产生一些不良影响。如果这只是第一页上的内容,最好不要将其放在页眉中,而只是放在文档的第一部分。