blob: 3b024a97ed658705f6ba414cf1efa3a81a4d140c (
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
%%
%% Der LaTeX-Begleiter, zweite Auflage (September 2005)
%%
%% Beispiel 4-4-13 von Seite 240.
%%
%% Copyright (C) 2005 Frank Mittelbach, Michel Goossens,
%% Johannes Braams, David Carlisle, and Chris Rowley
%%
%% Uebersetzung: Copyright (C) 2005 Claudia Krysztofiak,
%% Rebecca Stiels und Frank Mittelbach
%%
%% 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.
%%
\documentclass{lb2exa}
\pagestyle{empty}
\setcounter{page}{6}
\setlength\textwidth{89.66322pt}
\setlength\textheight{8\baselineskip}
% für die Buchbeispiele wird der vertikale Abstand verringert
\addtolength\headsep{-12pt} % für das Buch verkürzt
\addtolength\footskip{-12pt} % für das Buch verkürzt
\raggedright % da diese Beispiele so kurz sind
% Babel hat einen Fehler den wir hier korrigieren müssen, solange er
% nicht in der Babel-Distribution verbessert ist (was bald der Fall
% sein sollte):
\makeatletter
\def\markboth #1#2{%
\toks@ {\noexpand\protect \noexpand\bbl@restore@actives #1}%
\toks 8{\noexpand\protect \noexpand\bbl@restore@actives #2}%
\edef \bbl@tempa {\noexpand \org@markboth
{\noexpand \foreignlanguage {\languagename }{\the \toks@ }}%
{\noexpand \foreignlanguage {\languagename }{\the \toks 8}}}%
\bbl@tempa
}
\def\markright #1{%
\toks@ {\noexpand\protect \noexpand\bbl@restore@actives #1}%
\edef \bbl@tempa {\noexpand \org@markright
{\noexpand \foreignlanguage {\languagename }{\the \toks@ }}}%
\bbl@tempa
}
\makeatother
\StartShownPreambleCommands
\usepackage{ifthen,fancyhdr,extramarks}
\pagestyle{fancy} \fancyhf{}
\newcommand\combinemarks{\ifthenelse
{\equal{\firstrightmark}%
{\lastrightmark}}%
{\firstrightmark}% gleiche Werte
{\firstrightmark---\lastrightmark}}
\chead{\combinemarks} \cfoot{\thepage}
\newcommand\idxitem[1]{\par\vspace{8pt}%
\textbf{#1}\markright{#1}%
\quad\ignorespaces}
\StopShownPreambleCommands
\begin{document}
\idxitem{Fahne} Formatierter Text,
nicht in Seiten aufgeteilt.
\idxitem{Kolumne} Textspalte.
\idxitem{Marke} Steht in der Fahne,
um mit der OR zu kommunizieren.
\idxitem{OR} Output-Routine.
\end{document}
|