在标题页上的两个徽标之间插入文本(水平)

在标题页上的两个徽标之间插入文本(水平)

我需要在大学名称之间插入两个徽标,如下所示 标题

但我做的最好的是这个 我的标题

徽标略有不同,但没关系。我试图将图像放入环境中figure,尝试了该wrapfig包,但都没有用。那么有什么方法可以按原样放置图像吗?

{\small \sc \bf
      \includegraphics[width=1.3cm, height=1.3cm]{msu-logo.png}
      MOSCOW GOVERNMENT UNIVERSITY
      \includegraphics[width=1.3cm, height=1.3cm]{cmc-logo2.png}\\
      named after M.V.~Lomonosov\\
      The faculty of Computational Mathematics and Cybernetics
      \par\noindent\rule{\textwidth}{0.1pt}
}

答案1

在此处输入图片描述

\documentclass[]{article}
\usepackage{graphicx}
\usepackage{fancyhdr}
\usepackage{color}
\usepackage[dvipsnames]{xcolor}
\usepackage{tikz}

\long\def\mytitle{%
    \begin{titlepage}
        \begin{center}
            \begin{minipage}{0.15\textwidth}%
                \includegraphics[width=0.8\textwidth]{example-image-a}%
            \end{minipage}\hspace{10pt}
            \begin{minipage}{0.6\textwidth}%
                  MOSCOW GOVERNMENT UNIVERSITY\\
                  named after M.V.~Lomonosov\\
                  The faculty of Computational Mathematics and Cybernetics\\
            \end{minipage}\hspace{10pt}
        \begin{minipage}{0.15\textwidth}%
            \includegraphics[width=0.8\textwidth]{example-image-a}%
        \end{minipage}
        \begin{tikzpicture}%
            \draw[thick, brown] (0,0)--(0.99\textwidth,0);%   
        \end{tikzpicture}%
        \end{center}
    \end{titlepage}
}


\begin{document}
    \mytitle
\end{document}

相关内容