51 lines
1.2 KiB
TeX
51 lines
1.2 KiB
TeX
% master: linux.tex
|
|
% linux.tex v0.30
|
|
% 2022-05-09 (Rx)
|
|
|
|
\NeedsTeXFormat{LaTeX2e}
|
|
\documentclass[10pt,a4paper,titlepage]{scrbook} % das Papierformat zuerst
|
|
|
|
\RedeclareSectionCommand[%
|
|
tocnumwidth=3em,]{section}
|
|
\RedeclareSectionCommand[%
|
|
tocnumwidth=4em,]{subsection}
|
|
|
|
\usepackage[T1]{fontenc}
|
|
%\usepackage{ucs}
|
|
\usepackage[utf8x]{inputenc}
|
|
\usepackage{imakeidx} % Stichwortverzeichnis
|
|
\makeindex[title=Stichwortverzeichnis,columns=3] % Stichwortverzeichis
|
|
\usepackage[german]{babel}
|
|
\usepackage{datetime}
|
|
\usepackage[pdfborderstyle={/S/U/W 1}]{hyperref}
|
|
|
|
% Titelseite
|
|
%-----------
|
|
\title{linux v0.1.52}
|
|
\author{tresix69@freenet.de}
|
|
\newdateformat{myformat}{\THEDAY{. }\monthname[\THEMONTH] \THEYEAR}
|
|
\date{\myformat\today}
|
|
\publishers{betreut durch Thomas resiX}
|
|
|
|
\begin{document} % Dokumentanfang
|
|
|
|
% Verzeichnise
|
|
%-------------
|
|
\maketitle % Titelseite
|
|
|
|
% Seiten
|
|
%-------
|
|
\input{vorwort/vorwort}
|
|
\setuptoc{toc}{totoc}
|
|
%\renewcommand{\contentsname}{Inhalt}
|
|
\tableofcontents % Inhaltsverzeichnis
|
|
\input{linux/linux}
|
|
\input{programme/programme}
|
|
\input{netzwerk/netzwerk}
|
|
\input{programmieren/programmieren}
|
|
\input{anhang/anhang}
|
|
\printindex % Stichwortverzeichnis
|
|
\addcontentsline{toc}{part}{Stichwortverzeichnis}
|
|
|
|
\end{document} % Dokumentende
|
|
|