blob: 096690553be15a32e543b0580f3d9aacd839c18b (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
%%
%% Ein Beispiel der DANTE-Edition
%%
%% 2. Auflage
%%
%% Beispiel 05-04-11 auf Seite 145.
%%
%% Copyright (C) 2016 Herbert Voss
%%
%% It may be distributed and/or modified under the conditions
%% of the LaTeX Project Public License, either version 1.3
%% of this license or (at your option) any later version.
%%
%% See http://www.latex-project.org/lppl.txt for details.
%%
%%
%% ====
% Show page(s) 1
%%
%%
\documentclass[]{exaarticle}
\pagestyle{empty}
\setlength\textwidth{193.16928pt}
\usepackage[textwidth=10cm]{geometry}\parindent=0pt
%StartShownPreambleCommands
\usepackage{fontspec}% Ein XeTeX Dokument
\usepackage[ngerman]{babel}
\renewenvironment{quote}
{\list{}{\leftmargin=2cm \rightmargin=\leftmargin}\item\relax}
{\endlist}
\newenvironment{Quote}% mit automatischen «...»
{\list{}{\leftmargin=3cm \rightmargin=0.5cm}\item[]«\ignorespaces}
{»\endlist}
%StopShownPreambleCommands
\begin{document}
Der Berliner Tagesspiegel berichtete am 16.\,August zum Thema Aufschwung.
\begin{quote}
Das Bruttoinlandsprodukt ist im Vergleich zum Vorquartal nur um 0,1 Prozent gestiegen.
Auch das Ergebnis für das erste Vierteljahr 2011 wurde nach unten korrigiert.
\end{quote}
Weiteres lässt sich in der Printausgabe nachlesen. In der Onlineausgabe
finden wir auch noch einen Bericht zum Problem des Euros
\begin{Quote}
Noch einmal am Anfang des Schulden"=Tohuwabohus zu stehen, wäre erlösend. Griechenland
wäre kein Euroland und die Kontrolle der Maastricht-Kriterien besser organisiert.
\end{Quote}
\end{document}
|