저는 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}