平均能量损失

平均能量损失

我的标题上方有一个徽标。但是,它占用了太多空间,导致第一页上的内容很少。我该如何将所有内容上移?

我绝对可以减少边距,但我确实希望将效果仅限于第一页。

平均能量损失

\documentclass{article}
\usepackage[demo]{graphicx}

\title{
\includegraphics[width=0.5\textwidth]{logo}\\
The Title
}
\author{%
  The Author
}
\date{\today}

\begin{document}

\maketitle

\end{document}

答案1

这里,我\smash编辑了图形,以便它在 TeX 中看起来不占用任何垂直空间。如果您需要更高的尺寸,请告诉我。

\documentclass{article}
\usepackage[demo]{graphicx}

\title{
\leavevmode\smash{\includegraphics[width=0.5\textwidth]{logo}}\\
The Title
}
\author{%
  The Author
}
\date{\today}

\begin{document}

\maketitle

\end{document}

在此处输入图片描述

相关内容