请问如何在页眉中显示article标题、作者名字?需要显示的article标题(即整篇文章的大标题),而不是section或者subsection。我的是texlive2020。
\documentclass{article}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead[L]{\runtitle}
\fancyhead[R]{\runauthor}
\usepackage{lipsum}
\title{The title of article}
\author{Author one}
\makeatletter
\let\runauthor\@author
\let\runtitle\@title
\makeatother
\begin{document}
\maketitle
\lipsum
\end{document}
请问这几段命令什么意思:
makeatletter
letrunauthor@author
letruntitle@title
makeatother
@u40193 其他的明白了,谢谢你。只是\makeatletter和\makeatother这两个命令的作用我还不是很清楚
哈哈,没有强迫症的话,可以先不用了解。想具体了解,需要花一番工夫,学习tex的宏定义。最简单来说,如果代码中有@, 就在前后分别加上makeatletter和makeatother,没有就不用加,加@因为它是内部命令。这是我的理解
@u40193 细致讲起来,我也讲不明白,你自己没事读点书吧。
latex2e.pdf
中的 sec 12.3