如何在第一页的页眉中添加图片?

如何在第一页的页眉中添加图片?

我怎样才能在文章首页的页眉中添加图片?提前谢谢您。

我的示例代码只能创建一个图片显示在第二页的文件。

\documentclass[12pt,a4paper]{article}
\usepackage{grffile,graphicx,hyperref,graphbox} \usepackage{fancyhdr}
\usepackage[sort]{natbib} \usepackage[svgnames]{xcolor}
\pagestyle{fancy} \renewcommand{\headrulewidth}{0pt} 

\usepackage[top=1in,headsep=4pt,headheight=26pt,bottom=1.in,left=1in,right=1in]{geometry}
\graphicspath{{C:/Users/header/}}
\renewcommand{\refname}{References} 
\begin{document}
\lhead{\includegraphics[width=1cm]{photo}}

{\centering \title{Stat} \author{Yan} 
\maketitle} 

I would like to \clearpage

123456

\bibliographystyle{chicago}
\bibliography{C:/Users//Downloads/ref/rref}
\end{document}

在此处输入图片描述在此处输入图片描述

答案1

我擅自清理了一下你的代码

\documentclass[12pt,a4paper]{article}

\usepackage{grffile,graphicx,hyperref,graphbox}
\usepackage{fancyhdr}
\usepackage[sort]{natbib}
\usepackage[svgnames]{xcolor}
\usepackage[top=1in,headsep=4pt,headheight=26pt,bottom=1.in,left=1in,right=1in]{geometry}
\usepackage{lipsum}

%% HEADER %%
\pagestyle{fancy}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\bibsection}{}

\fancypagestyle{firststyle}
{
   \fancyhf{}
   \lhead{\includegraphics[width = 2cm]{example-image-a}}
}

% AUTHOR INFO
\title{Stat}
\author{Yan}


%% DOCUMENT
\begin{document}
\maketitle
\thispagestyle{firststyle}


\section{One section}
\lipsum[1-2]\clearpage

\section{Other section}
\lipsum[3-5]\cite{White1983}

\bibliographystyle{plain}
\section*{References}
\bibliography{refs}
\end{document}

在此处输入图片描述

相关内容