Beamer 演示文稿中的主题

Beamer 演示文稿中的主题

我正在为课程制作一份 Beamer 演示文稿,我想在标题页中包含课程名称,但我不知道该怎么做。我尝试使用 \subject{课程名称},但它没有任何反应,这是正确的命令吗?

\documentclass{beamer} 
\usetheme{Madrid} } \title [Small Title]{Long Title} 
\author[Person1 \and Person2]{Person1 \inst{1} \and Person2 \inst{2}} 
\institute[UNI]{\inst{1} UNI \and \inst{2} UNI} \subject{Advanced Microeconometrics} 
\date{The date} 
\subject{Name of the Course} 
\begin{document} 
\justifying 
\begin{frame} 
\titlepage 
\end{frame} 

答案1

从评论中取出并删除您}认为太多的评论\usetheme{Madrid},添加包ragged2e以便使用您的命令\justifying,并添加\end{document}到末尾:

% arara: pdflatex 

\documentclass{beamer} 
\usepackage{ragged2e}
\usetheme{Madrid}
\title [Small Title]{Long Title} 
\author[Person1 \and Person2]{Person1 \inst{1} \and Person2 \inst{2}} 
\institute[UNI]{\inst{1} UNI \and \inst{2} UNI \\[3ex] {\large Advanced Microeconometrics}}
\date{The date} 
\subject{Name of the Course}

\begin{document} 
\justifying 
\begin{frame} 
\titlepage 
\end{frame} 
\end{document}

在此处输入图片描述

相关内容