Added build for example 1
This commit is contained in:
		
							parent
							
								
									b3d8e56d44
								
							
						
					
					
						commit
						123accdbcc
					
				@ -1,104 +1,104 @@
 | 
			
		||||
 | 
			
		||||
\documentclass[12pt,reqno]{book}      % Sets 12pt font, equation numbers on right
 | 
			
		||||
\usepackage{amsmath,amssymb,amsfonts} % Typical maths resource packages
 | 
			
		||||
\usepackage{graphics}                 % Packages to allow inclusion of graphics
 | 
			
		||||
\usepackage{color}                    % For creating coloured text and background
 | 
			
		||||
 | 
			
		||||
\usepackage[colorlinks,citecolor=blue,linkcolor=blue]{hyperref}                 % For creating hyperlinks in cross references. It should be after the color package. The option colorlinks produces colored entries without boxes. The option citecolor=blue changes the default green citations to blue.
 | 
			
		||||
 | 
			
		||||
\DeclareGraphicsExtensions{.pdf}
 | 
			
		||||
\parindent 1cm
 | 
			
		||||
\parskip 0.2cm
 | 
			
		||||
\topmargin 0.2cm
 | 
			
		||||
\oddsidemargin 1cm
 | 
			
		||||
\evensidemargin 0.5cm
 | 
			
		||||
\textwidth 15cm
 | 
			
		||||
\textheight 21cm
 | 
			
		||||
\newtheorem{theorem}{Theorem}[section]
 | 
			
		||||
\newtheorem{proposition}[theorem]{Proposition}
 | 
			
		||||
\newtheorem{corollary}[theorem]{Corollary}
 | 
			
		||||
\newtheorem{lemma}[theorem]{Lemma}
 | 
			
		||||
\newtheorem{remark}[theorem]{Remark}
 | 
			
		||||
\newtheorem{definition}[theorem]{Definition}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
\def\R{\mathbb{ R}}
 | 
			
		||||
\def\S{\mathbb{ S}}
 | 
			
		||||
\def\I{\mathbb{ I}}
 | 
			
		||||
\makeindex
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
\title{A \LaTeX \ Book Skeleton  }
 | 
			
		||||
 | 
			
		||||
\author{\htmladdnormallink           % Puts a hyperlink on to the author's name
 | 
			
		||||
{CTJ Dodson}{http://www.maths.manchester.ac.uk/~kd/homepage/}
 | 
			
		||||
{\small\em \copyright 2015 }}
 | 
			
		||||
 | 
			
		||||
 \date{ }
 | 
			
		||||
     \usepackage{draftwatermark}                   %%%   These four lines
 | 
			
		||||
       \SetWatermarkText{Draft not for circulation}   %%%   put a watermark
 | 
			
		||||
        \SetWatermarkScale{3}                          %%%  on all pages. Just omit them if 
 | 
			
		||||
         \SetWatermarkColor[rgb]{0.9,0,0}               %%%  it is not needed.
 | 
			
		||||
\begin{document}
 | 
			
		||||
\maketitle
 | 
			
		||||
 \addcontentsline{toc}{chapter}{Contents}
 | 
			
		||||
\pagenumbering{roman}
 | 
			
		||||
\tableofcontents
 | 
			
		||||
\listoffigures
 | 
			
		||||
\listoftables
 | 
			
		||||
\chapter*{Preface}\normalsize
 | 
			
		||||
  \addcontentsline{toc}{chapter}{Preface}
 | 
			
		||||
\pagestyle{plain}
 | 
			
		||||
The book root file {\tt bookex.tex} gives a basic example of how to
 | 
			
		||||
use \LaTeX \ for preparation of a book. Note that all
 | 
			
		||||
\LaTeX \ commands begin with a
 | 
			
		||||
backslash.
 | 
			
		||||
 | 
			
		||||
Each
 | 
			
		||||
Chapter, Appendix and the Index is made as a {\tt *.tex} file and is
 | 
			
		||||
called in by the {\tt include} command---thus {\tt ch1.tex} is
 | 
			
		||||
the name here of the file containing Chapter~1. The inclusion of any
 | 
			
		||||
particular file can be suppressed by prefixing the line by a
 | 
			
		||||
percent sign.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 Do not put an {\tt end{document}} command at the end of chapter files;
 | 
			
		||||
just one such command is needed at the end of the book.
 | 
			
		||||
 | 
			
		||||
Note the tag used to make an index entry. You may need to consult eg Lamport's
 | 
			
		||||
book~\cite{lamport} % Gives link to reference
 | 
			
		||||
for details of the procedure to make the index input
 | 
			
		||||
file; \LaTeX \ will create a pre-index by listing all the tagged
 | 
			
		||||
items in the file {\tt bookex.idx} then you edit this into
 | 
			
		||||
a {\tt theindex} environment, as {\tt index.tex}.
 | 
			
		||||
 | 
			
		||||
In the source file {\tt bookex.tex} the line:\\
 | 
			
		||||
{\tt usepackage[colorlinks,citecolor=blue,linkcolor=blue]{hyperref} } \\
 | 
			
		||||
includes hyperlinks and chooses colours for them.\\
 | 
			
		||||
Also, the following lines just before 
 | 
			
		||||
{\tt begin\{document\}}
 | 
			
		||||
will put a watermark on every page:
 | 
			
		||||
\begin{verbatim}
 | 
			
		||||
  usepackage{draftwatermark}                 %%%   These four lines
 | 
			
		||||
  SetWatermarkText{Draft not for circulation}%%%  put a watermark on all
 | 
			
		||||
  SetWatermarkScale{3}                       %%%  pages. Omit them if
 | 
			
		||||
  SetWatermarkColor[rgb]{0.9,0,0}            %%%  it is not needed.
 | 
			
		||||
\end{verbatim}         
 | 
			
		||||
Just comment them out with \% if you do not want a watermark. 
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
\pagestyle{headings}
 | 
			
		||||
\pagenumbering{arabic}
 | 
			
		||||
 | 
			
		||||
\include{ch1}
 | 
			
		||||
\include{ch2}
 | 
			
		||||
 | 
			
		||||
\begin{thebibliography}{99}
 | 
			
		||||
  \addcontentsline{toc}{chapter}{Bibliography}
 | 
			
		||||
\bibitem{lamport} L. Lamport. {\bf \LaTeX \ A Document Preparation System}
 | 
			
		||||
Addison-Wesley, California 1986.
 | 
			
		||||
\end{thebibliography}
 | 
			
		||||
 | 
			
		||||
\include{index}
 | 
			
		||||
 \addcontentsline{toc}{chapter}{Index}
 | 
			
		||||
\end{document}
 | 
			
		||||
 | 
			
		||||
\documentclass[12pt,reqno]{book}      % Sets 12pt font, equation numbers on right
 | 
			
		||||
\usepackage{amsmath,amssymb,amsfonts} % Typical maths resource packages
 | 
			
		||||
\usepackage{graphics}                 % Packages to allow inclusion of graphics
 | 
			
		||||
\usepackage{color}                    % For creating coloured text and background
 | 
			
		||||
 | 
			
		||||
\usepackage[colorlinks,citecolor=blue,linkcolor=blue]{hyperref}                 % For creating hyperlinks in cross references. It should be after the color package. The option colorlinks produces colored entries without boxes. The option citecolor=blue changes the default green citations to blue.
 | 
			
		||||
 | 
			
		||||
\DeclareGraphicsExtensions{.pdf}
 | 
			
		||||
\parindent 1cm
 | 
			
		||||
\parskip 0.2cm
 | 
			
		||||
\topmargin 0.2cm
 | 
			
		||||
\oddsidemargin 1cm
 | 
			
		||||
\evensidemargin 0.5cm
 | 
			
		||||
\textwidth 15cm
 | 
			
		||||
\textheight 21cm
 | 
			
		||||
\newtheorem{theorem}{Theorem}[section]
 | 
			
		||||
\newtheorem{proposition}[theorem]{Proposition}
 | 
			
		||||
\newtheorem{corollary}[theorem]{Corollary}
 | 
			
		||||
\newtheorem{lemma}[theorem]{Lemma}
 | 
			
		||||
\newtheorem{remark}[theorem]{Remark}
 | 
			
		||||
\newtheorem{definition}[theorem]{Definition}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
\def\R{\mathbb{ R}}
 | 
			
		||||
\def\S{\mathbb{ S}}
 | 
			
		||||
\def\I{\mathbb{ I}}
 | 
			
		||||
\makeindex
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
\title{A \LaTeX \ Book Skeleton  }
 | 
			
		||||
 | 
			
		||||
\author{\htmladdnormallink           % Puts a hyperlink on to the author's name
 | 
			
		||||
{CTJ Dodson}{http://www.maths.manchester.ac.uk/~kd/homepage/}
 | 
			
		||||
{\small\em \copyright 2015 }}
 | 
			
		||||
 | 
			
		||||
 \date{ }
 | 
			
		||||
     \usepackage{draftwatermark}                   %%%   These four lines
 | 
			
		||||
       \SetWatermarkText{Draft not for circulation}   %%%   put a watermark
 | 
			
		||||
        \SetWatermarkScale{3}                          %%%  on all pages. Just omit them if 
 | 
			
		||||
         \SetWatermarkColor[rgb]{0.9,0,0}               %%%  it is not needed.
 | 
			
		||||
\begin{document}
 | 
			
		||||
\maketitle
 | 
			
		||||
 \addcontentsline{toc}{chapter}{Contents}
 | 
			
		||||
\pagenumbering{roman}
 | 
			
		||||
\tableofcontents
 | 
			
		||||
\listoffigures
 | 
			
		||||
\listoftables
 | 
			
		||||
\chapter*{Preface}\normalsize
 | 
			
		||||
  \addcontentsline{toc}{chapter}{Preface}
 | 
			
		||||
\pagestyle{plain}
 | 
			
		||||
The book root file {\tt bookex.tex} gives a basic example of how to
 | 
			
		||||
use \LaTeX \ for preparation of a book. Note that all
 | 
			
		||||
\LaTeX \ commands begin with a
 | 
			
		||||
backslash.
 | 
			
		||||
 | 
			
		||||
Each
 | 
			
		||||
Chapter, Appendix and the Index is made as a {\tt *.tex} file and is
 | 
			
		||||
called in by the {\tt include} command---thus {\tt ch1.tex} is
 | 
			
		||||
the name here of the file containing Chapter~1. The inclusion of any
 | 
			
		||||
particular file can be suppressed by prefixing the line by a
 | 
			
		||||
percent sign.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 Do not put an {\tt end{document}} command at the end of chapter files;
 | 
			
		||||
just one such command is needed at the end of the book.
 | 
			
		||||
 | 
			
		||||
Note the tag used to make an index entry. You may need to consult eg Lamport's
 | 
			
		||||
book~\cite{lamport} % Gives link to reference
 | 
			
		||||
for details of the procedure to make the index input
 | 
			
		||||
file; \LaTeX \ will create a pre-index by listing all the tagged
 | 
			
		||||
items in the file {\tt bookex.idx} then you edit this into
 | 
			
		||||
a {\tt theindex} environment, as {\tt index.tex}.
 | 
			
		||||
 | 
			
		||||
In the source file {\tt bookex.tex} the line:\\
 | 
			
		||||
{\tt usepackage[colorlinks,citecolor=blue,linkcolor=blue]{hyperref} } \\
 | 
			
		||||
includes hyperlinks and chooses colours for them.\\
 | 
			
		||||
Also, the following lines just before 
 | 
			
		||||
{\tt begin\{document\}}
 | 
			
		||||
will put a watermark on every page:
 | 
			
		||||
\begin{verbatim}
 | 
			
		||||
  usepackage{draftwatermark}                 %%%   These four lines
 | 
			
		||||
  SetWatermarkText{Draft not for circulation}%%%  put a watermark on all
 | 
			
		||||
  SetWatermarkScale{3}                       %%%  pages. Omit them if
 | 
			
		||||
  SetWatermarkColor[rgb]{0.9,0,0}            %%%  it is not needed.
 | 
			
		||||
\end{verbatim}         
 | 
			
		||||
Just comment them out with \% if you do not want a watermark. 
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
\pagestyle{headings}
 | 
			
		||||
\pagenumbering{arabic}
 | 
			
		||||
 | 
			
		||||
\include{ch1}
 | 
			
		||||
\include{ch2}
 | 
			
		||||
 | 
			
		||||
\begin{thebibliography}{99}
 | 
			
		||||
  \addcontentsline{toc}{chapter}{Bibliography}
 | 
			
		||||
\bibitem{lamport} L. Lamport. {\bf \LaTeX \ A Document Preparation System}
 | 
			
		||||
Addison-Wesley, California 1986.
 | 
			
		||||
\end{thebibliography}
 | 
			
		||||
 | 
			
		||||
\include{index}
 | 
			
		||||
 \addcontentsline{toc}{chapter}{Index}
 | 
			
		||||
\end{document}
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										26
									
								
								example001/build/bookex.aux
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										26
									
								
								example001/build/bookex.aux
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,26 @@
 | 
			
		||||
\relax 
 | 
			
		||||
\providecommand\hyper@newdestlabel[2]{}
 | 
			
		||||
\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument}
 | 
			
		||||
\HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined
 | 
			
		||||
\global\let\oldcontentsline\contentsline
 | 
			
		||||
\gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}}
 | 
			
		||||
\global\let\oldnewlabel\newlabel
 | 
			
		||||
\gdef\newlabel#1#2{\newlabelxx{#1}#2}
 | 
			
		||||
\gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}}
 | 
			
		||||
\AtEndDocument{\ifx\hyper@anchor\@undefined
 | 
			
		||||
\let\contentsline\oldcontentsline
 | 
			
		||||
\let\newlabel\oldnewlabel
 | 
			
		||||
\fi}
 | 
			
		||||
\fi}
 | 
			
		||||
\global\let\hyper@last\relax 
 | 
			
		||||
\gdef\HyperFirstAtBeginDocument#1{#1}
 | 
			
		||||
\providecommand\HyField@AuxAddToFields[1]{}
 | 
			
		||||
\providecommand\HyField@AuxAddToCoFields[2]{}
 | 
			
		||||
\@writefile{toc}{\contentsline {chapter}{Contents}{i}{Doc-Start}\protected@file@percent }
 | 
			
		||||
\citation{lamport}
 | 
			
		||||
\@writefile{toc}{\contentsline {chapter}{Preface}{1}{chapter*.4}\protected@file@percent }
 | 
			
		||||
\@input{ch1.aux}
 | 
			
		||||
\@input{ch2.aux}
 | 
			
		||||
\bibcite{lamport}{1}
 | 
			
		||||
\@writefile{toc}{\contentsline {chapter}{Bibliography}{3}{chapter*.5}\protected@file@percent }
 | 
			
		||||
\@input{index.aux}
 | 
			
		||||
							
								
								
									
										0
									
								
								example001/build/bookex.idx
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										0
									
								
								example001/build/bookex.idx
									
									
									
									
									
										Normal file
									
								
							
							
								
								
									
										0
									
								
								example001/build/bookex.lof
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										0
									
								
								example001/build/bookex.lof
									
									
									
									
									
										Normal file
									
								
							
							
								
								
									
										464
									
								
								example001/build/bookex.log
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										464
									
								
								example001/build/bookex.log
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,464 @@
 | 
			
		||||
This is pdfTeX, Version 3.14159265-2.6-1.40.20 (TeX Live 2019/Debian) (preloaded format=pdflatex 2021.7.3)  28 AUG 2021 14:53
 | 
			
		||||
entering extended mode
 | 
			
		||||
 restricted \write18 enabled.
 | 
			
		||||
 %&-line parsing enabled.
 | 
			
		||||
**bookex.tex
 | 
			
		||||
(./bookex.tex
 | 
			
		||||
LaTeX2e <2020-02-02> patch level 2
 | 
			
		||||
L3 programming layer <2020-02-14>
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/latex/base/book.cls
 | 
			
		||||
Document Class: book 2019/12/20 v1.4l Standard LaTeX document class
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/latex/base/bk12.clo
 | 
			
		||||
File: bk12.clo 2019/12/20 v1.4l Standard LaTeX file (size option)
 | 
			
		||||
)
 | 
			
		||||
\c@part=\count167
 | 
			
		||||
\c@chapter=\count168
 | 
			
		||||
\c@section=\count169
 | 
			
		||||
\c@subsection=\count170
 | 
			
		||||
\c@subsubsection=\count171
 | 
			
		||||
\c@paragraph=\count172
 | 
			
		||||
\c@subparagraph=\count173
 | 
			
		||||
\c@figure=\count174
 | 
			
		||||
\c@table=\count175
 | 
			
		||||
\abovecaptionskip=\skip47
 | 
			
		||||
\belowcaptionskip=\skip48
 | 
			
		||||
\bibindent=\dimen134
 | 
			
		||||
)
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty
 | 
			
		||||
Package: amsmath 2020/01/20 v2.17e AMS math features
 | 
			
		||||
\@mathmargin=\skip49
 | 
			
		||||
 | 
			
		||||
For additional information on amsmath, use the `?' option.
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amstext.sty
 | 
			
		||||
Package: amstext 2000/06/29 v2.01 AMS text
 | 
			
		||||
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsgen.sty
 | 
			
		||||
File: amsgen.sty 1999/11/30 v2.0 generic functions
 | 
			
		||||
\@emptytoks=\toks14
 | 
			
		||||
\ex@=\dimen135
 | 
			
		||||
))
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsbsy.sty
 | 
			
		||||
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
 | 
			
		||||
\pmbraise@=\dimen136
 | 
			
		||||
)
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsopn.sty
 | 
			
		||||
Package: amsopn 2016/03/08 v2.02 operator names
 | 
			
		||||
)
 | 
			
		||||
\inf@bad=\count176
 | 
			
		||||
LaTeX Info: Redefining \frac on input line 227.
 | 
			
		||||
\uproot@=\count177
 | 
			
		||||
\leftroot@=\count178
 | 
			
		||||
LaTeX Info: Redefining \overline on input line 389.
 | 
			
		||||
\classnum@=\count179
 | 
			
		||||
\DOTSCASE@=\count180
 | 
			
		||||
LaTeX Info: Redefining \ldots on input line 486.
 | 
			
		||||
LaTeX Info: Redefining \dots on input line 489.
 | 
			
		||||
LaTeX Info: Redefining \cdots on input line 610.
 | 
			
		||||
\Mathstrutbox@=\box45
 | 
			
		||||
\strutbox@=\box46
 | 
			
		||||
\big@size=\dimen137
 | 
			
		||||
LaTeX Font Info:    Redeclaring font encoding OML on input line 733.
 | 
			
		||||
LaTeX Font Info:    Redeclaring font encoding OMS on input line 734.
 | 
			
		||||
\macc@depth=\count181
 | 
			
		||||
\c@MaxMatrixCols=\count182
 | 
			
		||||
\dotsspace@=\muskip16
 | 
			
		||||
\c@parentequation=\count183
 | 
			
		||||
\dspbrk@lvl=\count184
 | 
			
		||||
\tag@help=\toks15
 | 
			
		||||
\row@=\count185
 | 
			
		||||
\column@=\count186
 | 
			
		||||
\maxfields@=\count187
 | 
			
		||||
\andhelp@=\toks16
 | 
			
		||||
\eqnshift@=\dimen138
 | 
			
		||||
\alignsep@=\dimen139
 | 
			
		||||
\tagshift@=\dimen140
 | 
			
		||||
\tagwidth@=\dimen141
 | 
			
		||||
\totwidth@=\dimen142
 | 
			
		||||
\lineht@=\dimen143
 | 
			
		||||
\@envbody=\toks17
 | 
			
		||||
\multlinegap=\skip50
 | 
			
		||||
\multlinetaggap=\skip51
 | 
			
		||||
\mathdisplay@stack=\toks18
 | 
			
		||||
LaTeX Info: Redefining \[ on input line 2859.
 | 
			
		||||
LaTeX Info: Redefining \] on input line 2860.
 | 
			
		||||
)
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amssymb.sty
 | 
			
		||||
Package: amssymb 2013/01/14 v3.01 AMS font symbols
 | 
			
		||||
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amsfonts.sty
 | 
			
		||||
Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
 | 
			
		||||
\symAMSa=\mathgroup4
 | 
			
		||||
\symAMSb=\mathgroup5
 | 
			
		||||
LaTeX Font Info:    Redeclaring math symbol \hbar on input line 98.
 | 
			
		||||
LaTeX Font Info:    Overwriting math alphabet `\mathfrak' in version `bold'
 | 
			
		||||
(Font)                  U/euf/m/n --> U/euf/b/n on input line 106.
 | 
			
		||||
))
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty
 | 
			
		||||
Package: graphics 2019/11/30 v1.4a Standard LaTeX Graphics (DPC,SPQR)
 | 
			
		||||
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty
 | 
			
		||||
Package: trig 2016/01/03 v1.10 sin cos tan (DPC)
 | 
			
		||||
)
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
 | 
			
		||||
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
 | 
			
		||||
)
 | 
			
		||||
Package graphics Info: Driver file: pdftex.def on input line 105.
 | 
			
		||||
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/latex/graphics-def/pdftex.def
 | 
			
		||||
File: pdftex.def 2018/01/08 v1.0l Graphics/color driver for pdftex
 | 
			
		||||
))
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/latex/graphics/color.sty
 | 
			
		||||
Package: color 2019/11/23 v1.2a Standard LaTeX Color (DPC)
 | 
			
		||||
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/color.cfg
 | 
			
		||||
File: color.cfg 2016/01/02 v1.6 sample color configuration
 | 
			
		||||
)
 | 
			
		||||
Package color Info: Driver file: pdftex.def on input line 147.
 | 
			
		||||
)
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty
 | 
			
		||||
Package: hyperref 2020/01/14 v7.00d Hypertext links for LaTeX
 | 
			
		||||
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
 | 
			
		||||
Package: ltxcmds 2019/12/15 v1.24 LaTeX kernel commands for general use (HO)
 | 
			
		||||
)
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty
 | 
			
		||||
Package: iftex 2019/11/07 v1.0c TeX engine tests
 | 
			
		||||
)
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/latex/pdftexcmds/pdftexcmds.sty
 | 
			
		||||
Package: pdftexcmds 2019/11/24 v0.31 Utility functions of pdfTeX for LuaTeX (HO
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty
 | 
			
		||||
Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO)
 | 
			
		||||
)
 | 
			
		||||
Package pdftexcmds Info: \pdf@primitive is available.
 | 
			
		||||
Package pdftexcmds Info: \pdf@ifprimitive is available.
 | 
			
		||||
Package pdftexcmds Info: \pdfdraftmode found.
 | 
			
		||||
)
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
 | 
			
		||||
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
 | 
			
		||||
\KV@toks@=\toks19
 | 
			
		||||
)
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty
 | 
			
		||||
Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO)
 | 
			
		||||
)
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
 | 
			
		||||
Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
 | 
			
		||||
)
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty
 | 
			
		||||
Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
 | 
			
		||||
)
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty
 | 
			
		||||
Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
 | 
			
		||||
)
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty
 | 
			
		||||
Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO)
 | 
			
		||||
)
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty
 | 
			
		||||
Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO)
 | 
			
		||||
)
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty
 | 
			
		||||
Package: kvoptions 2019/11/29 v3.13 Key value format for package options (HO)
 | 
			
		||||
)
 | 
			
		||||
\@linkdim=\dimen144
 | 
			
		||||
\Hy@linkcounter=\count188
 | 
			
		||||
\Hy@pagecounter=\count189
 | 
			
		||||
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def
 | 
			
		||||
File: pd1enc.def 2020/01/14 v7.00d Hyperref: PDFDocEncoding definition (HO)
 | 
			
		||||
Now handling font encoding PD1 ...
 | 
			
		||||
... no UTF-8 mapping file for font encoding PD1
 | 
			
		||||
)
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty
 | 
			
		||||
Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
 | 
			
		||||
)
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/generic/etexcmds/etexcmds.sty
 | 
			
		||||
Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO)
 | 
			
		||||
)
 | 
			
		||||
\Hy@SavedSpaceFactor=\count190
 | 
			
		||||
\pdfmajorversion=\count191
 | 
			
		||||
Package hyperref Info: Option `colorlinks' set `true' on input line 4421.
 | 
			
		||||
Package hyperref Info: Hyper figures OFF on input line 4547.
 | 
			
		||||
Package hyperref Info: Link nesting OFF on input line 4552.
 | 
			
		||||
Package hyperref Info: Hyper index ON on input line 4555.
 | 
			
		||||
Package hyperref Info: Plain pages OFF on input line 4562.
 | 
			
		||||
Package hyperref Info: Backreferencing OFF on input line 4567.
 | 
			
		||||
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
 | 
			
		||||
Package hyperref Info: Bookmarks ON on input line 4800.
 | 
			
		||||
\c@Hy@tempcnt=\count192
 | 
			
		||||
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/latex/url/url.sty
 | 
			
		||||
\Urlmuskip=\muskip17
 | 
			
		||||
Package: url 2013/09/16  ver 3.4  Verb mode for urls, etc.
 | 
			
		||||
)
 | 
			
		||||
LaTeX Info: Redefining \url on input line 5159.
 | 
			
		||||
\XeTeXLinkMargin=\dimen145
 | 
			
		||||
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty
 | 
			
		||||
Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
 | 
			
		||||
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
 | 
			
		||||
Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO
 | 
			
		||||
)
 | 
			
		||||
))
 | 
			
		||||
\Fld@menulength=\count193
 | 
			
		||||
\Field@Width=\dimen146
 | 
			
		||||
\Fld@charsize=\dimen147
 | 
			
		||||
Package hyperref Info: Hyper figures OFF on input line 6430.
 | 
			
		||||
Package hyperref Info: Link nesting OFF on input line 6435.
 | 
			
		||||
Package hyperref Info: Hyper index ON on input line 6438.
 | 
			
		||||
Package hyperref Info: backreferencing OFF on input line 6445.
 | 
			
		||||
Package hyperref Info: Link coloring ON on input line 6448.
 | 
			
		||||
Package hyperref Info: Link coloring with OCG OFF on input line 6455.
 | 
			
		||||
Package hyperref Info: PDF/A mode OFF on input line 6460.
 | 
			
		||||
LaTeX Info: Redefining \ref on input line 6500.
 | 
			
		||||
LaTeX Info: Redefining \pageref on input line 6504.
 | 
			
		||||
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/generic/atbegshi/atbegshi.sty
 | 
			
		||||
Package: atbegshi 2019/12/05 v1.19 At begin shipout hook (HO)
 | 
			
		||||
)
 | 
			
		||||
\Hy@abspage=\count194
 | 
			
		||||
\c@Item=\count195
 | 
			
		||||
\c@Hfootnote=\count196
 | 
			
		||||
)
 | 
			
		||||
Package hyperref Info: Driver (autodetected): hpdftex.
 | 
			
		||||
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hpdftex.def
 | 
			
		||||
File: hpdftex.def 2020/01/14 v7.00d Hyperref driver for pdfTeX
 | 
			
		||||
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/latex/atveryend/atveryend.sty
 | 
			
		||||
Package: atveryend 2019-12-11 v1.11 Hooks at the very end of document (HO)
 | 
			
		||||
Package atveryend Info: \enddocument detected (standard20110627).
 | 
			
		||||
)
 | 
			
		||||
\Fld@listcount=\count197
 | 
			
		||||
\c@bookmark@seq@number=\count198
 | 
			
		||||
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
 | 
			
		||||
Package: rerunfilecheck 2019/12/05 v1.9 Rerun checks for auxiliary files (HO)
 | 
			
		||||
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty
 | 
			
		||||
Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO)
 | 
			
		||||
)
 | 
			
		||||
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
 | 
			
		||||
86.
 | 
			
		||||
)
 | 
			
		||||
\Hy@SectionHShift=\skip52
 | 
			
		||||
)
 | 
			
		||||
\c@theorem=\count199
 | 
			
		||||
\@indexfile=\write3
 | 
			
		||||
\openout3 = `bookex.idx'.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
Writing index file bookex.idx
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/latex/draftwatermark/draftwatermark.sty
 | 
			
		||||
Package: draftwatermark 2015/02/19 1.2 Put a gray textual watermark on document
 | 
			
		||||
 pages
 | 
			
		||||
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/latex/everypage/everypage.sty
 | 
			
		||||
Package: everypage 2007/06/20 1.1 Hooks to run on every page
 | 
			
		||||
)
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty
 | 
			
		||||
Package: graphicx 2019/11/30 v1.2a Enhanced LaTeX Graphics (DPC,SPQR)
 | 
			
		||||
\Gin@req@height=\dimen148
 | 
			
		||||
\Gin@req@width=\dimen149
 | 
			
		||||
)
 | 
			
		||||
\sc@wm@hcenter=\skip53
 | 
			
		||||
\sc@wm@vcenter=\skip54
 | 
			
		||||
\sc@wm@fontsize=\skip55
 | 
			
		||||
)
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdfmode.def
 | 
			
		||||
File: l3backend-pdfmode.def 2020-02-03 L3 backend support: PDF mode
 | 
			
		||||
\l__kernel_color_stack_int=\count266
 | 
			
		||||
\l__pdf_internal_box=\box47
 | 
			
		||||
)
 | 
			
		||||
No file bookex.aux.
 | 
			
		||||
\openout1 = `bookex.aux'.
 | 
			
		||||
 | 
			
		||||
LaTeX Font Info:    Checking defaults for OML/cmm/m/it on input line 42.
 | 
			
		||||
LaTeX Font Info:    ... okay on input line 42.
 | 
			
		||||
LaTeX Font Info:    Checking defaults for OMS/cmsy/m/n on input line 42.
 | 
			
		||||
LaTeX Font Info:    ... okay on input line 42.
 | 
			
		||||
LaTeX Font Info:    Checking defaults for OT1/cmr/m/n on input line 42.
 | 
			
		||||
LaTeX Font Info:    ... okay on input line 42.
 | 
			
		||||
LaTeX Font Info:    Checking defaults for T1/cmr/m/n on input line 42.
 | 
			
		||||
LaTeX Font Info:    ... okay on input line 42.
 | 
			
		||||
LaTeX Font Info:    Checking defaults for TS1/cmr/m/n on input line 42.
 | 
			
		||||
LaTeX Font Info:    ... okay on input line 42.
 | 
			
		||||
LaTeX Font Info:    Checking defaults for OMX/cmex/m/n on input line 42.
 | 
			
		||||
LaTeX Font Info:    ... okay on input line 42.
 | 
			
		||||
LaTeX Font Info:    Checking defaults for U/cmr/m/n on input line 42.
 | 
			
		||||
LaTeX Font Info:    ... okay on input line 42.
 | 
			
		||||
LaTeX Font Info:    Checking defaults for PD1/pdf/m/n on input line 42.
 | 
			
		||||
LaTeX Font Info:    ... okay on input line 42.
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
 | 
			
		||||
[Loading MPS to PDF converter (version 2006.09.02).]
 | 
			
		||||
\scratchcounter=\count267
 | 
			
		||||
\scratchdimen=\dimen150
 | 
			
		||||
\scratchbox=\box48
 | 
			
		||||
\nofMPsegments=\count268
 | 
			
		||||
\nofMParguments=\count269
 | 
			
		||||
\everyMPshowfont=\toks20
 | 
			
		||||
\MPscratchCnt=\count270
 | 
			
		||||
\MPscratchDim=\dimen151
 | 
			
		||||
\MPnumerator=\count271
 | 
			
		||||
\makeMPintoPDFobject=\count272
 | 
			
		||||
\everyMPtoPDFconversion=\toks21
 | 
			
		||||
) (/usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
 | 
			
		||||
Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf
 | 
			
		||||
Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4
 | 
			
		||||
85.
 | 
			
		||||
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
 | 
			
		||||
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv
 | 
			
		||||
e
 | 
			
		||||
))
 | 
			
		||||
\AtBeginShipoutBox=\box49
 | 
			
		||||
Package hyperref Info: Link coloring ON on input line 42.
 | 
			
		||||
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty
 | 
			
		||||
Package: nameref 2019/09/16 v2.46 Cross-referencing by name of section
 | 
			
		||||
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty
 | 
			
		||||
Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO)
 | 
			
		||||
)
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty
 | 
			
		||||
Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO)
 | 
			
		||||
)
 | 
			
		||||
\c@section@level=\count273
 | 
			
		||||
)
 | 
			
		||||
LaTeX Info: Redefining \ref on input line 42.
 | 
			
		||||
LaTeX Info: Redefining \pageref on input line 42.
 | 
			
		||||
LaTeX Info: Redefining \nameref on input line 42.
 | 
			
		||||
\@outlinefile=\write4
 | 
			
		||||
\openout4 = `bookex.out'.
 | 
			
		||||
 | 
			
		||||
LaTeX Font Info:    Trying to load font information for U+msa on input line 44.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsa.fd
 | 
			
		||||
File: umsa.fd 2013/01/14 v3.01 AMS symbols A
 | 
			
		||||
)
 | 
			
		||||
LaTeX Font Info:    Trying to load font information for U+msb on input line 44.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsb.fd
 | 
			
		||||
File: umsb.fd 2013/01/14 v3.01 AMS symbols B
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
LaTeX Font Warning: Font shape `OT1/cmr/m/n' in size <142.26378> not available
 | 
			
		||||
(Font)              size <24.88> substituted on input line 44.
 | 
			
		||||
 | 
			
		||||
[1{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
]
 | 
			
		||||
\tf@toc=\write5
 | 
			
		||||
\openout5 = `bookex.toc'.
 | 
			
		||||
 | 
			
		||||
 [1
 | 
			
		||||
 | 
			
		||||
] [2
 | 
			
		||||
 | 
			
		||||
]
 | 
			
		||||
\tf@lof=\write6
 | 
			
		||||
\openout6 = `bookex.lof'.
 | 
			
		||||
 | 
			
		||||
 [3] [4
 | 
			
		||||
 | 
			
		||||
]
 | 
			
		||||
\tf@lot=\write7
 | 
			
		||||
\openout7 = `bookex.lot'.
 | 
			
		||||
 | 
			
		||||
 [5]
 | 
			
		||||
[6
 | 
			
		||||
 | 
			
		||||
]
 | 
			
		||||
 | 
			
		||||
LaTeX Warning: Citation `lamport' on page vii undefined on input line 69.
 | 
			
		||||
 | 
			
		||||
LaTeX Font Info:    Trying to load font information for OMS+cmtt on input line 
 | 
			
		||||
79.
 | 
			
		||||
LaTeX Font Info:    No file OMScmtt.fd. on input line 79.
 | 
			
		||||
 | 
			
		||||
LaTeX Font Warning: Font shape `OMS/cmtt/m/n' undefined
 | 
			
		||||
(Font)              using `OMS/cmsy/m/n' instead
 | 
			
		||||
(Font)              for symbol `textbraceleft' on input line 79.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
Overfull \hbox (17.80888pt too wide) in paragraph at lines 86--86
 | 
			
		||||
[]  \OT1/cmtt/m/n/12 SetWatermarkText{Draft not for circulation}%%%  put a wate
 | 
			
		||||
rmark on all[] 
 | 
			
		||||
 []
 | 
			
		||||
 | 
			
		||||
pdfTeX warning (ext4): destination with the same identifier (name{page.1}) has 
 | 
			
		||||
been already used, duplicate ignored
 | 
			
		||||
<to be read again> 
 | 
			
		||||
                   \relax 
 | 
			
		||||
l.93 \include{ch1}
 | 
			
		||||
                   [1]
 | 
			
		||||
\openout2 = `ch1.aux'.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
No file ch1.tex.
 | 
			
		||||
\openout2 = `ch2.aux'.
 | 
			
		||||
 | 
			
		||||
No file ch2.tex.
 | 
			
		||||
[2
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
] [3]
 | 
			
		||||
\openout2 = `index.aux'.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
No file index.tex.
 | 
			
		||||
Package atveryend Info: Empty hook `BeforeClearDocument' on input line 104.
 | 
			
		||||
Package atveryend Info: Empty hook `AfterLastShipout' on input line 104.
 | 
			
		||||
(build/bookex.aux (build/ch1.aux) (build/ch2.aux) (build/index.aux))
 | 
			
		||||
Package atveryend Info: Executing hook `AtVeryEndDocument' on input line 104.
 | 
			
		||||
Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 104.
 | 
			
		||||
Package rerunfilecheck Info: File `bookex.out' has not changed.
 | 
			
		||||
(rerunfilecheck)             Checksum: <no file>.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
LaTeX Font Warning: Size substitutions with differences
 | 
			
		||||
(Font)              up to 117.38377pt have occurred.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
LaTeX Font Warning: Some font shapes were not available, defaults substituted.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
LaTeX Warning: There were undefined references.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
LaTeX Warning: Label(s) may have changed. Rerun to get cross-references right.
 | 
			
		||||
 | 
			
		||||
Package atveryend Info: Empty hook `AtVeryVeryEnd' on input line 104.
 | 
			
		||||
 ) 
 | 
			
		||||
Here is how much of TeX's memory you used:
 | 
			
		||||
 6489 strings out of 483140
 | 
			
		||||
 95254 string characters out of 5965152
 | 
			
		||||
 347427 words of memory out of 5000000
 | 
			
		||||
 21369 multiletter control sequences out of 15000+600000
 | 
			
		||||
 543898 words of font info for 68 fonts, out of 8000000 for 9000
 | 
			
		||||
 36 hyphenation exceptions out of 8191
 | 
			
		||||
 34i,10n,31p,310b,369s stack positions out of 5000i,500n,10000p,200000b,80000s
 | 
			
		||||
 </home/kjodle/.texlive2019/texmf-var/fonts/pk/ljfour/jknappen/ec/tcti1095.60
 | 
			
		||||
0pk></usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx12.pfb></
 | 
			
		||||
usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx8.pfb></usr/sha
 | 
			
		||||
re/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr12.pfb></usr/share/texl
 | 
			
		||||
ive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr17.pfb></usr/share/texlive/tex
 | 
			
		||||
mf-dist/fonts/type1/public/amsfonts/cm/cmr8.pfb></usr/share/texlive/texmf-dist/
 | 
			
		||||
fonts/type1/public/amsfonts/cm/cmsl12.pfb></usr/share/texlive/texmf-dist/fonts/
 | 
			
		||||
type1/public/amsfonts/cm/cmsy10.pfb></usr/share/texlive/texmf-dist/fonts/type1/
 | 
			
		||||
public/amsfonts/cm/cmti10.pfb></usr/share/texlive/texmf-dist/fonts/type1/public
 | 
			
		||||
/amsfonts/cm/cmtt12.pfb>
 | 
			
		||||
Output written on build/bookex.pdf (10 pages, 95787 bytes).
 | 
			
		||||
PDF statistics:
 | 
			
		||||
 101 PDF objects out of 1000 (max. 8388607)
 | 
			
		||||
 78 compressed objects within 1 object stream
 | 
			
		||||
 16 named destinations out of 1000 (max. 500000)
 | 
			
		||||
 1 words of extra memory for PDF output out of 10000 (max. 10000000)
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										0
									
								
								example001/build/bookex.lot
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										0
									
								
								example001/build/bookex.lot
									
									
									
									
									
										Normal file
									
								
							
							
								
								
									
										3
									
								
								example001/build/bookex.out
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								example001/build/bookex.out
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,3 @@
 | 
			
		||||
\BOOKMARK [0][-]{Doc-Start}{Contents}{}% 1
 | 
			
		||||
\BOOKMARK [0][-]{chapter*.4}{Preface}{}% 2
 | 
			
		||||
\BOOKMARK [0][-]{chapter*.5}{Bibliography}{}% 3
 | 
			
		||||
							
								
								
									
										
											BIN
										
									
								
								example001/build/bookex.pdf
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								example001/build/bookex.pdf
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								example001/build/bookex.synctex.gz
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								example001/build/bookex.synctex.gz
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										3
									
								
								example001/build/bookex.toc
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								example001/build/bookex.toc
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,3 @@
 | 
			
		||||
\contentsline {chapter}{Contents}{i}{Doc-Start}%
 | 
			
		||||
\contentsline {chapter}{Preface}{1}{chapter*.4}%
 | 
			
		||||
\contentsline {chapter}{Bibliography}{3}{chapter*.5}%
 | 
			
		||||
							
								
								
									
										27
									
								
								example001/build/ch1.aux
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										27
									
								
								example001/build/ch1.aux
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,27 @@
 | 
			
		||||
\relax 
 | 
			
		||||
\providecommand\hyper@newdestlabel[2]{}
 | 
			
		||||
\@setckpt{ch1}{
 | 
			
		||||
\setcounter{page}{2}
 | 
			
		||||
\setcounter{equation}{0}
 | 
			
		||||
\setcounter{enumi}{0}
 | 
			
		||||
\setcounter{enumii}{0}
 | 
			
		||||
\setcounter{enumiii}{0}
 | 
			
		||||
\setcounter{enumiv}{0}
 | 
			
		||||
\setcounter{footnote}{0}
 | 
			
		||||
\setcounter{mpfootnote}{0}
 | 
			
		||||
\setcounter{part}{0}
 | 
			
		||||
\setcounter{chapter}{0}
 | 
			
		||||
\setcounter{section}{0}
 | 
			
		||||
\setcounter{subsection}{0}
 | 
			
		||||
\setcounter{subsubsection}{0}
 | 
			
		||||
\setcounter{paragraph}{0}
 | 
			
		||||
\setcounter{subparagraph}{0}
 | 
			
		||||
\setcounter{figure}{0}
 | 
			
		||||
\setcounter{table}{0}
 | 
			
		||||
\setcounter{parentequation}{0}
 | 
			
		||||
\setcounter{Item}{0}
 | 
			
		||||
\setcounter{Hfootnote}{0}
 | 
			
		||||
\setcounter{bookmark@seq@number}{2}
 | 
			
		||||
\setcounter{theorem}{0}
 | 
			
		||||
\setcounter{section@level}{0}
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										27
									
								
								example001/build/ch2.aux
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										27
									
								
								example001/build/ch2.aux
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,27 @@
 | 
			
		||||
\relax 
 | 
			
		||||
\providecommand\hyper@newdestlabel[2]{}
 | 
			
		||||
\@setckpt{ch2}{
 | 
			
		||||
\setcounter{page}{2}
 | 
			
		||||
\setcounter{equation}{0}
 | 
			
		||||
\setcounter{enumi}{0}
 | 
			
		||||
\setcounter{enumii}{0}
 | 
			
		||||
\setcounter{enumiii}{0}
 | 
			
		||||
\setcounter{enumiv}{0}
 | 
			
		||||
\setcounter{footnote}{0}
 | 
			
		||||
\setcounter{mpfootnote}{0}
 | 
			
		||||
\setcounter{part}{0}
 | 
			
		||||
\setcounter{chapter}{0}
 | 
			
		||||
\setcounter{section}{0}
 | 
			
		||||
\setcounter{subsection}{0}
 | 
			
		||||
\setcounter{subsubsection}{0}
 | 
			
		||||
\setcounter{paragraph}{0}
 | 
			
		||||
\setcounter{subparagraph}{0}
 | 
			
		||||
\setcounter{figure}{0}
 | 
			
		||||
\setcounter{table}{0}
 | 
			
		||||
\setcounter{parentequation}{0}
 | 
			
		||||
\setcounter{Item}{0}
 | 
			
		||||
\setcounter{Hfootnote}{0}
 | 
			
		||||
\setcounter{bookmark@seq@number}{2}
 | 
			
		||||
\setcounter{theorem}{0}
 | 
			
		||||
\setcounter{section@level}{0}
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										27
									
								
								example001/build/index.aux
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										27
									
								
								example001/build/index.aux
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,27 @@
 | 
			
		||||
\relax 
 | 
			
		||||
\providecommand\hyper@newdestlabel[2]{}
 | 
			
		||||
\@setckpt{index}{
 | 
			
		||||
\setcounter{page}{4}
 | 
			
		||||
\setcounter{equation}{0}
 | 
			
		||||
\setcounter{enumi}{0}
 | 
			
		||||
\setcounter{enumii}{0}
 | 
			
		||||
\setcounter{enumiii}{0}
 | 
			
		||||
\setcounter{enumiv}{1}
 | 
			
		||||
\setcounter{footnote}{0}
 | 
			
		||||
\setcounter{mpfootnote}{0}
 | 
			
		||||
\setcounter{part}{0}
 | 
			
		||||
\setcounter{chapter}{0}
 | 
			
		||||
\setcounter{section}{0}
 | 
			
		||||
\setcounter{subsection}{0}
 | 
			
		||||
\setcounter{subsubsection}{0}
 | 
			
		||||
\setcounter{paragraph}{0}
 | 
			
		||||
\setcounter{subparagraph}{0}
 | 
			
		||||
\setcounter{figure}{0}
 | 
			
		||||
\setcounter{table}{0}
 | 
			
		||||
\setcounter{parentequation}{0}
 | 
			
		||||
\setcounter{Item}{0}
 | 
			
		||||
\setcounter{Hfootnote}{0}
 | 
			
		||||
\setcounter{bookmark@seq@number}{3}
 | 
			
		||||
\setcounter{theorem}{0}
 | 
			
		||||
\setcounter{section@level}{0}
 | 
			
		||||
}
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user