CMS 3D CMS Logo

Variables
presentationTemplates Namespace Reference

Variables

string frameTemplate
 
string plotTemplate = r""" \includegraphics[width=[width]\textwidth, height=[height]\textheight, keepaspectratio=true]{[path]}"""
 
string subsectionTemplate
 
string summaryTemplate
 
string texTemplate
 
string toPdf
 

Variable Documentation

◆ frameTemplate

string presentationTemplates.frameTemplate
Initial value:
1 = r"""
2 \begin{frame}{[title]}
3  \begin{figure}
4  \centering
5 [plots]
6  %\\Comments here
7  \end{figure}
8 \end{frame}
9 """

Definition at line 60 of file presentationTemplates.py.

◆ plotTemplate

string presentationTemplates.plotTemplate = r""" \includegraphics[width=[width]\textwidth, height=[height]\textheight, keepaspectratio=true]{[path]}"""

Definition at line 77 of file presentationTemplates.py.

◆ subsectionTemplate

string presentationTemplates.subsectionTemplate
Initial value:
1 = r"""
2 
3 \subsection{[title]}
4 %---------------------------------------------
5 """

Definition at line 79 of file presentationTemplates.py.

◆ summaryTemplate

string presentationTemplates.summaryTemplate
Initial value:
1 = r"""
2 \begin{frame}[allowframebreaks]{[title]}
3 \centering
4 [summary]
5 \end{frame}
6 """

Definition at line 70 of file presentationTemplates.py.

◆ texTemplate

string presentationTemplates.texTemplate

Definition at line 3 of file presentationTemplates.py.

◆ toPdf

string presentationTemplates.toPdf
Initial value:
1 = """
2 #To produce a pdf presentation
3 #a. fill in your information, comments etc. in presentation.tex
4 #b. run this script: ./ToPdf.sh
5 latex presentation.tex
6 latex presentation.tex #(twice to produce the bookmarks)
7 dvipdf presentation.dvi
8 #(pdflatex doesn't like .eps-images; this way we can
9 #use just latex and the convert the result into pdf.)
10 
11 """

Definition at line 85 of file presentationTemplates.py.