Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
Path: blob/master/latex/presentation/presentation.tex
Views: 997
\documentclass{beamer}12% This file is a solution template for:34% - Giving a talk on some subject.5% - The talk is between 15min and 45min long.6% - Style is ornate.78% for more examples, see:9% https://www.ctan.org/tex-archive/macros/latex/contrib/beamer/solutions10% and about beamer here:11% https://www.ctan.org/tex-archive/macros/latex/contrib/beamer1213% adding SageMath processing capabilities14\usepackage{sagetex}151617% Copyright 2004 by Till Tantau <tantau@users.sourceforge.net>.18%19% In principle, this file can be redistributed and/or modified under20% the terms of the GNU Public License, version 2.21%22% However, this file is supposed to be a template to be modified23% for your own needs. For this reason, if you use this file as a24% template and not specifically distribute it as part of a another25% package/program, I grant the extra permission to freely copy and26% modify this file as you see fit and even to delete this copyright27% notice.282930\mode<presentation>31{32\usetheme{Warsaw}33% or ...3435\setbeamercovered{transparent}36% or whatever (possibly just delete it)37}383940\usepackage[english]{babel}41% or whatever4243\usepackage[utf8]{inputenc}44% or whatever4546\usepackage{times}47\usepackage[T1]{fontenc}48% Or whatever. Note that the encoding and the font should match. If T149% does not look nice, try deleting the line with the fontenc.505152\title[Short Paper Title] % (optional, use only with long paper titles)53{Presentation Title}5455\subtitle56{Presentation Subtitle} % (optional)5758\author[Author, Another] % (optional, use only with lots of authors)59{F.~Author\inst{1} \and S.~Another\inst{2}}60% - Use the \inst{?} command only if the authors have different61% affiliation.6263\institute[Universities of Somewhere and Elsewhere] % (optional, but mostly needed)64{65\inst{1}%66Department of Computer Science\\67University of Somewhere68\and69\inst{2}%70Department of Theoretical Philosophy\\71University of Elsewhere}72% - Use the \inst command only if there are several affiliations.73% - Keep it simple, no one is interested in your street address.7475\date[Short Occasion] % (optional)76{Date / Occasion}7778\subject{Talks}79% This is only inserted into the PDF information catalog. Can be left80% out.81828384% If you have a file called "university-logo-filename.xxx", where xxx85% is a graphic format that can be processed by latex or pdflatex,86% resp., then you can add a logo as follows:8788% \pgfdeclareimage[height=0.5cm]{university-logo}{university-logo-filename}89% \logo{\pgfuseimage{university-logo}}90919293% Delete this, if you do not want the table of contents to pop up at94% the beginning of each subsection:95\AtBeginSubsection[]96{97\begin{frame}<beamer>{Outline}98\tableofcontents[currentsection,currentsubsection]99\end{frame}100}101102103% If you wish to uncover everything in a step-wise fashion, uncomment104% the following command:105106%\beamerdefaultoverlayspecification{<+->}107108109\begin{document}110111\begin{frame}112\titlepage113\end{frame}114115\begin{frame}{Outline}116\tableofcontents117% You might wish to add the option [pausesections]118\end{frame}119120121% Since this a solution template for a generic talk, very little can122% be said about how it should be structured. However, the talk length123% of between 15min and 45min and the theme suggest that you stick to124% the following rules:125126% - Exactly two or three sections (other than the summary).127% - At *most* three subsections per section.128% - Talk about 30s to 2min per frame. So there should be between about129% 15 and 30 frames, all told.130131\section{Introduction}132133\subsection[Short First Subsection Name]{First Subsection Name}134135\begin{frame}{Make Titles Informative. Use Uppercase Letters.}{Subtitles are optional.}136% - A title should summarize the slide in an understandable fashion137% for anyone how does not follow everything on the slide itself.138139\begin{itemize}140\item141Use \texttt{itemize} a lot.142\item143Use very short sentences or short phrases.144\end{itemize}145\end{frame}146147\begin{frame}{Make Titles Informative.}148149You can create overlays\dots150\begin{itemize}151\item using the \texttt{pause} command:152\begin{itemize}153\item154First item.155\pause156\item157Second item.158\end{itemize}159\item160using overlay specifications:161\begin{itemize}162\item<3->163First item.164\item<4->165Second item.166\end{itemize}167\item168using the general \texttt{uncover} command:169\begin{itemize}170\uncover<5->{\item171First item.}172\uncover<6->{\item173Second item.}174\end{itemize}175\end{itemize}176\end{frame}177178179\subsection{Second Subsection}180181\begin{sagesilent}182f(x) = cos(2*x) / (1+x^2)183\end{sagesilent}184185\begin{frame}{Embedded SageMath}186187\begin{block}{SageMath variables in text}188The first derivative of $f(x) := \sage{f(x)}$ is $\sage{diff(f,x)(x)}$.189\end{block}190\end{frame}191192\begin{frame}{Make Titles Informative.}193\end{frame}194195196197\section*{Summary}198199\begin{frame}{Summary}200201% Keep the summary *very short*.202\begin{itemize}203\item204The \alert{first main message} of your talk in one or two lines.205\item206The \alert{second main message} of your talk in one or two lines.207\item208Perhaps a \alert{third message}, but not more than that.209\end{itemize}210211% The following outlook is optional.212\vskip0pt plus.5fill213\begin{itemize}214\item215Outlook216\begin{itemize}217\item218Something you haven't solved.219\item220Something else you haven't solved.221\end{itemize}222\end{itemize}223\end{frame}224225226\end{document}227228229