-
Notifications
You must be signed in to change notification settings - Fork 5
Use
neze edited this page Dec 14, 2016
·
24 revisions
polytechnique-beamer
uses a weird trick with .pdf
files for its graphisms. Therefore the pictures are only available in pdf
format. You would then need to use PDFLaTeX
in order to compile correctly your documents.
\documentclass[aspectratio=169]{beamer}
\usepackage[utf8]{inputenc}
\usepackage[frenchb]{babel}
\usepackage{beamerx}
\title[Subtitle]{Title}
\author{John Smith}
\begin{document}
\maketitle
\end{document}
\xsection{violet}[Short-title]{Title}
\xsection{violet}[Short-title]{Title}[my-picture]
\xsection*{violet}{Title}
\xsubsection{violet}[Short-title]{Title}{Subtitle}
\xsubsection{violet}[Short-title]{Title}{Subtitle}[my-picture]
\xsubsection{violet}[Short-title]{Title}{}
subsection.tex - subsection.pdf
\begin{frame}{Title}{Subtitle}
Simple content
\end{frame}
\begin{xpic}[h]{my-high-picture}
\bf\color{white}Text
\end{xpic}
\begin{xpic}[w]{my-high-picture}
\bf\color{white}Text
\end{xpic}
\begin{xpic}{my-high-picture}
\bf\color{white}Text
\end{xpic}
\begin{xpic}[h]{my-wide-picture}
\bf\color{white}Text
\end{xpic}
\begin{xpic}[w]{my-wide-picture}
\bf\color{black}Text
\end{xpic}
\begin{xpic}{my-wide-picture}
\bf\color{black}Text
\end{xpic}
\begin{frame}{Stacked}
\begin{block}{First}
Text
\end{block}
\begin{block}{Second}
Text
\end{block}
\begin{block}{Third}
Text
\end{block}
\end{frame}
\begin{frame}{Adjacent}
\begin{columns}[t]
\begin{column}{0.4\textwidth}
\begin{block}{First}
Text
\end{block}
\end{column}
\begin{column}{0.3\textwidth}
\begin{block}{Second}
Text
\end{block}
\end{column}
\begin{column}{0.3\textwidth}
\begin{block}{Third}
Text
\end{block}
\end{column}
\end{columns}
\end{frame}
- violet
- grey
- red
- blue
- purple
- green
- yellow
- turquoise
I don't want to see the title in the footer.
\usepackage[simplefoot]{beamerx}
simplefoot.tex - simplefoot.pdf
I don't want the arms in the header.
\usepackage[simplehead]{beamerx}
simplehead.tex - simplehead.pdf
I wan't simple blocks without decoration.
\usepackage[simplebloc]{beamerx}