标题页中一行有 4 个徽标

标题页中一行有 4 个徽标

目前我试图将四个数字排成一行,但我做不到。有人能帮我吗?我的数字是两家公司的徽标及其子部门。不需要标签或名称。

第一和第四个数字应为主要数字,第一个数字的右侧为其子部门,第四个数字的左侧为其子部门。第二和第三个数字应具有相同的大小。

在此处输入图片描述

包装:

\documentclass{article}

\usepackage[draft]{graphicx} %

\begin{document}
    \begin{titlepage}
    \clearpage
        \begin{figure}[!htb]
            \centering
            \begin{minipage}{0.6\textwidth}
                \includegraphics[width=1.0\textwidth]{Bilder/UNI-Logo_Siegel_4c_RZ_06.pdf}
            \end{minipage}    
            \hfill
            \begin{minipage}{0.2\textwidth}
                \includegraphics[width=2.0\textwidth]{Bilder/com.pdf}
            \end{minipage}  
            \hfill
            \begin{minipage}{0.6\textwidth}
                \includegraphics[width=0.4\textwidth]{Bilder/logo_Be.pdf}
            \end{minipage}   
        \hfill
            \begin{minipage}{0.6\textwidth}
                \includegraphics[width=1.0\textwidth]{Bilder/rdlogo.pdf}
            \end{minipage}
        \end{figure}
\end{titlepage}
\end{document}

在此处输入图片描述

答案1

我认为你对这个问题想得太多了。我假设你正在尝试构建一个标题页(因为你已经将示例包装在titlepage标签中),这意味着你不需要乱搞figure诸如此类的事情。 figure浮点数;也就是说,对于可能出现在文档中某个位置而不是包含在代码中的显示。标题页将始终位于同一位置。

所以你的解决方案很简单:确保为每张图片分配适当的宽度,以便所有四张图片的总宽度加起来为1.0\textwidth,你就完成了:

\documentclass{article}

\usepackage[draft]{graphicx} %

\begin{document}
\begin{titlepage}
\centering
\includegraphics[width=0.3\textwidth]{Bilder/UNI-Logo_Siegel_4c_RZ_06.pdf}%
\includegraphics[width=0.2\textwidth]{Bilder/com.pdf}%
\includegraphics[width=0.2\textwidth]{Bilder/logo_Be.pdf}%
\includegraphics[width=0.3\textwidth]{Bilder/rdlogo.pdf}%
\end{titlepage}
\end{document}

当然,我们没有您的图片,所以我使用了选项draft;您可能需要调整尺寸。但这确实确保了第二张和第三张图像的大小相同,正如您所指出的那样。以上结果如下:

上述代码的编译结果

注意,%每行末尾都有 ;这可以防止 LaTeX 在图像之间插入空格。如果需要空格,则必须适当调整图像的宽度,以使行的总宽度为1.0\textwidth。例如:

\includegraphics[width=0.25\textwidth]{Bilder/UNI-Logo_Siegel_4c_RZ_06.pdf}%
\hskip0.05\textwidth%
\includegraphics[width=0.15\textwidth]{Bilder/com.pdf}%
\hskip0.05\textwidth%
\includegraphics[width=0.15\textwidth]{Bilder/logo_Be.pdf}%
\hskip0.05\textwidth%
\includegraphics[width=0.25\textwidth]{Bilder/rdlogo.pdf}%

我希望这能有所帮助。

相关内容