summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/schule/Beispiele/bsp-beamer.tex
blob: 43571fbee0786811cc1d2976e3f851adf8bc2482 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
\documentclass{beamer}
\usepackage[
    fach=Informatik,
    typ={ohne},
    farbig,
    loesungen=folgend,
    module={
        Aufgaben,
    },
]{schule}

\begin{document}

\begin{frame}[fragile]{Beamer Example}
    \begin{aufgabe}
        $2+2=$
    \end{aufgabe}
    \begin{loesung}
        4
    \end{loesung}

\begin{lstlisting}[language=bash]
  echo $loesung >> newfile.txt
\end{lstlisting}
\end{frame}

\end{document}