答案1
如果有空间,您可以在设置标题后将图片放在标题上方。有一些不同的方法可以将内容放在页面上而不影响其余内容。对于这种情况,我认为最简单的方法是使用带有选项的 tikz 图片overlay
。(您需要编译两次才能将图片放在正确的位置)。
\documentclass{article}
\usepackage{graphicx}
\usepackage{tikz}
\begin{document}
\title{Paper title}
\author{Author list}
\maketitle
\tikz[remember picture,overlay] \node[below=20mm] at (current page.north){\includegraphics[width=40mm]{example-image-a}};
%%%
\begin{abstract}
Paper abstract
\end{abstract}
\section{Background}
Problem background: Why is this interesting?
\section{Methodology}
What method have you used?
\end{document}