latex模板中设置了作者和标题的单双页交替显示在页眉处,代码是

\markboth{xx}{xx}   并在作者和标题处显示了页码。

但想将页码置于页脚居中显示,输入代码  \pagestyle{plain}    

发现页脚处出现页码,但页眉处的代码失效了。pagestyle的4种缺省设置并没有同时设置页眉和页脚的形式,如何解决呢?

3 回答3

0
<p>其实我没太听懂……</p>
  • 回复 冷锋 :那的确是 fancyhdr 的功能 – OsbertWang 2019-08-06 08:53 回复
  • 回复 冷锋 :最好有个效果图,需要设置的效果,这样就清楚了。 – admin 2019-08-04 18:21 回复
  • 就是同时设置页眉页脚,页眉奇偶页设置,页脚居中设置页码 – 冷锋 2019-08-04 17:04 回复
0
<p>fancyhdr 可以满足需求。</p>
0
<p></p><p>fancyhdr 宏包 你需要把plain 的页面样式也改一下才可以。</p><pre class="brush:plain;toolbar:false">\documentclass{article} \usepackage{fancyhdr,lipsum} \pagestyle{fancy} \fancyhf{} \fancyfoot[C]{\thepage} \fancyhead[L]{My&nbsp;left&nbsp;mark} \fancyhead[R]{My&nbsp;right&nbsp;mark} \fancypagestyle{plain}{% \fancyhf{} \fancyfoot[C]{\thepage} \fancyhead[L]{My&nbsp;left&nbsp;mark} \fancyhead[R]{My&nbsp;right&nbsp;mark}} \title{Sample&nbsp;Document} \author{The&nbsp;Author} \begin{document} \maketitle&nbsp; \lipsum[1-5] \end{document}</pre><p>另,与本问题无关:问答的编辑器代码语言居然没有LaTeX或Tex?<br/></p><p></p>

你的回答

请登录后回答

你的回答将会帮助更多人,请务必认真回答问题。