Start Personal record
(without picture)
Personal record
(with picture)
Study Imprint Further sides deutsche Seiten

Back to short documentation 2   Back to overview   Forward to additional examples

Short documentation for course 3

  • term paper
  • structure
  • line space
  • listings with roman numbers
  • footnotes within tables
  • bibliography
  • beamer class
  • commands for beamer

  • term paper

    structure

    \begin{document} 
    \input{kap1} 
    \end{document}
    
    To insert single tex files use \input{name}, the name of the file is be quoted without ending .tex.

    line space

    \usepackage{setspace} 
    \onehalfspacing 
    \begin{document} 
    \title{...} 
    \renewcommand{\baselinestretch}{1.5} 
    \input{kap1} 
    \end{document}
    

    listings with roman numbers

    \newpage 
    \pagenumbering{roman} 
    \tableofcontents 
    \newpage 
    \listoffigures 
    \listoftables 
    \newpage 
    \pagenumbering{arabic}
    

    footnotes within tables

    \usepackage{setspace}
    \usepackage{threeparttable}
    \begin{table}
    \begin{threeparttable} 
    \begin{tabular}{|l|c|r|} 
    \hline 
    A & B & C \\
    1 & 2 & 3 \tnote{1} \\
    \end{tabular} 
    \begin{tablenotes}\footnotesize 
    \item[1] Prognose 2003 
    \end{tablenotes}
    \end{threeparttable}
    \end{table} 
    
    The command \tnote{...} "replace \footnote{...}"

    bibliography

    entry in .bib file
    @BOOK{zahl, 
    Year = {1996}, 
    Author = {name of the author}, 
    Title = {title of the book}, 
    publisher = {the name of publisher} 
    }
    
    \bibliography{name of the .bib file} 
    \bibliographystyle{style you use}
    
    1. pdflatex term-paper.tex
    2. pdflatex term-paper.tex
    3. bibtex term-paper important no ending
    4. pdflatex term-paper.tex
    5. pdflatex term-paper.tex
    6. acroread term-paper.pdf

    beamer class

    \documentclass{beamer} 
    \usepackage{beamerthemesplit} 
    \begin{document} 
    \frame{...}
    \frame{\frametitle{Example for beamer class}
    ...
    ....}
    \end{document}
    
    1. Xemacs beamertest.tex
    2. pdflatex beamertest.tex
    3. acroread beamertest.tex
    4. Strg l
    5. Esc

    commands for beamer

    \pause insert an interruption in frames.
    blocks
    The standard block has as color blue.
    \begin{block}{Titel} 
    \end{block}
    
    Example block has as standard color green
    \begin{exampleblock}{Titel} 
    \end{exampleblock}
    
    With using \usepackage{beamerthemeshadow} you will get a nice border.
    Back to short documentation 2   Back to overview   Forward to additional examples

    Sascha Frank
    Last modified: Thu May 25 17:00:19 MEST 2006