帮助调整标题行距

帮助调整标题行距

我正在定制论文首页,需要一些帮助来调整标题行距。标题有点长,但第一行和第二行之间的间距太小,所以我想增加更多空间。

\documentclass{article}
\usepackage{float}%
\usepackage{graphicx}

\begin{document}

\begin{minipage}[t]{.13\textwidth}
    \vspace{-0.25in}
    \begin{figure}[H]
        \includegraphics[width=0.90\textwidth]{example-image}
    \end{figure}
\end{minipage}
\hfill
\begin{minipage}[t]{.85\textwidth}
    \vspace{0pt}
    \begin{flushleft}
        \begin{tabular}{l}
            {\sc Pontificia Universidad Católica de Chile}\\
            {\sc Instituto de Economía}\\
            {\sc Proyecto Profesional}\\
            {\sc Magíster en Economía Aplicada}\\
            {\sc Mención Políticas Públicas}\\
        \end{tabular}
    \end{flushleft}
\end{minipage}
\vspace{0pt}
\hfill
\vspace*{6cm}
\begin{center}{}
    \vspace*{2mm}
    {\Huge\bf Diseño de una evaluación de impacto para Puentes Educativos}\\
    \vspace*{4mm}
\end{center}

\vspace*{75mm}

\begin{flushright}
\begin{tabular}{l}
    \textbf{Profesores:} Josefa Aguirre\\
        \, \, \, \, \, \, \, \, \, \, \, \, \, Ryan Cooper\\
        \, \, \, \, \, \, \, \, \, \, \, Claudio Sapelli
        
    \vspace*{2mm}\\
    \textbf{Contraparte:} Fundación 99
     \vspace*{2mm}\\
    \textbf{Alumno:} Fernando Bastidas
    \vspace*{2mm}\\
    \textbf{Fecha:} 8 de diciembre de 2022
\end{tabular}


\end{flushright}
\end{document}

另外,我想将教授名单居中放置在右侧,我手动添加了\,,所以如果您能帮助我我将不胜感激。

答案1

您不需要figure这里,而且每当您更改大小时,您都应该包括段落结尾,以便获得合适的行距。在这里您可以简单地删除该{}组。

在此处输入图片描述

\documentclass{article}

\usepackage{graphicx}

\begin{document}

\begin{minipage}[t]{.13\textwidth}
    \vspace{0pt}
\centering
        \includegraphics[width=0.90\textwidth]{example-image}
\end{minipage}%%%
\hfill
\begin{minipage}[t]{.85\textwidth}
    \vspace{0pt}
    \begin{flushleft}
        \begin{tabular}{l}
            {\scshape Pontificia Universidad Católica de Chile}\\
            {\scshape Instituto de Economía}\\
            {\scshape Proyecto Profesional}\\
            {\scshape Magíster en Economía Aplicada}\\
            {\scshape Mención Políticas Públicas}\\
        \end{tabular}
    \end{flushleft}
\end{minipage}
\hfill
\vspace*{6cm}
\begin{center}
    \Huge\bfseries Diseño de una evaluación de impacto para Puentes Educativos

\end{center}

\vspace*{75mm}

\begin{flushright}
\begin{tabular}[t]{@{}l@{}}
    \textbf{Profesores:} \hfill
\begin{tabular}[t]{@{}l@{}}
Josefa Aguirre\\
Ryan Cooper\\
Claudio Sapelli
\end{tabular}\\
\textbf{Contraparte:} \hfill Fundación 99\\
    \textbf{Alumno:} \hfill Fernando Bastidas\\
    \textbf{Fecha:} \hfill 8 de diciembre de 2022
\end{tabular}
\end{flushright}
\end{document}

相关内容