如何将图像放在 Latex 的左上角?

如何将图像放在 Latex 的左上角?

我正在写我的硕士论文,用 Latex 写,我需要在标题页的两个地方放我大学的标志:左上角和页面中间。下图显示了它应该如何显示: 在此处输入图片描述

为了做到这一点,我创建了以下乳胶代码:

\begin{titlepage}
\begin{center}
\vspace*{-1.2in}
\begin{figure}[htb]
\begin{center}
        \includegraphics[width=13cm]{logouc3m}
\end{center}
\end{figure}
\vspace*{-0.5in}    
\large{\textbf{\color{Blue}Master universitario...}} \\
\large{\textbf{\color{Blue}Indique el curso academico (ej: 2014-2015}} \\
\vspace*{0.3in}
\Large{\it{Trabajo Fin de Máster}} \\
\vspace*{0.3in}
\begin{LARGE}
    \textbf{\color{Blue}"Titulo del trabajo"} \\
\end{LARGE}
\vspace*{0.15in}
\color{Blue}\rule{110mm}{0.1mm}\\
\vspace*{0.15in}
\begin{LARGE}
    \textbf{\color{Blue} Nombre Apellido1 Apellido2} \\
\end{LARGE}
\vspace*{0.1in}
\begin{large}
    \textbf{\color{Blue} Tutor\textbackslash es} \\
    \vspace*{0.1in}
    \textbf{\color{Blue} Nombre Apellido1 Apellido2} \\
    \vspace*{0.05in}
    \textbf{\color{Blue} Nombre Apellido1 Apellido2}
\end{large}
\end{center}    
\end{titlepage}

但是我没有找到在左上角添加大学徽标的方法。我尝试使用以下命令:

\begin{ \begin{flushleft}
    \includegraphics[width=6cm]{logouc3m}
\end{flushleft}

就在中心环境之前,但是它不能正常工作。

答案1

像这样吗?

笔记:徽标以.svg格式存在。我必须将其转换为.pdf。另外,不要将figure环境用于不必浮动且没有标题的图像。

\documentclass[12pt]{article}
\usepackage[utf8]{inputenc} \usepackage{graphicx}
\usepackage[svgnames]{xcolor}
\usepackage{amssymb}
\colorlet{Blue}{blue}

\begin{document}

\begin{titlepage}
  \vspace*{-1.2in}
  \begin{flushleft}
    \includegraphics[width=2cm]{logouc3m}
  \end{flushleft}
  \begin{center}
    \large{\textbf{\color{Blue}Master universitario...}} \\
    \large{\textbf{\color{Blue}Indique el curso academico (ej: 2014-2015)}} \\
    \vspace*{0.3in}
    \Large{\it{Trabajo Fin de Máster}} \\
    \vspace*{0.3in}
    \begin{LARGE}
      \textbf{\color{Blue}"Titulo del trabajo"} \\
    \end{LARGE}
    \vspace*{0.15in}
    \color{Blue}\rule{110mm}{0.1mm}\\
    \vspace*{0.15in}
    \begin{LARGE}
      \textbf{\color{Blue} Nombre Apellido1 Apellido2} \\
    \end{LARGE}
    \vspace*{0.1in}
    \begin{large}
      \textbf{\color{Blue} Tutor\textbackslash es} \\
      \vspace*{0.1in}
      \textbf{\color{Blue} Nombre Apellido1 Apellido2} \\
      \vspace*{0.05in}
      \textbf{\color{Blue} Nombre Apellido1 Apellido2}
    \end{large}
  \end{center}
\end{titlepage}

\end{document} 

在此处输入图片描述

答案2

你想要这样的东西吗:

\begin{titlepage}
\noindent\parbox{\linewith}{\includegraphics[width=0.25\textwidth]{<path>}\\
Text below the picture}
\vspace{-30pt}%if needed

\begin{center}
some stuff
\end{center}    
\end{titlepage}

相关内容