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
|
\documentclass{book}
\usepackage{alltt}
\usepackage{fancyvrb}
\usepackage{fancyhdr}
\usepackage{rotating}
\usepackage{color}
\usepackage{url}
\usepackage{graphics}
\usepackage{epsfig}
\DeclareGraphicsRule{.gif}{eps}{.gif.bb}{`convert gif:#1 'eps:-' }
\raggedbottom
\parindent=0pt
\parskip=4pt
\input{definitions.tex}
%---------------------------------------------------
\hoffset=-.3truein
\voffset=.3truein
% \setlength{\topmargin}{-0.95cm}
\setlength{\textheight}{8.5in}
\setlength{\textwidth}{6.3truein}
% \setlength{\evensidemargin}{-1cm}
% \setlength{\oddsidemargin}{-1cm}
\setlength{\headwidth}{6.4truein}
% \setlength{\footwidth}{6.0truein}
%---------------------------------------------------
%---------------------------------------------------
% \pagestyle{fancy}
%---------------------------------------------------
% \renewcommand{\chaptermark}[1]{\markboth {#1}{}}
% \renewcommand{\sectionmark}[1]{\markright{\thesection\ #1}}
% \renewcommand{\sectionmark}[1]{\markright{#1}}
% \fancyhead[LO]{\bfseries\rightmark}
% \fancyhead[RE]{\bfseries\leftmark}
\renewcommand{\headrulewidth}{0.5pt}
\renewcommand{\footrulewidth}{0pt}
\addtolength{\headheight}{0.5pt}
\fancypagestyle{plain}{
\fancyhead{}
\renewcommand{\headrulewidth}{0pt}}
\fancyhf{}
% \fancyhead[le,ro]{\slshape \rightmark}
\fancyhead[LE]{\slshape \leftmark}
\fancyhead[ro]{\slshape \rightmark}
\fancyfoot[LE,RO]{\bfseries\thepage}
\fancyfoot[lo,re]{\tiny Copyright \copyright\ 2000 Fortuitous Technologies, Inc.}
\begin{document}
\large
\title{Linux Fundamentals\\ \normalsize Een studiehandleiding}
\author{Philip Carinhas, Ph.D. \\
Fortuitous Technologies \\
www.fortuitous.com \\
pac@fortuitous.com
}
\date{Versie \today}
\maketitle
\setlength{\evensidemargin}{-4pt}
\pagestyle{empty}
\input{copyright.tex}
{
\parskip=0pt
\setcounter{tocdepth}{1}
\thispagestyle{empty}
\tableofcontents
\thispagestyle{empty}
}
\newpage
% \addtolength{\textwidth}{.5truein}
\pagestyle{fancy}
\input{introduction.tex}
\input{commandline.tex}
\input{environment.tex}
\input{filesystem.tex}
\input{process.tex}
\input{text-tools.tex}
\input{scripting.tex}
\input{X-Windows.tex}
\input{tcpip.tex}
\input{software.tex}
\input{bibliography.tex}
\input{glossary.tex}
\end{document}
|