并排堆叠图像

并排堆叠图像

图片1enter image description here

图片2enter image description here

我正在使用来自互联网的 Latex 模板版本。它有一个类文件,其中定义了标题页的位置和属性。

\UNIVERSITY  {}{\includegraphics[width=5.8cm]{image1.jpg}}
    \hfill
    \href{}{\includegraphics[width=5.7cm]{image2.jpg}}}

在我的主.tex文件中

\begin{document}
\frontmatter      % Begin Roman style (i, ii, iii, iv...) page numbering

% Set up the Title Page
\title  {}
\authors  {\texorpdfstring
            {\textbf{}}
            {}
            }
\addresses  {\groupname\\\deptname\\\univname}  % Do not change this here, instead these must be set in the "Thesis.cls" file, please look through it instead
\date       {\today}
\subject    {}
\keywords   {}

\maketitle
\end{document}
\setstretch{1.3}  % It is better to have smaller font and larger line spacing than the other way round

% Define the page headers using the FancyHdr package and set up for one-sided printing
\fancyhead{}  % Clears all page headers and footers
\rhead{\thepage}  % Sets the right side header to show the page number
\lhead{}  % Clears the left side page header

\pagestyle{fancy}  % Finally, use the "fancy" page style to implement the FancyHdr headers
\clearpage

\thispagestyle{empty}
\vspace*{70mm}

上面的代码创建了两个并排的图像。图像 1 是垂直的,图像 2 是水平的。垂直图像非常大,因此占用了太多空间。有没有办法通过将两个图像并排放置在标题页中,使它们看起来更美观?

我需要这样的东西

enter image description here

相关内容