Estou usando o site Share Latex para criar slides para minha apresentação.
Eu tenho os seguintes códigos:
\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}
Eu tenho esse slide:
Como movo minhas frases para cima e também quero criar espaços entre as frases?
Responder1
Você precisa adicionar a [t]
opção aos seus quadros para alinhar o texto ao topo do quadro. Você pode usar oenumitem
pacote para controlar o espaçamento das listas discriminadas, conforme mostrado emesta resposta, mas você terá que restaurar os marcadores padrão depois de fazer isso, conforme explicadoaqui. Além disso, conforme mencionado em um comentário, você não deve colocar o arquivo frametitle
em um center
ambiente.
\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}