如何在文章类首页中包含图片

如何在文章类首页中包含图片

显然,我暂时还不能评论其他人的帖子。所以我提出了这个新问题,参考这个。我正在使用 Fran 的回答中给出的代码。现在,我想知道,我如何才能在标题中添加两个副标题?然后将标题置于页面的垂直中心和水平中心?

我还想在右上角放置另一个图形。因此,出于某种原因,命令\raggedright将第一个图形移到了左上角。我\raggedleft当时尝试将我想要的另一个图形放在右上角。我在将左上角的图形放进去后这样做了。但这些图形的高度并不相同。

答案1

这解决所有问题了吗?

姆韦

\documentclass[a4paper12pt]{article}
\usepackage{geometry}
\usepackage{graphicx}

\title{The main title}
\author{The Author}
\def\SubtitleA{One nice subtitle}
\def\SubtitleB{Yet another more subtible}
\date{\today}

\makeatletter         
\def\@maketitle{%
\parindent0pt
\includegraphics[width = 40mm]{example-image-a}\hfill%
\includegraphics[width = 40mm]{example-image-b}
\vfill
\begin{center}\parskip1.500em
{\Huge  \bfseries \sffamily \@title}\par
{\Large  \SubtitleA}\par
{\large  \SubtitleB}\par\bigskip
{\bfseries \sffamily \@author}\par\bigskip 
\@date\par
\vfill
\includegraphics[width = 40mm]{example-image-c}
\end{center}}
\makeatother

\begin{document}
\maketitle\thispagestyle{empty}
\end{document}

相关内容