Latex:在标题上方添加图片

Latex:在标题上方添加图片

我有一张图片,我想将图片添加到标题上方。下面的代码将整个页面提供给图片。我希望图片和标题 Autother 显示在同一页面上

\includegraphics[width=0.1\textwidth]{images/Company_Groups.jpg}~\\[1cm]
\title{xxxxxxx
\\In xxxxx }
\author{N. N. Arif
\\ xxxx in headquarters, xxxxx}
\date{June 18, 2015}
\maketitle

答案1

我不推荐那些\\[...]东西,但可以将图形文件作为标题本身的一部分。

demo之后删除该选项)

\documentclass{article}

\usepackage[demo]{graphicx}
\begin{document}

\title{%
\includegraphics[width=0.1\textwidth]{images/Company_Groups.jpg}~ 
\\[1cm]
xxxxxxx
\\In xxxxx 
}
\author{N. N. Arif
\\ xxxx in headquarters, xxxxx}
\date{June 18, 2015}
\maketitle

\end{document}

在此处输入图片描述

一些更新,包括著名的CTAN TeX Lion(版权归 Duane Bibby 所有)

\documentclass{article}

\usepackage{graphicx}
\begin{document}

\title{%
%\includegraphics[width=0.1\textwidth]{images/Company_Groups.jpg}~ 
\includegraphics[width=0.4\textwidth]{ctanlion}~\\[1cm]
xxxxxxx\\
In xxxxx 
}
\author{N. N. Arif
\\ xxxx in headquarters, xxxxx}
\date{June 18, 2015}
\maketitle

\end{document}

在此处输入图片描述

相关内容