summaryrefslogtreecommitdiffstats
path: root/doc/tex/armstyle.sty.in
blob: 906a56321224ecea65f53537152dcc48432ccc02 (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
%%
%% This style is derivated from the docbook one
%%
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{armstyle}[]

%% Just use the original package and pass the options
\RequirePackageWithOptions{db2latex}

% 2015-09-03 reed -- used with figure
\usepackage{float}

% For page layout
\usepackage{geometry}

% don't want date on the cover page
\let\@date\@empty

% get rid of "Chapter" on start of each chapter
\def\@makechapterhead#1{%
  \vspace*{50\p@}%
  {\parindent \z@ \raggedright \normalfont
    \ifnum \c@secnumdepth >\m@ne
      \if@mainmatter
        \Huge\bfseries\sffamily \thechapter\space\space\space\space%
      \fi
    \fi
    \interlinepenalty\@M
    \Huge \bfseries \sffamily #1\par\nobreak
    \vskip 40\p@
  }}

% for use of \titleformat
\usepackage{titlesec}

\titleformat*{\section}{\Large\bfseries\scshape\sffamily}
\titleformat*{\subsection}{\large\bfseries\sffamily}

% Contents font too ; note I don't know what last parts of this are for
\titleformat{\chapter}{\Huge\bfseries\sffamily}{\thechapter}{1em}{} \vspace{6pt}

% font for the Index headline also
\titleformat{\index}{\Huge\bfseries\sffamily}{Index}{1em}{} \vspace{6pt}

% following two lines for no indenting paragraphs and spacing between
\setlength\parskip{\medskipamount}
\setlength\parindent{0pt}

% fancy footers
\pagestyle{fancy}
\fancyfoot[ce,co]{\thepage}
\fancyfoot[le,ro]{@BIND9_VERSIONSHORT@}
\renewcommand{\headrulewidth}{0.4 pt}
\fancypagestyle{plain}{%
  \fancyhf{}%
  \fancyfoot[ce,co]{\thepage}%
  \fancyfoot[le,ro]{@BIND9_VERSIONSHORT@}
  \renewcommand{\headrulewidth}{0 pt}
}
\fancypagestyle{empty}{%
  \fancyhf{}%
  \renewcommand{\headrulewidth}{0 pt}
  \renewcommand{\footrulewidth}{0 pt}
}

% custom title and copyright pages
\def\maketitle{
  \thispagestyle{empty}
  \null\vfil
  \vskip 60pt
  \begin{center}%
    { %\LARGE
      \Huge
      \bfseries
      \DBKtitle \\
       \par
    }
    \vskip 3em%
    { %\large
      \Large
      \lineskip .75em%
      @BIND9_VERSIONSTRING@
      \par
    }
    \vfil\null
    % Not sure exactly how much to trim logo, but given that
    % this is a centered environment, we need not be too precise
    % so long as the image is centered in the input PDF, we
    % trim enough for it to fit on the page, and we do not trim
    % so much that we clip out part of the graphic itself.
    % This seems to work, anyway.
    \includegraphics[trim=400 150 400 0,clip,scale=2.5]{isc-logo.pdf}
  \end{center}\par
  \newpage
  \thispagestyle{empty}
  \vfill
  \DBKcopyright \\
  \vfill\null
  \begin{center}
    Internet Systems Consortium \\
    950 Charter Street \\
    Redwood City, California \\
    USA \\
    https://www.isc.org/
  \end{center}
  \vfil\null
}