Added sections folder

This commit is contained in:
alex 2022-10-26 12:43:16 -06:00
parent 379b953229
commit 3df68297ee
15 changed files with 142 additions and 1 deletions

View File

@ -22,7 +22,6 @@
\vskip 3pt \vskip 3pt
} }
% \logo{\includegraphics[width=0.2\linewidth]{./img/Mines.jpg}}
\date{\today} % Date, can be changed to a custom date \date{\today} % Date, can be changed to a custom date

View File

@ -0,0 +1,11 @@
%------------------------------------------------
\begin{frame}{Bullet Points}
\begin{itemize}
\item Lorem ipsum dolor sit amet, consectetur adipiscing elit
\item Aliquam blandit faucibus nisi, sit amet dapibus enim tempus eu
\item Nulla commodo, erat quis gravida posuere, elit lacus lobortis est, quis porttitor odio mauris at libero
\item Nam cursus est eget velit posuere pellentesque
\item Vestibulum faucibus velit a augue condimentum quis convallis nulla gravida
\end{itemize}
\end{frame}

View File

@ -0,0 +1,19 @@
%------------------------------------------------
\begin{frame}{Multiple Columns}
\begin{columns}[c] % The "c" option specifies centered vertical alignment while the "t" option is used for top vertical alignment
\column{.45\textwidth} % Left column and width
\textbf{Heading}
\begin{enumerate}
\item Statement
\item Explanation
\item Example
\end{enumerate}
\column{.5\textwidth} % Right column and width
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer lectus nisl, ultricies in feugiat rutrum, porttitor sit amet augue. Aliquam ut tortor mauris. Sed volutpat ante purus, quis accumsan dolor.
\end{columns}
\end{frame}

6
Bitcoin/Sections/End.tex Normal file
View File

@ -0,0 +1,6 @@
%------------------------------------------------
\begin{frame}
\Huge{\centerline{The End}}
\end{frame}

View File

@ -0,0 +1,6 @@
\begin{frame}[plain]{Micro Data Regression}
\begin{center}
\includegraphics[width=\textwidth,height=0.90\textheight,keepaspectratio]{./Micro/Micro_regression.pdf}
\end{center}
\end{frame}

View File

@ -0,0 +1,8 @@
%------------------------------------------------
\begin{frame}{Figure}
Uncomment the code on this slide to include your own image from the same directory as the template .TeX file.
%\begin{figure}
%\includegraphics[width=0.8\linewidth]{test}
%\end{figure}
\end{frame}

View File

@ -0,0 +1,8 @@
%------------------------------------------------
\begin{frame}[fragile] % Need to use the fragile option when verbatim is used in the slide
\frametitle{Citation}
An example of the \verb|\cite| command to cite within the presentation:\\~
This statement requires citation \cite{p1}.
\end{frame}

View File

@ -0,0 +1,17 @@
%------------------------------------------------
\begin{frame}{Blocks of Highlighted Text}
In this slide, some important text will be \alert{highlighted} because it's important. Please, don't abuse it.
\begin{block}{Block}
Sample text
\end{block}
\begin{alertblock}{Alertblock}
Sample text in red box
\end{alertblock}
\begin{examples}
Sample text in green box. The title of the block is ``Examples".
\end{examples}
\end{frame}

View File

@ -0,0 +1,7 @@
\begin{frame}[plain]
% Print the title page as the first slide
\titlepage
\begin{center}
{\includegraphics[height=1cm]{./img/Mines.jpg}}
\end{center}
\end{frame}

View File

@ -0,0 +1,7 @@
\begin{frame}{Overview}
% Throughout your presentation, if you choose to use \section{} and \subsection{} commands, these will automatically be printed on this slide as an overview of your presentation
\bf{What are the welfare changes faced by farmers, under institutional change that modify the value of groundwater access?
}
\tableofcontents
\end{frame}

View File

@ -0,0 +1,9 @@
\begin{frame}[plain]{Regression Discontinuity}
\begin{center}
\includegraphics[width=\textwidth,height=0.90\textheight,keepaspectratio]{./img/SP_Letter1_edit.pdf}
\pause
\includegraphics[width=\textwidth,height=0.90\textheight,keepaspectratio]{./img/SP_Letter2_edit.pdf}
\end{center}
\end{frame}

View File

@ -0,0 +1,6 @@
\begin{frame}[plain]{Regression Discontinuity}
\begin{center}
\includegraphics[width=\textwidth,height=0.90\textheight,keepaspectratio]{./img/CHANGE_Disc.png}
\end{center}
\end{frame}

View File

@ -0,0 +1,17 @@
%------------------------------------------------
\begin{frame}{Table}
\begin{table}
\begin{tabular}{l l l}
\toprule
\textbf{Treatments} & \textbf{Response 1} & \textbf{Response 2} \\
\midrule
Treatment 1 & 0.0003262 & 0.562 \\
Treatment 2 & 0.0015681 & 0.910 \\
Treatment 3 & 0.0009271 & 0.296 \\
\bottomrule
\end{tabular}
\caption{Table caption}
\end{table}
\end{frame}

View File

@ -0,0 +1,8 @@
%------------------------------------------------
\begin{frame}{Theorem}
\begin{theorem}[Mass--energy equivalence]
$E = mc^2$
\end{theorem}
\end{frame}

13
Bitcoin/Sections/bib.tex Normal file
View File

@ -0,0 +1,13 @@
%------------------------------------------------
\begin{frame}{References}
% Beamer does not support BibTeX so references must be inserted manually as below
\footnotesize{
\begin{thebibliography}{99}
\bibitem[Smith, 2012]{p1} John Smith (2012)
\newblock Title of the publication
\newblock \emph{Journal Name} 12(3), 45 -- 678.
\end{thebibliography}
}
\end{frame}