blob: b910f5a1455da6225772a2160b1e90e4b11f193c (
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
|
\documentclass{book}
\usepackage{html}
\usepackage{fancyhdr}
\usepackage{graphicx}
\usepackage{makeidx}
\input{macros}
\makeindex
\begin{document}
\pagenumbering{roman}
\input{cover}
\tableofcontents
\newpage
\pagenumbering{arabic}
\pagestyle{fancy}
\fancyhead[RE]{\slshape \rightmark}
\fancyhead[LO]{\slshape \leftmark}
\fancyhead[RO,LE]{\empty}
\fancyfoot[C]{\thepage}
\input{intro}
\input{library}
\input{tlsintro}
\input{auth}
\input{certificate}
\input{howto}
\input{examples}
\input{programs}
\input{funcs}
\appendix
\input{appendix}
\input{fdl}
\printindex
\end{document}
|