美文网首页
Latex: 设置页眉页脚

Latex: 设置页眉页脚

作者: 喷射的熔浆 | 来源:发表于2018-04-08 15:38 被阅读0次

    使用fancyhdr来实现

    \documentclass{article}
    \usepackage{fancyhdr}
    \pagestyle{fancy}
    \lhead{}
    \chead{}
    % bfseries
    \rhead{\bfseries The performance of new graduates}
    \lfoot{From: K. Grant}
    \cfoot{To: Dean A. Smith}
    \rfoot{\thepage}
    \renewcommand{\headrulewidth}{0.4pt}
    \renewcommand{\footrulewidth}{0.4pt}
    \begin{document}
    test!
    \end{document}
    

    references

    1. [转载]在LATEX中设置页眉页脚以及页码
    2. LaTeX 页眉页脚的设置

    相关文章

      网友评论

          本文标题:Latex: 设置页眉页脚

          本文链接:https://www.haomeiwen.com/subject/tyxmhftx.html