标题行之间的间距太大?Vspace 不起作用

标题行之间的间距太大?Vspace 不起作用

我想创建一个投影仪演示文稿并且我有以下代码:

\documentclass{beamer}

\title[Value at Risk, Name1, Name2{\&} Nam3]{Calculate the Value at Risk \tiny \\using the Delta-Normal model, nonparametric methods,\\ MonteCarlo simulations and historical sim



University\\
\vskip1em

Chair\\
Chairholder: Name\\
Supervisor: Name\\
%\vskip1em
%\vskip1em
\definecolor{darkblue}{RGB}{12,013,148}
\textcolor{darkblue}{\textit{Course description}}

 \small
Place, July 2013\\

\footnotesize
\textit{$^1$$^{, 2}$ Master ,  Semester}}
%\textit{$^2$ Master,  Semester}}
\normalsize


% Comment the following command, if you don't want, that the pdf file starts in full screen mode:
\hypersetup{pdfpagemode=FullScreen}

%Start of the document
\begin{document}


 \frame{
    \frametitle{Table of Contents}
\begin{enumerate}[\bfseries \begingroup\color{blue} 1)\endgroup]
\item Test
\item Test
\end{enumerate}


}
\end{document}

现在,您看到标题很长,我需要一些换行符,但是空间太多,如果我尝试:

 \title[Value at Risk, Name1, Name2{\&} Nam3]{Calculate the Value at Risk \tiny \\using the Delta-Normal model, nonparametric methods,\\ MonteCarlo simulations and historical simulations}

不起作用。我该如何得到它?

(我使用了额外的脚注,因为 \authora 中的常态不起作用)

答案1

如果您\\用替换\newline{}(并\maketitle在 之后添加\begin{document}),它就会起作用。

此外,\normalsize您的序言中的不是必需的/错误的。

最后,请注意,您的代码严重滥用了 LaTeX 语法:\title是针对标题的,而不是针对整个标题页信息。我beamer对此不太了解(请阅读手动的!),但例如作者应该使用\author命令给出。
以下代码显示了如何使其更加结构化,但它肯定还可以改进:

\documentclass{beamer}

\definecolor{darkblue}{RGB}{12,013,148}

\title{Value at Risk}
\subtitle{\small Calculation using the Delta-Normal model, nonparametric methods, MonteCarlo and historical simulations}
\author{\tiny%
  University XYZ\\
  Chair\\
  Chairholder: Name\thanks{Chairholder detail}\\
  Supervisor: Name\thanks{Supervisor detail}\\[1em]
  \textcolor{darkblue}{\textit{Course description}}}
\date{Place, July 2013}

\hypersetup{pdfpagemode=FullScreen}

\begin{document}

\maketitle

\frame{
  \frametitle{Table of Contents}
  \begin{enumerate}[\bfseries \begingroup\color{blue} 1)\endgroup]
    \item Test
    \item Test
  \end{enumerate}}

\end{document}

代码中的\small是为了展示如何轻松控制输出大小。将其替换为您喜欢的任何内容和/或使用相同的\author或其他类似命令。

相关内容