Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132930 views
License: OTHER
1
\documentclass[a4paper]{scrartcl}
2
\usepackage{blindtext}
3
4
\newcounter{examplecounter}
5
\renewcommand{\theexamplecounter}{\arabic{examplecounter}}
6
\newenvironment{Beispiel}[1][]{%
7
\goodbreak%
8
\refstepcounter{examplecounter}%
9
\begin{list}{}{\setlength{\rightmargin}{\leftmargin}}%
10
\item[{\textbf{Beispiel~\theexamplecounter:}}]#1\par\nobreak}{%
11
\end{list}}
12
13
\begin{document}
14
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla quam
15
elit, vestibulum nec facilisis at, condimentum id enim. Sed iaculis
16
lacinia quam, vel accumsan eros tempor in. Integer ipsum metus,
17
accumsan sit amet commodo a, egestas vitae sem. Mauris ut orci ut
18
dolor viverra convallis nec a erat. Aenean consequat elit vel eros
19
fermentum vestibulum id at ipsum. In vitae orci mauris, et rhoncus
20
odio. Pellentesque habitant morbi tristique senectus et netus et
21
malesuada fames ac turpis egestas.
22
23
\blindtext[4]
24
25
\begin{Beispiel}[A title]
26
\begin{tabular}{ccc}
27
1 & 2 & 3\\
28
4 & 5 & 6\\
29
7 & 8 & 9
30
\end{tabular}
31
\end{Beispiel}
32
\end{document}
33
34