├── TeX_files ├── chapter01.tex ├── chapter02.tex ├── chapter01.aux └── chapter02.aux ├── main.toc ├── main.pdf ├── main.synctex.gz ├── main.aux ├── main.tex └── main.log /TeX_files/chapter01.tex: -------------------------------------------------------------------------------- 1 | \chapter{The First Chapter} -------------------------------------------------------------------------------- /TeX_files/chapter02.tex: -------------------------------------------------------------------------------- 1 | \chapter{The Second Chapter} -------------------------------------------------------------------------------- /main.toc: -------------------------------------------------------------------------------- 1 | \contentsline {chapter}{\numberline {1}Short title}{1} 2 | -------------------------------------------------------------------------------- /main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyme5/tex-template-chapter-v0/master/main.pdf -------------------------------------------------------------------------------- /main.synctex.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyme5/tex-template-chapter-v0/master/main.synctex.gz -------------------------------------------------------------------------------- /main.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \providecommand \oddpage@label [2]{} 3 | \@writefile{toc}{\contentsline {chapter}{\numberline {1}Short title}{1}} 4 | \@writefile{lof}{\addvspace {10\p@ }} 5 | \@writefile{lot}{\addvspace {10\p@ }} 6 | -------------------------------------------------------------------------------- /TeX_files/chapter01.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \@writefile{toc}{\contentsline {chapter}{\numberline {1}The First Chapter}{1}} 3 | \@writefile{lof}{\addvspace {10\p@ }} 4 | \@writefile{lot}{\addvspace {10\p@ }} 5 | \@setckpt{./TeX_files/chapter01}{ 6 | \setcounter{page}{2} 7 | \setcounter{equation}{0} 8 | \setcounter{enumi}{0} 9 | \setcounter{enumii}{0} 10 | \setcounter{enumiii}{0} 11 | \setcounter{enumiv}{0} 12 | \setcounter{footnote}{0} 13 | \setcounter{mpfootnote}{0} 14 | \setcounter{part}{0} 15 | \setcounter{chapter}{1} 16 | \setcounter{section}{0} 17 | \setcounter{subsection}{0} 18 | \setcounter{subsubsection}{0} 19 | \setcounter{paragraph}{0} 20 | \setcounter{subparagraph}{0} 21 | \setcounter{figure}{0} 22 | \setcounter{table}{0} 23 | } 24 | -------------------------------------------------------------------------------- /TeX_files/chapter02.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \@writefile{toc}{\contentsline {chapter}{\numberline {2}The Second Chapter}{3}} 3 | \@writefile{lof}{\addvspace {10\p@ }} 4 | \@writefile{lot}{\addvspace {10\p@ }} 5 | \@setckpt{./TeX_files/chapter02}{ 6 | \setcounter{page}{4} 7 | \setcounter{equation}{0} 8 | \setcounter{enumi}{0} 9 | \setcounter{enumii}{0} 10 | \setcounter{enumiii}{0} 11 | \setcounter{enumiv}{0} 12 | \setcounter{footnote}{0} 13 | \setcounter{mpfootnote}{0} 14 | \setcounter{part}{0} 15 | \setcounter{chapter}{2} 16 | \setcounter{section}{0} 17 | \setcounter{subsection}{0} 18 | \setcounter{subsubsection}{0} 19 | \setcounter{paragraph}{0} 20 | \setcounter{subparagraph}{0} 21 | \setcounter{figure}{0} 22 | \setcounter{table}{0} 23 | } 24 | -------------------------------------------------------------------------------- /main.tex: -------------------------------------------------------------------------------- 1 | \documentclass[a4paper,12pt]{book} 2 | \usepackage[utf8]{inputenc} 3 | \usepackage{graphicx} 4 | 5 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 6 | % title format for chapter 7 | % 8 | \usepackage{tikzpagenodes} 9 | \usepackage[explicit]{titlesec} 10 | \usepackage{xcolor} 11 | \usepackage{microtype} 12 | \definecolor{blueBack}{RGB}{0,82,155} 13 | 14 | % For Chapters 15 | %\titleformat{command} 16 | %[shape] 17 | %{format} 18 | %{label} 19 | %{sep} 20 | %{before-code} 21 | %[after-code] 22 | 23 | \titleformat{\chapter} 24 | [display] %shape 25 | {} %format 26 | {}{0cm} %sep 27 | { %before 28 | \begin{tikzpicture}[background rectangle/.style={fill=olive!45} remember picture,overlay] 29 | \node[shape=rectangle, fill=gray!20, minimum height=12cm, minimum width=1.0\paperwidth] at (7.61, 5.5cm) {}; 30 | \node[shape=rectangle, minimum height=4cm, minimum width=4cm, absolute] 31 | at (1.54, 3.54) { 32 | \rotatebox[origin=c]{90}{% 33 | \normalfont\color{black}\Large% 34 | \textls[180]{\textsc{\fontsize{16}{20}\selectfont\chaptertitlename}}% 35 | }\hspace{0pt} 36 | {\setlength\fboxsep{0pt}% 37 | \colorbox{blueBack}{ 38 | \parbox[c][3.5cm][c]{3.5cm}{% 39 | \centering\color{white}{\Huge \thechapter}}% 40 | }} 41 | }; 42 | \node[shape=rectangle, minimum height=4cm, minimum width=11cm, text width=11cm, align=right, font=\huge] 43 | at (10, 3.54) { 44 | \textbf{#1} 45 | }; 46 | \end{tikzpicture} 47 | } 48 | [\enlargethispage{-\parskip}\vspace{1cm}] 49 | 50 | \titleformat{name=\chapter,numberless} 51 | [display] %shape 52 | {} %format 53 | {}{0cm} %sep 54 | { %before 55 | \begin{tikzpicture}[background rectangle/.style={fill=olive!45} remember picture,overlay] 56 | \node[shape=rectangle, fill=gray!20, minimum height=12cm, minimum width=1.0\paperwidth] at (7.61, 5.5cm) {}; 57 | \node[shape=rectangle, minimum height=4cm, minimum width=11cm, text width=11cm, align=right, font=\huge] 58 | at (10, 3.54) { 59 | \textbf{#1} 60 | }; 61 | \end{tikzpicture} 62 | } 63 | [\enlargethispage{-\parskip}\vspace{1cm}] 64 | 65 | \begin{document} 66 | 67 | \author{TeXstudio Team} 68 | \title{Simple Book Example} 69 | \date{January 2013} 70 | 71 | \frontmatter 72 | \maketitle 73 | \tableofcontents 74 | 75 | \mainmatter 76 | \chapter[Short title]{This is a demonstration text for showing how line breaking works.} 77 | 78 | \backmatter 79 | % bibliography, glossary and index would go here. 80 | 81 | \end{document} -------------------------------------------------------------------------------- /main.log: -------------------------------------------------------------------------------- 1 | This is pdfTeX, Version 3.14159265-2.6-1.40.19 (MiKTeX 2.9.6745 64-bit) (preloaded format=pdflatex 2018.7.21) 25 AUG 2018 22:44 2 | entering extended mode 3 | **./main.tex 4 | (main.tex 5 | LaTeX2e <2018-04-01> patch level 5 6 | ("D:\Latex\MiKTeX 2.9\tex\latex\base\book.cls" 7 | Document Class: book 2014/09/29 v1.4h Standard LaTeX document class 8 | ("D:\Latex\MiKTeX 2.9\tex\latex\base\bk12.clo" 9 | File: bk12.clo 2014/09/29 v1.4h Standard LaTeX file (size option) 10 | ) 11 | \c@part=\count80 12 | \c@chapter=\count81 13 | \c@section=\count82 14 | \c@subsection=\count83 15 | \c@subsubsection=\count84 16 | \c@paragraph=\count85 17 | \c@subparagraph=\count86 18 | \c@figure=\count87 19 | \c@table=\count88 20 | \abovecaptionskip=\skip41 21 | \belowcaptionskip=\skip42 22 | \bibindent=\dimen102 23 | ) 24 | ("D:\Latex\MiKTeX 2.9\tex\latex\base\inputenc.sty" 25 | Package: inputenc 2018/04/06 v1.3b Input encoding file 26 | \inpenc@prehook=\toks14 27 | \inpenc@posthook=\toks15 28 | ) 29 | ("D:\Latex\MiKTeX 2.9\tex\latex\graphics\graphicx.sty" 30 | Package: graphicx 2017/06/01 v1.1a Enhanced LaTeX Graphics (DPC,SPQR) 31 | 32 | ("D:\Latex\MiKTeX 2.9\tex\latex\graphics\keyval.sty" 33 | Package: keyval 2014/10/28 v1.15 key=value parser (DPC) 34 | \KV@toks@=\toks16 35 | ) 36 | ("D:\Latex\MiKTeX 2.9\tex\latex\graphics\graphics.sty" 37 | Package: graphics 2017/06/25 v1.2c Standard LaTeX Graphics (DPC,SPQR) 38 | 39 | ("D:\Latex\MiKTeX 2.9\tex\latex\graphics\trig.sty" 40 | Package: trig 2016/01/03 v1.10 sin cos tan (DPC) 41 | ) 42 | ("D:\Latex\MiKTeX 2.9\tex\latex\graphics-cfg\graphics.cfg" 43 | File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration 44 | ) 45 | Package graphics Info: Driver file: pdftex.def on input line 99. 46 | 47 | ("D:\Latex\MiKTeX 2.9\tex\latex\graphics-def\pdftex.def" 48 | File: pdftex.def 2018/01/08 v1.0l Graphics/color driver for pdftex 49 | )) 50 | \Gin@req@height=\dimen103 51 | \Gin@req@width=\dimen104 52 | ) 53 | ("D:\Latex\MiKTeX 2.9\tex\latex\tikzpagenodes\tikzpagenodes.sty" 54 | Package: tikzpagenodes 2012/09/16 v1.1 Special PGF/TikZ nodes for areas of the 55 | page 56 | 57 | ("D:\Latex\MiKTeX 2.9\tex\latex\pgf\frontendlayer\tikz.sty" 58 | ("D:\Latex\MiKTeX 2.9\tex\latex\pgf\basiclayer\pgf.sty" 59 | ("D:\Latex\MiKTeX 2.9\tex\latex\pgf\utilities\pgfrcs.sty" 60 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\utilities\pgfutil-common.tex" 61 | \pgfutil@everybye=\toks17 62 | \pgfutil@tempdima=\dimen105 63 | \pgfutil@tempdimb=\dimen106 64 | 65 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\utilities\pgfutil-common-lists.tex")) 66 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\utilities\pgfutil-latex.def" 67 | \pgfutil@abb=\box26 68 | 69 | ("D:\Latex\MiKTeX 2.9\tex\latex\ms\everyshi.sty" 70 | Package: everyshi 2001/05/15 v3.00 EveryShipout Package (MS) 71 | )) 72 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\utilities\pgfrcs.code.tex" 73 | Package: pgfrcs 2015/08/07 v3.0.1a (rcs-revision 1.31) 74 | )) 75 | Package: pgf 2015/08/07 v3.0.1a (rcs-revision 1.15) 76 | 77 | ("D:\Latex\MiKTeX 2.9\tex\latex\pgf\basiclayer\pgfcore.sty" 78 | ("D:\Latex\MiKTeX 2.9\tex\latex\pgf\systemlayer\pgfsys.sty" 79 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\systemlayer\pgfsys.code.tex" 80 | Package: pgfsys 2014/07/09 v3.0.1a (rcs-revision 1.48) 81 | 82 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\utilities\pgfkeys.code.tex" 83 | \pgfkeys@pathtoks=\toks18 84 | \pgfkeys@temptoks=\toks19 85 | 86 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\utilities\pgfkeysfiltered.code.tex" 87 | \pgfkeys@tmptoks=\toks20 88 | )) 89 | \pgf@x=\dimen107 90 | \pgf@y=\dimen108 91 | \pgf@xa=\dimen109 92 | \pgf@ya=\dimen110 93 | \pgf@xb=\dimen111 94 | \pgf@yb=\dimen112 95 | \pgf@xc=\dimen113 96 | \pgf@yc=\dimen114 97 | \w@pgf@writea=\write3 98 | \r@pgf@reada=\read1 99 | \c@pgf@counta=\count89 100 | \c@pgf@countb=\count90 101 | \c@pgf@countc=\count91 102 | \c@pgf@countd=\count92 103 | \t@pgf@toka=\toks21 104 | \t@pgf@tokb=\toks22 105 | \t@pgf@tokc=\toks23 106 | 107 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\systemlayer\pgf.cfg" 108 | File: pgf.cfg 2008/05/14 (rcs-revision 1.7) 109 | ) 110 | Driver file for pgf: pgfsys-pdftex.def 111 | 112 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\systemlayer\pgfsys-pdftex.def" 113 | File: pgfsys-pdftex.def 2014/10/11 (rcs-revision 1.35) 114 | 115 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\systemlayer\pgfsys-common-pdf.def" 116 | File: pgfsys-common-pdf.def 2013/10/10 (rcs-revision 1.13) 117 | ))) 118 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\systemlayer\pgfsyssoftpath.code.tex" 119 | File: pgfsyssoftpath.code.tex 2013/09/09 (rcs-revision 1.9) 120 | \pgfsyssoftpath@smallbuffer@items=\count93 121 | \pgfsyssoftpath@bigbuffer@items=\count94 122 | ) 123 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\systemlayer\pgfsysprotocol.code.tex" 124 | File: pgfsysprotocol.code.tex 2006/10/16 (rcs-revision 1.4) 125 | )) 126 | ("D:\Latex\MiKTeX 2.9\tex\latex\xcolor\xcolor.sty" 127 | Package: xcolor 2016/05/11 v2.12 LaTeX color extensions (UK) 128 | 129 | ("D:\Latex\MiKTeX 2.9\tex\latex\graphics-cfg\color.cfg" 130 | File: color.cfg 2016/01/02 v1.6 sample color configuration 131 | ) 132 | Package xcolor Info: Driver file: pdftex.def on input line 225. 133 | Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1348. 134 | Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1352. 135 | Package xcolor Info: Model `RGB' extended on input line 1364. 136 | Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1366. 137 | Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1367. 138 | Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1368. 139 | Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1369. 140 | Package xcolor Info: Model `Gray' substituted by `gray' on input line 1370. 141 | Package xcolor Info: Model `wave' substituted by `hsb' on input line 1371. 142 | ) 143 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\basiclayer\pgfcore.code.tex" 144 | Package: pgfcore 2010/04/11 v3.0.1a (rcs-revision 1.7) 145 | 146 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\math\pgfmath.code.tex" 147 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\math\pgfmathcalc.code.tex" 148 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\math\pgfmathutil.code.tex") 149 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\math\pgfmathparser.code.tex" 150 | \pgfmath@dimen=\dimen115 151 | \pgfmath@count=\count95 152 | \pgfmath@box=\box27 153 | \pgfmath@toks=\toks24 154 | \pgfmath@stack@operand=\toks25 155 | \pgfmath@stack@operation=\toks26 156 | ) 157 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\math\pgfmathfunctions.code.tex" 158 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\math\pgfmathfunctions.basic.code.tex") 159 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\math\pgfmathfunctions.trigonometric.code. 160 | tex") 161 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\math\pgfmathfunctions.random.code.tex") 162 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\math\pgfmathfunctions.comparison.code.tex 163 | ") ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\math\pgfmathfunctions.base.code.tex") 164 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\math\pgfmathfunctions.round.code.tex") 165 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\math\pgfmathfunctions.misc.code.tex") 166 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\math\pgfmathfunctions.integerarithmetics. 167 | code.tex"))) ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\math\pgfmathfloat.code.tex" 168 | \c@pgfmathroundto@lastzeros=\count96 169 | )) ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\basiclayer\pgfcorepoints.code.tex" 170 | File: pgfcorepoints.code.tex 2013/10/07 (rcs-revision 1.27) 171 | \pgf@picminx=\dimen116 172 | \pgf@picmaxx=\dimen117 173 | \pgf@picminy=\dimen118 174 | \pgf@picmaxy=\dimen119 175 | \pgf@pathminx=\dimen120 176 | \pgf@pathmaxx=\dimen121 177 | \pgf@pathminy=\dimen122 178 | \pgf@pathmaxy=\dimen123 179 | \pgf@xx=\dimen124 180 | \pgf@xy=\dimen125 181 | \pgf@yx=\dimen126 182 | \pgf@yy=\dimen127 183 | \pgf@zx=\dimen128 184 | \pgf@zy=\dimen129 185 | ) 186 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\basiclayer\pgfcorepathconstruct.code.tex" 187 | File: pgfcorepathconstruct.code.tex 2013/10/07 (rcs-revision 1.29) 188 | \pgf@path@lastx=\dimen130 189 | \pgf@path@lasty=\dimen131 190 | ) ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\basiclayer\pgfcorepathusage.code.tex" 191 | File: pgfcorepathusage.code.tex 2014/11/02 (rcs-revision 1.24) 192 | \pgf@shorten@end@additional=\dimen132 193 | \pgf@shorten@start@additional=\dimen133 194 | ) 195 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\basiclayer\pgfcorescopes.code.tex" 196 | File: pgfcorescopes.code.tex 2015/05/08 (rcs-revision 1.46) 197 | \pgfpic=\box28 198 | \pgf@hbox=\box29 199 | \pgf@layerbox@main=\box30 200 | \pgf@picture@serial@count=\count97 201 | ) 202 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\basiclayer\pgfcoregraphicstate.code.tex" 203 | File: pgfcoregraphicstate.code.tex 2014/11/02 (rcs-revision 1.12) 204 | \pgflinewidth=\dimen134 205 | ) 206 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\basiclayer\pgfcoretransformations.code.te 207 | x" 208 | File: pgfcoretransformations.code.tex 2015/08/07 (rcs-revision 1.20) 209 | \pgf@pt@x=\dimen135 210 | \pgf@pt@y=\dimen136 211 | \pgf@pt@temp=\dimen137 212 | ) ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\basiclayer\pgfcorequick.code.tex" 213 | File: pgfcorequick.code.tex 2008/10/09 (rcs-revision 1.3) 214 | ) 215 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\basiclayer\pgfcoreobjects.code.tex" 216 | File: pgfcoreobjects.code.tex 2006/10/11 (rcs-revision 1.2) 217 | ) 218 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\basiclayer\pgfcorepathprocessing.code.tex 219 | " 220 | File: pgfcorepathprocessing.code.tex 2013/09/09 (rcs-revision 1.9) 221 | ) ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\basiclayer\pgfcorearrows.code.tex" 222 | File: pgfcorearrows.code.tex 2015/05/14 (rcs-revision 1.43) 223 | \pgfarrowsep=\dimen138 224 | ) 225 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\basiclayer\pgfcoreshade.code.tex" 226 | File: pgfcoreshade.code.tex 2013/07/15 (rcs-revision 1.15) 227 | \pgf@max=\dimen139 228 | \pgf@sys@shading@range@num=\count98 229 | ) 230 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\basiclayer\pgfcoreimage.code.tex" 231 | File: pgfcoreimage.code.tex 2013/07/15 (rcs-revision 1.18) 232 | 233 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\basiclayer\pgfcoreexternal.code.tex" 234 | File: pgfcoreexternal.code.tex 2014/07/09 (rcs-revision 1.21) 235 | \pgfexternal@startupbox=\box31 236 | )) 237 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\basiclayer\pgfcorelayers.code.tex" 238 | File: pgfcorelayers.code.tex 2013/07/18 (rcs-revision 1.7) 239 | ) 240 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\basiclayer\pgfcoretransparency.code.tex" 241 | File: pgfcoretransparency.code.tex 2013/09/30 (rcs-revision 1.5) 242 | ) ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\basiclayer\pgfcorepatterns.code.tex" 243 | File: pgfcorepatterns.code.tex 2013/11/07 (rcs-revision 1.5) 244 | ))) 245 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\modules\pgfmoduleshapes.code.tex" 246 | File: pgfmoduleshapes.code.tex 2014/03/21 (rcs-revision 1.35) 247 | \pgfnodeparttextbox=\box32 248 | ) 249 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\modules\pgfmoduleplot.code.tex" 250 | File: pgfmoduleplot.code.tex 2015/08/03 (rcs-revision 1.13) 251 | ) 252 | ("D:\Latex\MiKTeX 2.9\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty" 253 | Package: pgfcomp-version-0-65 2007/07/03 v3.0.1a (rcs-revision 1.7) 254 | \pgf@nodesepstart=\dimen140 255 | \pgf@nodesepend=\dimen141 256 | ) 257 | ("D:\Latex\MiKTeX 2.9\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty" 258 | Package: pgfcomp-version-1-18 2007/07/23 v3.0.1a (rcs-revision 1.1) 259 | )) 260 | ("D:\Latex\MiKTeX 2.9\tex\latex\pgf\utilities\pgffor.sty" 261 | ("D:\Latex\MiKTeX 2.9\tex\latex\pgf\utilities\pgfkeys.sty" 262 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\utilities\pgfkeys.code.tex")) 263 | ("D:\Latex\MiKTeX 2.9\tex\latex\pgf\math\pgfmath.sty" 264 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\math\pgfmath.code.tex")) 265 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\utilities\pgffor.code.tex" 266 | Package: pgffor 2013/12/13 v3.0.1a (rcs-revision 1.25) 267 | 268 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\math\pgfmath.code.tex") 269 | \pgffor@iter=\dimen142 270 | \pgffor@skip=\dimen143 271 | \pgffor@stack=\toks27 272 | \pgffor@toks=\toks28 273 | )) 274 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\frontendlayer\tikz\tikz.code.tex" 275 | Package: tikz 2015/08/07 v3.0.1a (rcs-revision 1.151) 276 | 277 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\libraries\pgflibraryplothandlers.code.tex 278 | " 279 | File: pgflibraryplothandlers.code.tex 2013/08/31 v3.0.1a (rcs-revision 1.20) 280 | \pgf@plot@mark@count=\count99 281 | \pgfplotmarksize=\dimen144 282 | ) 283 | \tikz@lastx=\dimen145 284 | \tikz@lasty=\dimen146 285 | \tikz@lastxsaved=\dimen147 286 | \tikz@lastysaved=\dimen148 287 | \tikzleveldistance=\dimen149 288 | \tikzsiblingdistance=\dimen150 289 | \tikz@figbox=\box33 290 | \tikz@figbox@bg=\box34 291 | \tikz@tempbox=\box35 292 | \tikz@tempbox@bg=\box36 293 | \tikztreelevel=\count100 294 | \tikznumberofchildren=\count101 295 | \tikznumberofcurrentchild=\count102 296 | \tikz@fig@count=\count103 297 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\modules\pgfmodulematrix.code.tex" 298 | File: pgfmodulematrix.code.tex 2013/09/17 (rcs-revision 1.8) 299 | \pgfmatrixcurrentrow=\count104 300 | \pgfmatrixcurrentcolumn=\count105 301 | \pgf@matrix@numberofcolumns=\count106 302 | ) 303 | \tikz@expandcount=\count107 304 | 305 | ("D:\Latex\MiKTeX 2.9\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibraryt 306 | opaths.code.tex" 307 | File: tikzlibrarytopaths.code.tex 2008/06/17 v3.0.1a (rcs-revision 1.2) 308 | ))) ("D:\Latex\MiKTeX 2.9\tex\latex\ifoddpage\ifoddpage.sty" 309 | Package: ifoddpage 2016/04/23 v1.1 Conditionals for odd/even page detection 310 | \c@checkoddpage=\count108 311 | )) 312 | ("D:\Latex\MiKTeX 2.9\tex\latex\titlesec\titlesec.sty" 313 | Package: titlesec 2016/03/21 v2.10.2 Sectioning titles 314 | \ttl@box=\box37 315 | \beforetitleunit=\skip43 316 | \aftertitleunit=\skip44 317 | \ttl@plus=\dimen151 318 | \ttl@minus=\dimen152 319 | \ttl@toksa=\toks29 320 | \titlewidth=\dimen153 321 | \titlewidthlast=\dimen154 322 | \titlewidthfirst=\dimen155 323 | ) 324 | ("D:\Latex\MiKTeX 2.9\tex\latex\microtype\microtype.sty" 325 | Package: microtype 2018/01/14 v2.7a Micro-typographical refinements (RS) 326 | \MT@toks=\toks30 327 | \MT@count=\count109 328 | LaTeX Info: Redefining \textls on input line 793. 329 | \MT@outer@kern=\dimen156 330 | LaTeX Info: Redefining \textmicrotypecontext on input line 1339. 331 | \MT@listname@count=\count110 332 | 333 | ("D:\Latex\MiKTeX 2.9\tex\latex\microtype\microtype-pdftex.def" 334 | File: microtype-pdftex.def 2018/01/14 v2.7a Definitions specific to pdftex (RS) 335 | 336 | LaTeX Info: Redefining \lsstyle on input line 913. 337 | LaTeX Info: Redefining \lslig on input line 913. 338 | \MT@outer@space=\skip45 339 | ) 340 | Package microtype Info: Loading configuration file microtype.cfg. 341 | 342 | ("D:\Latex\MiKTeX 2.9\tex\latex\microtype\microtype.cfg" 343 | File: microtype.cfg 2018/01/14 v2.7a microtype main configuration file (RS) 344 | )) 345 | ("D:\Latex\MiKTeX 2.9\tex\latex\titlesec\ttlkeys.def" 346 | File: ttlkeys.def 2016/03/15 347 | \c@ttlp@side=\count111 348 | \ttlp@side=\count112 349 | ) (main.aux) 350 | \openout1 = `main.aux'. 351 | 352 | LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 65. 353 | LaTeX Font Info: ... okay on input line 65. 354 | LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 65. 355 | LaTeX Font Info: ... okay on input line 65. 356 | LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 65. 357 | LaTeX Font Info: ... okay on input line 65. 358 | LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 65. 359 | LaTeX Font Info: ... okay on input line 65. 360 | LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 65. 361 | LaTeX Font Info: ... okay on input line 65. 362 | LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 65. 363 | LaTeX Font Info: ... okay on input line 65. 364 | 365 | ("D:\Latex\MiKTeX 2.9\tex\context\base\supp-pdf.mkii" 366 | [Loading MPS to PDF converter (version 2006.09.02).] 367 | \scratchcounter=\count113 368 | \scratchdimen=\dimen157 369 | \scratchbox=\box38 370 | \nofMPsegments=\count114 371 | \nofMParguments=\count115 372 | \everyMPshowfont=\toks31 373 | \MPscratchCnt=\count116 374 | \MPscratchDim=\dimen158 375 | \MPnumerator=\count117 376 | \makeMPintoPDFobject=\count118 377 | \everyMPtoPDFconversion=\toks32 378 | ) ("D:\Latex\MiKTeX 2.9\tex\latex\oberdiek\epstopdf-base.sty" 379 | Package: epstopdf-base 2016/05/15 v2.6 Base part for package epstopdf 380 | 381 | ("D:\Latex\MiKTeX 2.9\tex\generic\oberdiek\infwarerr.sty" 382 | Package: infwarerr 2016/05/16 v1.4 Providing info/warning/error messages (HO) 383 | ) 384 | ("D:\Latex\MiKTeX 2.9\tex\latex\oberdiek\grfext.sty" 385 | Package: grfext 2016/05/16 v1.2 Manage graphics extensions (HO) 386 | 387 | ("D:\Latex\MiKTeX 2.9\tex\generic\oberdiek\kvdefinekeys.sty" 388 | Package: kvdefinekeys 2016/05/16 v1.4 Define keys (HO) 389 | 390 | ("D:\Latex\MiKTeX 2.9\tex\generic\oberdiek\ltxcmds.sty" 391 | Package: ltxcmds 2016/05/16 v1.23 LaTeX kernel commands for general use (HO) 392 | ))) 393 | ("D:\Latex\MiKTeX 2.9\tex\latex\oberdiek\kvoptions.sty" 394 | Package: kvoptions 2016/05/16 v3.12 Key value format for package options (HO) 395 | 396 | ("D:\Latex\MiKTeX 2.9\tex\generic\oberdiek\kvsetkeys.sty" 397 | Package: kvsetkeys 2016/05/16 v1.17 Key value parser (HO) 398 | 399 | ("D:\Latex\MiKTeX 2.9\tex\generic\oberdiek\etexcmds.sty" 400 | Package: etexcmds 2016/05/16 v1.6 Avoid name clashes with e-TeX commands (HO) 401 | 402 | ("D:\Latex\MiKTeX 2.9\tex\generic\oberdiek\ifluatex.sty" 403 | Package: ifluatex 2016/05/16 v1.4 Provides the ifluatex switch (HO) 404 | Package ifluatex Info: LuaTeX not detected. 405 | ) 406 | Package etexcmds Info: Could not find \expanded. 407 | (etexcmds) That can mean that you are not using pdfTeX 1.50 or 408 | (etexcmds) that some package has redefined \expanded. 409 | (etexcmds) In the latter case, load this package earlier. 410 | ))) 411 | ("D:\Latex\MiKTeX 2.9\tex\generic\oberdiek\pdftexcmds.sty" 412 | Package: pdftexcmds 2018/01/30 v0.27 Utility functions of pdfTeX for LuaTeX (HO 413 | ) 414 | 415 | ("D:\Latex\MiKTeX 2.9\tex\generic\oberdiek\ifpdf.sty" 416 | Package: ifpdf 2017/03/15 v3.2 Provides the ifpdf switch 417 | ) 418 | Package pdftexcmds Info: LuaTeX not detected. 419 | Package pdftexcmds Info: \pdf@primitive is available. 420 | Package pdftexcmds Info: \pdf@ifprimitive is available. 421 | Package pdftexcmds Info: \pdfdraftmode found. 422 | ) 423 | Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4 424 | 38. 425 | Package grfext Info: Graphics extension search list: 426 | (grfext) [.pdf,.png,.jpg,.mps,.jpeg,.jbig2,.jb2,.PDF,.PNG,.JPG,.JPE 427 | G,.JBIG2,.JB2,.eps] 428 | (grfext) \AppendGraphicsExtensions on input line 456. 429 | ) 430 | ABD: EveryShipout initializing macros 431 | LaTeX Info: Redefining \microtypecontext on input line 65. 432 | Package microtype Info: Generating PDF output. 433 | Package microtype Info: Character protrusion enabled (level 2). 434 | Package microtype Info: Using default protrusion set `alltext'. 435 | Package microtype Info: Automatic font expansion enabled (level 2), 436 | (microtype) stretch: 20, shrink: 20, step: 1, non-selected. 437 | Package microtype Info: Using default expansion set `basictext'. 438 | Package microtype Info: No adjustment of tracking. 439 | Package microtype Info: No adjustment of interword spacing. 440 | Package microtype Info: No adjustment of character kerning. 441 | 442 | ("D:\Latex\MiKTeX 2.9\tex\latex\microtype\mt-cmr.cfg" 443 | File: mt-cmr.cfg 2013/05/19 v2.2 microtype config. file: Computer Modern Roman 444 | (RS) 445 | ) 446 | LaTeX Font Info: External font `cmex10' loaded for size 447 | (Font) <14.4> on input line 72. 448 | LaTeX Font Info: External font `cmex10' loaded for size 449 | (Font) <7> on input line 72. 450 | [1 451 | 452 | 453 | 454 | {C:/Users/Sky/AppData/Local/MiKTeX/2.9/pdftex/config/pdftex.map}] [2 455 | 456 | ] 457 | Underfull \hbox (badness 10000) in paragraph at lines 73--73 458 | [][][][]\OT1/cmr/bx/n/24.88 Contents 459 | [] 460 | 461 | (main.toc) 462 | \tf@toc=\write4 463 | \openout4 = `main.toc'. 464 | 465 | [3] [4 466 | 467 | ] 468 | Chapter 1. 469 | 470 | LaTeX Font Warning: Font shape `OT1/cmr/m/sc' in size <16> not available 471 | (Font) size <17.28> substituted on input line 76. 472 | 473 | LaTeX Font Info: External font `cmex10' loaded for size 474 | (Font) <12> on input line 76. 475 | LaTeX Font Info: External font `cmex10' loaded for size 476 | (Font) <8> on input line 76. 477 | LaTeX Font Info: External font `cmex10' loaded for size 478 | (Font) <6> on input line 76. 479 | [1 480 | 481 | ] [2 482 | 483 | ] (main.aux) 484 | 485 | LaTeX Font Warning: Size substitutions with differences 486 | (Font) up to 1.28pt have occurred. 487 | 488 | ) 489 | Here is how much of TeX's memory you used: 490 | 13332 strings out of 492969 491 | 264784 string characters out of 3139343 492 | 339408 words of memory out of 3000000 493 | 16952 multiletter control sequences out of 15000+200000 494 | 10858 words of font info for 44 fonts, out of 3000000 for 9000 495 | 1141 hyphenation exceptions out of 8191 496 | 62i,6n,67p,446b,722s stack positions out of 5000i,500n,10000p,200000b,50000s 497 | 501 | 502 | Output written on main.pdf (6 pages, 58432 bytes). 503 | PDF statistics: 504 | 44 PDF objects out of 1000 (max. 8388607) 505 | 0 named destinations out of 1000 (max. 500000) 506 | 13837 words of extra memory for PDF output out of 14400 (max. 10000000) 507 | 508 | --------------------------------------------------------------------------------