Created
July 30, 2015 15:34
-
-
Save sils/e51cf8a4ab902d4e6819 to your computer and use it in GitHub Desktop.
generated tex
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass[ignorenonframetext,aspectratio=169]{beamer} | |
\usetheme{guadec} | |
\setbeamertemplate{caption}[numbered] | |
\setbeamertemplate{caption label separator}{:} | |
\setbeamercolor{caption name}{fg=normal text.fg} | |
\usepackage{amssymb,amsmath} | |
\usepackage{ifxetex,ifluatex} | |
\usepackage{fixltx2e} % provides \textsubscript | |
\usepackage{lmodern} | |
\ifxetex | |
\usepackage{fontspec,xltxtra,xunicode} | |
\defaultfontfeatures{Mapping=tex-text,Scale=MatchLowercase} | |
\newcommand{\euro}{€} | |
\else | |
\ifluatex | |
\usepackage{fontspec} | |
\defaultfontfeatures{Mapping=tex-text,Scale=MatchLowercase} | |
\newcommand{\euro}{€} | |
\else | |
\usepackage[T1]{fontenc} | |
\usepackage[utf8]{inputenc} | |
\fi | |
\fi | |
% use upquote if available, for straight quotes in verbatim environments | |
\IfFileExists{upquote.sty}{\usepackage{upquote}}{} | |
% use microtype if available | |
\IfFileExists{microtype.sty}{\usepackage{microtype}}{} | |
\usepackage{color} | |
\usepackage{fancyvrb} | |
\newcommand{\VerbBar}{|} | |
\newcommand{\VERB}{\Verb[commandchars=\\\{\}]} | |
\DefineVerbatimEnvironment{Highlighting}{Verbatim}{commandchars=\\\{\}} | |
% Add ',fontsize=\small' for more characters per line | |
\newenvironment{Shaded}{}{} | |
\newcommand{\KeywordTok}[1]{\textbf{{#1}}} | |
\newcommand{\DataTypeTok}[1]{\textcolor[rgb]{0.50,0.00,0.00}{{#1}}} | |
\newcommand{\DecValTok}[1]{\textcolor[rgb]{0.00,0.00,1.00}{{#1}}} | |
\newcommand{\BaseNTok}[1]{\textcolor[rgb]{0.00,0.00,1.00}{{#1}}} | |
\newcommand{\FloatTok}[1]{\textcolor[rgb]{0.50,0.00,0.50}{{#1}}} | |
\newcommand{\CharTok}[1]{\textcolor[rgb]{1.00,0.00,1.00}{{#1}}} | |
\newcommand{\StringTok}[1]{\textcolor[rgb]{0.87,0.00,0.00}{{#1}}} | |
\newcommand{\CommentTok}[1]{\textcolor[rgb]{0.50,0.50,0.50}{\textit{{#1}}}} | |
\newcommand{\OtherTok}[1]{{#1}} | |
\newcommand{\AlertTok}[1]{\textcolor[rgb]{0.00,1.00,0.00}{\textbf{{#1}}}} | |
\newcommand{\FunctionTok}[1]{\textcolor[rgb]{0.00,0.00,0.50}{{#1}}} | |
\newcommand{\RegionMarkerTok}[1]{{#1}} | |
\newcommand{\ErrorTok}[1]{\textcolor[rgb]{1.00,0.00,0.00}{\textbf{{#1}}}} | |
\newcommand{\NormalTok}[1]{{#1}} | |
\usepackage{graphicx} | |
\makeatletter | |
\def\maxwidth{\ifdim\Gin@nat@width>\linewidth\linewidth\else\Gin@nat@width\fi} | |
\def\maxheight{\ifdim\Gin@nat@height>\textheight0.8\textheight\else\Gin@nat@height\fi} | |
\makeatother | |
% Scale images if necessary, so that they will not overflow the page | |
% margins by default, and it is still possible to overwrite the defaults | |
% using explicit options in \includegraphics[width, height, ...]{} | |
\setkeys{Gin}{width=\maxwidth,height=\maxheight,keepaspectratio} | |
% Comment these out if you don't want a slide with just the | |
% part/section/subsection/subsubsection title: | |
\AtBeginPart{ | |
\let\insertpartnumber\relax | |
\let\partname\relax | |
\frame{\partpage} | |
} | |
\AtBeginSection{ | |
\let\insertsectionnumber\relax | |
\let\sectionname\relax | |
\frame{\sectionpage} | |
} | |
\AtBeginSubsection{ | |
\let\insertsubsectionnumber\relax | |
\let\subsectionname\relax | |
\frame{\subsectionpage} | |
} | |
\setlength{\parindent}{0pt} | |
\setlength{\parskip}{6pt plus 2pt minus 1pt} | |
\setlength{\emergencystretch}{3em} % prevent overfull lines | |
\setcounter{secnumdepth}{0} | |
\title{How to use Pandoc for creating awesome slides for GUADEC 2015} | |
\author{Lasse Schuirmann (\texttt{[email protected]})} | |
\date{August 7, 2015} | |
\begin{document} | |
\frame{\titlepage} | |
\begin{frame}[fragile]{Content Slide} | |
\begin{figure}[htbp] | |
\centering | |
\includegraphics{graph.png} | |
\caption{} | |
\end{figure} | |
Do math simply! | |
\[\sqrt{5} \neq 1\] | |
\texttt{Use} standard \emph{markdown} \textbf{easily}. | |
\begin{block}{With Lower Level Headers} | |
\begin{Shaded} | |
\begin{Highlighting}[] | |
\KeywordTok{def} \NormalTok{some_code(is_easy_to):} | |
\NormalTok{integrate()} | |
\CommentTok{# With syntax highlighting, of course!} | |
\end{Highlighting} | |
\end{Shaded} | |
\end{block} | |
\end{frame} | |
\begin{frame}{Incrementally Showing Lists} | |
\begin{itemize}[<+->] | |
\itemsep1pt\parskip0pt\parsep0pt | |
\item | |
Is | |
\item | |
Dead | |
\item | |
Easy! | |
\end{itemize} | |
\end{frame} | |
\section{Compiling}\label{compiling} | |
\begin{frame}{Compiling} | |
Simply use \texttt{make\ pandoc} in this directory! | |
\end{frame} | |
\end{document} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass[ignorenonframetext,aspectratio=169]{beamer} | |
\usetheme{guadec} | |
\setbeamertemplate{caption}[numbered] | |
\setbeamertemplate{caption label separator}{:} | |
\setbeamercolor{caption name}{fg=normal text.fg} | |
\usepackage{amssymb,amsmath} | |
\usepackage{ifxetex,ifluatex} | |
\usepackage{fixltx2e} % provides \textsubscript | |
\usepackage{lmodern} | |
\ifxetex | |
\usepackage{fontspec,xltxtra,xunicode} | |
\defaultfontfeatures{Mapping=tex-text,Scale=MatchLowercase} | |
\newcommand{\euro}{€} | |
\else | |
\ifluatex | |
\usepackage{fontspec} | |
\defaultfontfeatures{Mapping=tex-text,Scale=MatchLowercase} | |
\newcommand{\euro}{€} | |
\else | |
\usepackage[T1]{fontenc} | |
\usepackage[utf8]{inputenc} | |
\fi | |
\fi | |
% use upquote if available, for straight quotes in verbatim environments | |
\IfFileExists{upquote.sty}{\usepackage{upquote}}{} | |
% use microtype if available | |
\IfFileExists{microtype.sty}{\usepackage{microtype}}{} | |
\usepackage{color} | |
\usepackage{fancyvrb} | |
\newcommand{\VerbBar}{|} | |
\newcommand{\VERB}{\Verb[commandchars=\\\{\}]} | |
\DefineVerbatimEnvironment{Highlighting}{Verbatim}{commandchars=\\\{\}} | |
% Add ',fontsize=\small' for more characters per line | |
\newenvironment{Shaded}{}{} | |
\newcommand{\KeywordTok}[1]{\textbf{{#1}}} | |
\newcommand{\DataTypeTok}[1]{\textcolor[rgb]{0.50,0.00,0.00}{{#1}}} | |
\newcommand{\DecValTok}[1]{\textcolor[rgb]{0.00,0.00,1.00}{{#1}}} | |
\newcommand{\BaseNTok}[1]{\textcolor[rgb]{0.00,0.00,1.00}{{#1}}} | |
\newcommand{\FloatTok}[1]{\textcolor[rgb]{0.50,0.00,0.50}{{#1}}} | |
\newcommand{\CharTok}[1]{\textcolor[rgb]{1.00,0.00,1.00}{{#1}}} | |
\newcommand{\StringTok}[1]{\textcolor[rgb]{0.87,0.00,0.00}{{#1}}} | |
\newcommand{\CommentTok}[1]{\textcolor[rgb]{0.50,0.50,0.50}{\textit{{#1}}}} | |
\newcommand{\OtherTok}[1]{{#1}} | |
\newcommand{\AlertTok}[1]{\textcolor[rgb]{0.00,1.00,0.00}{\textbf{{#1}}}} | |
\newcommand{\FunctionTok}[1]{\textcolor[rgb]{0.00,0.00,0.50}{{#1}}} | |
\newcommand{\RegionMarkerTok}[1]{{#1}} | |
\newcommand{\ErrorTok}[1]{\textcolor[rgb]{1.00,0.00,0.00}{\textbf{{#1}}}} | |
\newcommand{\NormalTok}[1]{{#1}} | |
% Comment these out if you don't want a slide with just the | |
% part/section/subsection/subsubsection title: | |
\AtBeginPart{ | |
\let\insertpartnumber\relax | |
\let\partname\relax | |
\frame{\partpage} | |
} | |
\AtBeginSection{ | |
\let\insertsectionnumber\relax | |
\let\sectionname\relax | |
\frame{\sectionpage} | |
} | |
\AtBeginSubsection{ | |
\let\insertsubsectionnumber\relax | |
\let\subsectionname\relax | |
\frame{\subsectionpage} | |
} | |
\setlength{\parindent}{0pt} | |
\setlength{\parskip}{6pt plus 2pt minus 1pt} | |
\setlength{\emergencystretch}{3em} % prevent overfull lines | |
\setcounter{secnumdepth}{0} | |
\title{How to use Pandoc for creating awesome slides for GUADEC 2015} | |
\author{Lasse Schuirmann (\texttt{[email protected]})} | |
\date{August 7, 2015} | |
\begin{document} | |
\frame{\titlepage} | |
\begin{frame}[fragile]{Content Slide} | |
Do math simply! | |
\[\sqrt{5} \neq 1\] | |
\texttt{Use} standard \emph{markdown} \textbf{easily}. | |
\begin{block}{With Lower Level Headers} | |
\begin{Shaded} | |
\begin{Highlighting}[] | |
\KeywordTok{def} \NormalTok{some_code(is_easy_to):} | |
\NormalTok{integrate()} | |
\CommentTok{# With syntax highlighting, of course!} | |
\end{Highlighting} | |
\end{Shaded} | |
\end{block} | |
\end{frame} | |
\begin{frame}{Incrementally Showing Lists} | |
\begin{itemize}[<+->] | |
\itemsep1pt\parskip0pt\parsep0pt | |
\item | |
Is | |
\item | |
Dead | |
\item | |
Easy! | |
\end{itemize} | |
\end{frame} | |
\section{Compiling}\label{compiling} | |
\begin{frame}{Compiling} | |
Simply use \texttt{make\ pandoc} in this directory! | |
\end{frame} | |
\end{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment