在 LaTeX documentclass 文章的每一页中添加自定义页眉

在 LaTeX documentclass 文章的每一页中添加自定义页眉

article是否可以在 LaTeX 文档类中的每一页添加类似以下格式的页眉?

****

答案1

这是一种fancyhdr方法。根据徽标和文本的高度/大小,\headwidth必须调整长度(就55pt我而言,请查看.log文件中的输出建议fancyhdr

\documentclass{article}
\usepackage{graphicx}
\usepackage{fancyhdr}

\usepackage[headheight=55pt]{geometry}

\renewcommand{\headrulewidth}{2pt}
\fancypagestyle{plain}{%
  \fancyhead[L]{
    \begin{tabular}{ll}
      \begin{tabular}[t]{c}
        \includegraphics[scale=0.3]{beeduck}%
      \end{tabular} &
      \begin{tabular}[b]{l}
        Ministry Of Silly Walks  \tabularnewline
        Head of Department: The Bee Duck\tabularnewline
        Vice chairmen: The Duck Bee\tabularnewline
      \end{tabular}
    \end{tabular}   
  }%
}

\pagestyle{plain}

\usepackage{blindtext}

\begin{document}

\blindtext[10]

\end{document}

在此处输入图片描述

相关内容