blob: a9f66ef7fdefb39789fd407a324310d783f7f484 (
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
72
|
%
%
%% LaTeX - sty - File für DinA4 - Format
%% Anpassung, entsprechend dem Vorschlag
%% von H. Kopka
%% Realisation von F.Cremer 6.11.91
%
% Letzte Aenderung:
%
% 7.1.93 Anpassung fuer Querausdruck
% Einfuehrung der Hilfsvarable ``help@length''
% zum Tausch von ``textwidth'' mit ``textheigth''
% Neueinfuehrung der Befehls: ``\quer'', der obige Variabeln
% tauscht.
%
\message{DIN A4 Anpassung nach H.Kopka durch Fritz Cremer 6.11.91}
\newlength{\aiv@width} \setlength{\aiv@width}{210mm}
\newlength{\tmp@width} \setlength{\tmp@width}{\aiv@width}
\if@twocolumn
\textwidth175mm
\marginparsep2.5mm
\else
\ifcase \@ptsize\relax
\textwidth145mm \or
\textwidth154mm \or
\textwidth164mm
\fi
\marginparsep4mm
\fi
\addtolength{\tmp@width}{-\textwidth}
\ifcase \@ptsize\relax
\textheight 58\baselineskip \or
\textheight 51\baselineskip \or
\textheight 48\baselineskip
\fi
\addtolength{\textheight}{\topskip}
\if@twoside
\if@twocolumn
\setlength{\oddsidemargin}{0.6\tmp@width}
\setlength{\evensidemargin}{0.4\tmp@width}
\else
\setlength{\oddsidemargin}{0.4\tmp@width}
\setlength{\evensidemargin}{0.6\tmp@width}
\fi
\else
\setlength{\oddsidemargin}{0.5\tmp@width}
\setlength{\evensidemargin}{\oddsidemargin}
\fi
\setlength{\marginparwidth}{\evensidemargin}
\addtolength{\marginparwidth}{-\marginparsep}
\addtolength{\marginparwidth}{-6mm}
\addtolength{\oddsidemargin}{-1in}
\addtolength{\evensidemargin}{-1in}
\topmargin-17.9mm
\columnsep5mm
\parskip0pt plus 2pt
%
% Anpassung fuer Querformat
% F. Cremer 7.1.93
%
\newlength{\help@length}
\newcommand{\quer}{
\setlength{\help@length}{\textwidth}
\setlength{\textwidth}{\textheight}
\setlength{\textheight}{\help@length}}
|