徽标略有不同,但没关系。我试图将图像放入环境中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}