为了创建标题页,我想在一行中包含两个徽标,其中一个图形在左侧,另一个在右侧。
我的第一个简单示例使用以下代码
\begin{figure}[h]
\flushleft
\includegraphics[keepaspectratio, width=0.15\linewidth]{test.png}
\end{figure}
\hfill
\begin{figure}[h]
\flushright
\includegraphics[keepaspectratio, width=0.15\linewidth]{test.png}
\end{figure}
输出结果如下:
两个图形的尺寸和水平位置都恰好符合我的要求。它们只是不在一条线上而已……
在上面的代码中添加以下内容:
\begin{minipage}{0.5\linewidth}
\flushleft
\includegraphics[keepaspectratio, width=0.25\linewidth]{test.png}
\end{minipage}
\begin{minipage}{0.5\linewidth}
\flushright
\includegraphics[keepaspectratio, width=0.25\linewidth]{test.png}
\end{minipage}
我明白了:
至少在这种情况下,两个标志都在一条线上,但现在尺寸不同,因为它们较小,并且它们不在如图 1 所示的水平位置。
我该如何解决这个问题?
答案1
你不想figure
或者minipage
只是
\noindent
\includegraphics{a}\hfill\includegraphics{b}