标题页上的图像水平间距

标题页上的图像水平间距

您好,我在标题页顶部插入并对齐了三个徽标图像,但它们没有分开;我不知道如何水平间隔它们。接下来是我编写的代码:

\documentclass[12pt,a4paper]{report}

\usepackage{graphicx}

\usepackage[utf8]{inputenc}

\begin{document}

\begin{titlepage}

\centering
\includegraphics[width=0.2\textwidth]{example-image-a}%
\includegraphics[width=0.2\textwidth]{example-image-b}%
\includegraphics[width=0.2\textwidth]{example-image-c}%

\end{titlepage} 

\end{document}`

结果:

在此处输入图片描述

感谢您的建议

答案1

您可以使用该\hfill命令在水平方向上规则地间隔开图形。

\documentclass[12pt,a4paper]{report}

\usepackage{graphicx}

\begin{document}
    \begin{titlepage}
        \centering
        \includegraphics[width=0.2\textwidth]{example-image-a}%
        \hfill
        \includegraphics[width=0.2\textwidth]{example-image-b}%
        \hfill
        \includegraphics[width=0.2\textwidth]{example-image-c}%
    \end{titlepage} 
\end{document}

你会得到类似这样的结果:

在此处输入图片描述

如果您想自己指定水平间距(例如,1厘米),请尝试\hspace{1cm}而不是\hfill

相关内容