37 lines
668 B
TeX
37 lines
668 B
TeX
\documentclass{zlbook}
|
|
\usepackage{minitoc}
|
|
%\usepackage[toc,page]{appendix}
|
|
%\usepackage{mtcoff}
|
|
\title{Delphi Parser Generator \\ user's guide}
|
|
\begin{document}
|
|
\dominitoc
|
|
\dominilof
|
|
\dominilot
|
|
|
|
\pagestyle{empty}
|
|
\renewcommand{\thepage}{\roman{page}}
|
|
\maketitle
|
|
|
|
\tableofcontents
|
|
%\listoftables
|
|
\renewcommand{\thepage}{\thechapter\ - \arabic{page}}
|
|
\clearpage
|
|
\pagestyle{fancy}
|
|
|
|
\input{src/intro/intro}
|
|
\input{src/start/start}
|
|
\input{src/lang/lang}
|
|
\input{src/gram/gram}
|
|
\input{src/tokens/tokens}
|
|
\input{src/rt/rt}
|
|
|
|
|
|
\appendix
|
|
\renewcommand{\thepage}{\Alph{chapter} - \arabic{page}}
|
|
|
|
%\begin{appendices}
|
|
\input{src/app/app-grammar}
|
|
%\end{appendices}
|
|
|
|
\end{document}
|