答案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}