在两个图形之间放置文本

在两个图形之间放置文本

我刚开始使用 LaTex,正在尝试创建自定义标题页。在我们的实验室报告中,我们被要求添加一些类似于图片的内容。我无法对齐两个图之间的文本。我怎样才能像在图片中一样对齐它?

由于我从头开始制作标题页,因此我有两个如下所示的 .tex 文档:

文件 test_title.tex

\documentclass[pdftex,12pt,letterpaper]{report}

\usepackage[pdftex]{graphicx}

\newcommand{\HRule}{\rule{\linewidth}{0.5mm}}

\begin{document}

\input{./title.tex}
\end{document}

文件标题.tex

\begin{titlepage}

\begin{flushleft}
\includegraphics[width=0.15\textwidth]{./UPRMlogo}
\end{flushleft}

\begin{flushright}
\includegraphics[width=0.15\textwidth]{./UPRMlogo}
\end{flushright}

\begin{center}
University of Puerto Rico \\
Mayaguez Campus\\
Mechanical Engineering Department\\
\end{center}

\end{titlepage}

例子

答案1

这是一种方法,但还有许多其他选择。请注意%字符的使用,以防止虚假空格导致过满\hbox警告。

\documentclass{article}
\usepackage{graphicx}

\begin{document}
\noindent% just to prevent indentation narrowing the line width for this line
\includegraphics[width=0.15\textwidth]{example-image-a}%
\begin{minipage}[b]{0.7\textwidth}
\centering
University of Puerto Rico \\
Mayaguez Campus\\
Mechanical Engineering Department
\end{minipage}%
\includegraphics[width=0.15\textwidth]{example-image-b}
\end{document}

在此处输入图片描述

相关内容