プレゼンテーション用のスライドを作成するために、Share Latex サイトを使用しています。
以下のコードがあります:
\documentclass{beamer}
\usetheme{CambridgeUS}
\usepackage{graphicx}
\usepackage{mathabx}
\title{}
\author{}
\institute{}
\date{}
\begin{document}
\begin{frame}
\titlepage
\frametitle{}
\end{frame}
\begin{frame}
\begin{center}
\frametitle{Outline}
\end{center}
\begin{itemize}
\item Introduction
\item Model 1
\item Main Results
\begin{itemize}
\item Graphical Analysis
\end{itemize}
\item Model 2
\item Main Results
\begin{itemize}
\item Graphical Analysis
\item Comparative statics
\end{itemize}
\item Conclusion
\item Appendix
\end{itemize}
\end{frame}
\begin{frame}
\begin{center}
\frametitle{Introduction}
\end{center}
\begin{itemize}
\item Academic dishonesty is a serious issue in many developing countries.
\begin{itemize}
\item Cheating in school is a social norm.
\item Generally, the professors do not take this issue seriously.
\item Low-level of punishment for the perpetrators.
\end{itemize}
\item The objective is to capture a student's decision to either plagiarize or be honest with two prisoner's dilemma models.
\end{itemize}
\end{frame}
\end{document}
次のようなスライドがあります:
文を上に移動し、文の間にスペースを作るにはどうしたらよいでしょうか?
答え1
[t]
フレームにテキストをフレームの上部に揃えるオプションを追加する必要があります。enumitem
項目別リストの間隔を制御するパッケージこの答えただし、その後は、説明したように、デフォルトの箇条書きに戻す必要があります。ここまた、コメントで述べたように、 を環境frametitle
に置かないでくださいcenter
。
\documentclass{beamer}
\usetheme{CambridgeUS}
\usepackage{enumitem}
\setitemize{itemsep=20pt,% Change the item separation here
label=\usebeamerfont*{itemize item}% These lines are necessary to restore the bullets to each item
\usebeamercolor[fg]{itemize item}%
\usebeamertemplate{itemize item}%
}
\begin{document}
\begin{frame}[t] % Add the [t] option here to top-align the text on the slide.
\frametitle{Introduction}
\begin{itemize}
\item Academic dishonesty is a serious issue in many developing countries.
\begin{itemize}
\item Cheating in school is a social norm.
\item Generally, the professors do not take this issue seriously.
\item Low-level of punishment for the perpetrators.
\end{itemize}
\item The objective is to capture a student's decision to either plagiarize or be honest with two prisoner's dilemma models.
\end{itemize}
\end{frame}
\end{document}