make tree + formula partitore errata
This commit is contained in:
parent
53568c53f6
commit
519a9e1dd1
|
@ -0,0 +1,169 @@
|
|||
% Proudly written in LaTeX by Giulio & Stefano
|
||||
\title{Arduino da zero a maker}
|
||||
\author{Giulio e Stefano}
|
||||
\date{2016}
|
||||
|
||||
% Parametri di impaginazione: margini, formato pagina, dimensione e tipo di font
|
||||
\documentclass[twoside, 12pt]{book}
|
||||
\usepackage[left=2cm,right=2cm,top=2.5cm,bottom=2.5cm]{geometry}
|
||||
\geometry{papersize={17cm,24cm},centering,dvips=false}
|
||||
|
||||
% Pacchetto per pagine intenzionalmente bianche
|
||||
\usepackage{emptypage}
|
||||
|
||||
% Pacchetti per il font encoding e la lingua del testo
|
||||
\usepackage[latin1]{inputenc}
|
||||
\usepackage[T1]{fontenc}
|
||||
\usepackage[italian]{babel}
|
||||
|
||||
% Fonts: testo, formule matematiche e simboli generici
|
||||
\usepackage{helvet}
|
||||
\usepackage{courier}
|
||||
\usepackage[light,math]{iwona}
|
||||
\usepackage{pifont}
|
||||
\usepackage{amssymb,amsfonts,textcomp}
|
||||
|
||||
\usepackage{amsmath}
|
||||
\usepackage[makeroom]{cancel}
|
||||
|
||||
\usepackage{nicefrac}
|
||||
|
||||
% Personalizzazioni dei parametri LaTeX (formato titoli...)
|
||||
\usepackage[font={small,it}]{caption}
|
||||
%~ Titoli dei capitoli più in sù
|
||||
\makeatletter
|
||||
% "\@makechapterhead" applies to ordinary or numbered chapters
|
||||
\patchcmd{\@makechapterhead}{\vspace*{50\p@}}{}{}{}
|
||||
\patchcmd{\@makechapterhead}{\vskip 40\p@}{\vskip 20\p@}{}{}
|
||||
% "\@makeschapterhead" applies to "starred" or un-numbered chapters
|
||||
\patchcmd{\@makeschapterhead}{\vspace*{50\p@}}{}{}{}
|
||||
\patchcmd{\@makeschapterhead}{\vskip 40\p@}{\vskip 20\p@}{}{}
|
||||
\makeatother
|
||||
% personalizzazione intestazioni e pié di pagina
|
||||
\usepackage{fancyhdr}
|
||||
\pagestyle{fancy}
|
||||
\renewcommand{\chaptermark}[1]{\markboth{#1}{}}
|
||||
|
||||
\makeatletter
|
||||
\fancyhf{}
|
||||
|
||||
%%% INTESTAZIONE %%%
|
||||
% Left Even, Right Odd: Titolo del libro
|
||||
\fancyhead[LE]{\itshape\nouppercase{\@title}}
|
||||
% Right Even, Left Odd: Capitolo attuale
|
||||
\fancyhead[RO]{\itshape\nouppercase{\leftmark}}
|
||||
%%% PIE DI PAGINA %%%
|
||||
% Center: numero di pagina
|
||||
\fancyfoot[C]{\thepage}
|
||||
|
||||
\renewcommand{\headrulewidth}{0pt}
|
||||
\newcommand\footnoteref[1]{\protected@xdef\@thefnmark{\ref{#1}}\@footnotemark}
|
||||
|
||||
|
||||
%~ numeri romani maiuscoli
|
||||
\renewcommand\frontmatter{%
|
||||
\cleardoublepage
|
||||
\@mainmatterfalse
|
||||
\pagenumbering{Roman}
|
||||
}
|
||||
\makeatother
|
||||
% URL e relativa personalizzazione
|
||||
\usepackage{hyperref}
|
||||
\hypersetup{pdftex, hidelinks=true,linkcolor=blue, citecolor=blue, filecolor=blue, urlcolor=blue, pdftitle=}
|
||||
|
||||
% Table Of Content: mostra solo capitoli e sottocapitoli
|
||||
\setcounter{tocdepth}{2}
|
||||
|
||||
% Pacchetto relativo all'impaginazione a colonne
|
||||
\usepackage{multicol}
|
||||
|
||||
%%% Colori, grafica, figure e tabelle %%%
|
||||
\usepackage[usenames,dvipsnames]{xcolor}
|
||||
\definecolor{light-gray}{gray}{0.95}
|
||||
|
||||
\usepackage[pdftex]{graphicx}
|
||||
\usepackage{caption}
|
||||
\captionsetup{justification=centering}
|
||||
|
||||
% Listati e codice
|
||||
\usepackage{listings}
|
||||
|
||||
% Linguaggio Arduino
|
||||
\lstdefinestyle{Carduino}{
|
||||
basicstyle=\footnotesize\ttfamily,
|
||||
language=C,
|
||||
numbers=left,
|
||||
numbersep=5pt,
|
||||
numberstyle=\tiny,
|
||||
stepnumber=5,
|
||||
firstnumber=1,
|
||||
numberfirstline=true,
|
||||
keywords={void, boolean, unsigned, byte, int, long, short, float, const, String, HIGH, LOW, INPUT, OUTPUT, INPUT_PULLUP},
|
||||
%~ keywordstyle=\color[rgb]{.08,.63,.64},
|
||||
keywordstyle=\bfseries,
|
||||
keywords=[2]{setup, loop, char, word, double, if, else, for, switch, case, while, do, while, break, continue, return},
|
||||
%~ keywordstyle=[2]{\color[rgb]{.37,.43,.01}},
|
||||
keywordstyle=[2]{\bfseries},
|
||||
keywords=[3]{pinMode, digitalWrite, digitalRead, analogReference, analogRead, analogWrite, tone, noTone, shiftOut, shiftIn, pulseIn, millis, micros, delay, delayMicroseconds, min, max, abs, constrain, map, pow, sqrt, sin, cos, tan, randomSeed, random, lowByte, highByte, bitRead, bitWrite, bitSet, bitClear, bit, attachInterrupt, detachInterrupt, interrupts, noInterrupts},
|
||||
%~ keywordstyle=[3]{\color[rgb]{.83,.34,.02}},
|
||||
keywordstyle=[3]{\bfseries},
|
||||
commentstyle=\color[rgb]{.35,.41,.43},
|
||||
stringstyle=\color{blue}
|
||||
}
|
||||
|
||||
\lstdefinestyle{bash} {
|
||||
language=bash,
|
||||
}
|
||||
|
||||
\lstdefinestyle{nonumbers} {
|
||||
numbers=none,
|
||||
}
|
||||
|
||||
\lstdefinestyle{small} {
|
||||
basicstyle=\scriptsize\ttfamily,
|
||||
}
|
||||
|
||||
\lstdefinestyle{CarduinoInline} {
|
||||
language=C,
|
||||
basicstyle=\footnotesize\ttfamily,
|
||||
}
|
||||
|
||||
% wrapping
|
||||
\lstdefinestyle{wrap} {
|
||||
%~ breaklines=true,
|
||||
postbreak=\raisebox{0ex}[0ex][0ex]{\ensuremath{\color{red}\hookrightarrow\space}}
|
||||
}
|
||||
|
||||
% impostazioni di default
|
||||
\lstset {
|
||||
%~ frame=single,
|
||||
breaklines=true,
|
||||
basicstyle=\footnotesize\ttfamily,
|
||||
mathescape,
|
||||
}
|
||||
|
||||
|
||||
\begin{document}
|
||||
{\LARGE \textbf{ERRATA CORRIGE} }\\
|
||||
|
||||
A \textbf{pagina 42} le due formule per calcolare la resistenza del sensore $R_{sens}$ sono errate e devono essere corrette come segue:
|
||||
\begin{multicols}{2}
|
||||
\centering
|
||||
In termini di tensioni:
|
||||
$$ V_{part} = 5V \cdot \frac {R}{R+R_{sens}} $$
|
||||
\textcolor{red}{$$ \cancel{R_{sens} = \frac {R}{\frac{5V}{V_{part}}-1}} $$}
|
||||
$$ R_{sens} = R \cdot \bigg( \frac{5V}{V_{part}}-1 \bigg) $$
|
||||
|
||||
Utilizzando le letture di Arduino:
|
||||
$$ lettura = 1024 \cdot \frac {R}{R+R_{sens}} $$
|
||||
\textcolor{red}{$$ \cancel{R_{sens} = \frac {R}{\frac{1024}{lettura}-1}} $$}
|
||||
$$ R_{sens} = R \cdot \bigg( \frac{1024}{lettura}-1 \bigg) $$
|
||||
|
||||
\end{multicols}
|
||||
|
||||
Di conseguenza, i codici che implementano queste formule devono essere corretti inserendo una moltiplicazione al posto di una divisione. In particolare, a \textbf{Pagina 43} Linea 15 e \textbf{Pagina 46} Linea 19:
|
||||
\begin{lstlisting}[style=Carduino,style=wrap]
|
||||
float resistenzaSensore = RESISTENZAFISSA * ( 1024.0 / valoreSensore - 1 );
|
||||
\end{lstlisting}
|
||||
|
||||
\end{document}
|
|
@ -0,0 +1,20 @@
|
|||
\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]{}
|
||||
\babel@aux{italian}{}
|
||||
\babel@aux{italian}{}
|
|
@ -0,0 +1,867 @@
|
|||
This is pdfTeX, Version 3.14159265-2.6-1.40.19 (TeX Live 2018/Arch Linux) (preloaded format=pdflatex 2019.2.15) 22 FEB 2019 12:17
|
||||
entering extended mode
|
||||
restricted \write18 enabled.
|
||||
%&-line parsing enabled.
|
||||
**LibroArduino.tex
|
||||
(./LibroArduino.tex
|
||||
LaTeX2e <2018-04-01> patch level 5
|
||||
(/usr/share/texmf-dist/tex/latex/base/book.cls
|
||||
Document Class: book 2014/09/29 v1.4h Standard LaTeX document class
|
||||
(/usr/share/texmf-dist/tex/latex/base/bk12.clo
|
||||
File: bk12.clo 2014/09/29 v1.4h Standard LaTeX file (size option)
|
||||
)
|
||||
\c@part=\count80
|
||||
\c@chapter=\count81
|
||||
\c@section=\count82
|
||||
\c@subsection=\count83
|
||||
\c@subsubsection=\count84
|
||||
\c@paragraph=\count85
|
||||
\c@subparagraph=\count86
|
||||
\c@figure=\count87
|
||||
\c@table=\count88
|
||||
\abovecaptionskip=\skip41
|
||||
\belowcaptionskip=\skip42
|
||||
\bibindent=\dimen102
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/geometry/geometry.sty
|
||||
Package: geometry 2018/04/16 v5.8 Page Geometry
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/graphics/keyval.sty
|
||||
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
|
||||
\KV@toks@=\toks14
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/generic/oberdiek/ifpdf.sty
|
||||
Package: ifpdf 2018/09/07 v3.3 Provides the ifpdf switch
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/generic/oberdiek/ifvtex.sty
|
||||
Package: ifvtex 2016/05/16 v1.6 Detect VTeX and its facilities (HO)
|
||||
Package ifvtex Info: VTeX not detected.
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/generic/ifxetex/ifxetex.sty
|
||||
Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional
|
||||
)
|
||||
\Gm@cnth=\count89
|
||||
\Gm@cntv=\count90
|
||||
\c@Gm@tempcnt=\count91
|
||||
\Gm@bindingoffset=\dimen103
|
||||
\Gm@wd@mp=\dimen104
|
||||
\Gm@odd@mp=\dimen105
|
||||
\Gm@even@mp=\dimen106
|
||||
\Gm@layoutwidth=\dimen107
|
||||
\Gm@layoutheight=\dimen108
|
||||
\Gm@layouthoffset=\dimen109
|
||||
\Gm@layoutvoffset=\dimen110
|
||||
\Gm@dimlist=\toks15
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/emptypage/emptypage.sty
|
||||
Package: emptypage 2010/05/30 v1.2 Suppress page numbers and headings on empty
|
||||
pages
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/base/inputenc.sty
|
||||
Package: inputenc 2018/04/06 v1.3b Input encoding file
|
||||
\inpenc@prehook=\toks16
|
||||
\inpenc@posthook=\toks17
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/base/latin1.def
|
||||
File: latin1.def 2018/04/06 v1.3b Input encoding file
|
||||
))
|
||||
(/usr/share/texmf-dist/tex/latex/base/fontenc.sty
|
||||
Package: fontenc 2017/04/05 v2.0i Standard LaTeX package
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/base/t1enc.def
|
||||
File: t1enc.def 2017/04/05 v2.0i Standard LaTeX file
|
||||
LaTeX Font Info: Redeclaring font encoding T1 on input line 48.
|
||||
))
|
||||
(/usr/share/texmf-dist/tex/generic/babel/babel.sty
|
||||
Package: babel 2018/11/13 3.27 The Babel package
|
||||
|
||||
(/usr/share/texmf-dist/tex/generic/babel/switch.def
|
||||
File: switch.def 2018/11/13 3.27 Babel switching mechanism
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/generic/babel-italian/italian.ldf
|
||||
Language: italian 2015/03/26 v1.3n Italian support from the babel system
|
||||
|
||||
(/usr/share/texmf-dist/tex/generic/babel/babel.def
|
||||
File: babel.def 2018/11/13 3.27 Babel common definitions
|
||||
\babel@savecnt=\count92
|
||||
\U@D=\dimen111
|
||||
|
||||
(/usr/share/texmf-dist/tex/generic/babel/txtbabel.def)
|
||||
\bbl@dirlevel=\count93
|
||||
)
|
||||
\it@lettering=\count94
|
||||
\it@doublequoteactive=\count95
|
||||
\it@ISOcompliance=\count96
|
||||
))
|
||||
(/usr/share/texmf-dist/tex/latex/etoolbox/etoolbox.sty
|
||||
Package: etoolbox 2018/08/19 v2.5f e-TeX tools for LaTeX (JAW)
|
||||
\etb@tempcnta=\count97
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/psnfss/helvet.sty
|
||||
Package: helvet 2005/04/12 PSNFSS-v9.2a (WaS)
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/psnfss/courier.sty
|
||||
Package: courier 2005/04/12 PSNFSS-v9.2a (WaS)
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/iwona/iwona.sty
|
||||
Package: iwona 2005/10/03 v.1.2 Iwona package (MW)
|
||||
\c@mv@iwona=\count98
|
||||
\c@mv@iwonabold=\count99
|
||||
LaTeX Font Info: Overwriting symbol font `operators' in version `iwona'
|
||||
(Font) OT1/cmr/m/n --> OT1/iwonalm/m/n on input line 58.
|
||||
LaTeX Font Info: Overwriting symbol font `letters' in version `iwona'
|
||||
(Font) OML/cmm/m/it --> OML/iwonal/m/it on input line 59.
|
||||
LaTeX Font Info: Overwriting symbol font `symbols' in version `iwona'
|
||||
(Font) OMS/cmsy/m/n --> OMS/iwonal/m/n on input line 60.
|
||||
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `iwona'
|
||||
(Font) OMX/cmex/m/n --> OMX/iwonal/m/n on input line 61.
|
||||
LaTeX Font Info: Overwriting symbol font `operators' in version `iwonabold'
|
||||
(Font) OT1/cmr/m/n --> OT1/iwonalm/b/n on input line 62.
|
||||
LaTeX Font Info: Overwriting symbol font `letters' in version `iwonabold'
|
||||
(Font) OML/cmm/m/it --> OML/iwonal/b/it on input line 63.
|
||||
LaTeX Font Info: Overwriting symbol font `symbols' in version `iwonabold'
|
||||
(Font) OMS/cmsy/m/n --> OMS/iwonal/b/n on input line 64.
|
||||
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `iwonabol
|
||||
d'
|
||||
(Font) OMX/cmex/m/n --> OMX/iwonal/b/n on input line 65.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `iwona'
|
||||
(Font) OT1/cmr/bx/n --> OT1/iwonal/bx/n on input line 67.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `iwona'
|
||||
(Font) OT1/cmss/m/n --> OT1/iwonal/m/n on input line 68.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `iwona'
|
||||
(Font) OT1/cmr/m/it --> OT1/iwonal/m/it on input line 69.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `iwona'
|
||||
(Font) OT1/cmtt/m/n --> OT1/iwonal/m/n on input line 70.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `iwonabold'
|
||||
(Font) OT1/cmss/m/n --> OT1/iwonal/bx/n on input line 71.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `iwonabold'
|
||||
(Font) OT1/cmr/m/it --> OT1/iwonal/bx/it on input line 72.
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/psnfss/pifont.sty
|
||||
Package: pifont 2005/04/12 PSNFSS-v9.2a Pi font support (SPQR)
|
||||
LaTeX Font Info: Try loading font information for U+pzd on input line 63.
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/psnfss/upzd.fd
|
||||
File: upzd.fd 2001/06/04 font definitions for U/pzd.
|
||||
)
|
||||
LaTeX Font Info: Try loading font information for U+psy on input line 64.
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/psnfss/upsy.fd
|
||||
File: upsy.fd 2001/06/04 font definitions for U/psy.
|
||||
))
|
||||
(/usr/share/texmf-dist/tex/latex/amsfonts/amssymb.sty
|
||||
Package: amssymb 2013/01/14 v3.01 AMS font symbols
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/amsfonts/amsfonts.sty
|
||||
Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
|
||||
\@emptytoks=\toks18
|
||||
\symAMSa=\mathgroup4
|
||||
\symAMSb=\mathgroup5
|
||||
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/texmf-dist/tex/latex/base/textcomp.sty
|
||||
Package: textcomp 2017/04/05 v2.0i Standard LaTeX package
|
||||
Package textcomp Info: Sub-encoding information:
|
||||
(textcomp) 5 = only ISO-Adobe without \textcurrency
|
||||
(textcomp) 4 = 5 + \texteuro
|
||||
(textcomp) 3 = 4 + \textohm
|
||||
(textcomp) 2 = 3 + \textestimated + \textcurrency
|
||||
(textcomp) 1 = TS1 - \textcircled - \t
|
||||
(textcomp) 0 = TS1 (full)
|
||||
(textcomp) Font families with sub-encoding setting implement
|
||||
(textcomp) only a restricted character set as indicated.
|
||||
(textcomp) Family '?' is the default used for unknown fonts.
|
||||
(textcomp) See the documentation for details.
|
||||
Package textcomp Info: Setting ? sub-encoding to TS1/1 on input line 79.
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/base/ts1enc.def
|
||||
File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file
|
||||
Now handling font encoding TS1 ...
|
||||
... processing UTF-8 mapping file for font encoding TS1
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/base/ts1enc.dfu
|
||||
File: ts1enc.dfu 2018/04/05 v1.2c UTF-8 support for inputenc
|
||||
defining Unicode char U+00A2 (decimal 162)
|
||||
defining Unicode char U+00A3 (decimal 163)
|
||||
defining Unicode char U+00A4 (decimal 164)
|
||||
defining Unicode char U+00A5 (decimal 165)
|
||||
defining Unicode char U+00A6 (decimal 166)
|
||||
defining Unicode char U+00A7 (decimal 167)
|
||||
defining Unicode char U+00A8 (decimal 168)
|
||||
defining Unicode char U+00A9 (decimal 169)
|
||||
defining Unicode char U+00AA (decimal 170)
|
||||
defining Unicode char U+00AC (decimal 172)
|
||||
defining Unicode char U+00AE (decimal 174)
|
||||
defining Unicode char U+00AF (decimal 175)
|
||||
defining Unicode char U+00B0 (decimal 176)
|
||||
defining Unicode char U+00B1 (decimal 177)
|
||||
defining Unicode char U+00B2 (decimal 178)
|
||||
defining Unicode char U+00B3 (decimal 179)
|
||||
defining Unicode char U+00B4 (decimal 180)
|
||||
defining Unicode char U+00B5 (decimal 181)
|
||||
defining Unicode char U+00B6 (decimal 182)
|
||||
defining Unicode char U+00B7 (decimal 183)
|
||||
defining Unicode char U+00B9 (decimal 185)
|
||||
defining Unicode char U+00BA (decimal 186)
|
||||
defining Unicode char U+00BC (decimal 188)
|
||||
defining Unicode char U+00BD (decimal 189)
|
||||
defining Unicode char U+00BE (decimal 190)
|
||||
defining Unicode char U+00D7 (decimal 215)
|
||||
defining Unicode char U+00F7 (decimal 247)
|
||||
defining Unicode char U+0192 (decimal 402)
|
||||
defining Unicode char U+02C7 (decimal 711)
|
||||
defining Unicode char U+02D8 (decimal 728)
|
||||
defining Unicode char U+02DD (decimal 733)
|
||||
defining Unicode char U+0E3F (decimal 3647)
|
||||
defining Unicode char U+2016 (decimal 8214)
|
||||
defining Unicode char U+2020 (decimal 8224)
|
||||
defining Unicode char U+2021 (decimal 8225)
|
||||
defining Unicode char U+2022 (decimal 8226)
|
||||
defining Unicode char U+2030 (decimal 8240)
|
||||
defining Unicode char U+2031 (decimal 8241)
|
||||
defining Unicode char U+203B (decimal 8251)
|
||||
defining Unicode char U+203D (decimal 8253)
|
||||
defining Unicode char U+2044 (decimal 8260)
|
||||
defining Unicode char U+204E (decimal 8270)
|
||||
defining Unicode char U+2052 (decimal 8274)
|
||||
defining Unicode char U+20A1 (decimal 8353)
|
||||
defining Unicode char U+20A4 (decimal 8356)
|
||||
defining Unicode char U+20A6 (decimal 8358)
|
||||
defining Unicode char U+20A9 (decimal 8361)
|
||||
defining Unicode char U+20AB (decimal 8363)
|
||||
defining Unicode char U+20AC (decimal 8364)
|
||||
defining Unicode char U+20B1 (decimal 8369)
|
||||
defining Unicode char U+2103 (decimal 8451)
|
||||
defining Unicode char U+2116 (decimal 8470)
|
||||
defining Unicode char U+2117 (decimal 8471)
|
||||
defining Unicode char U+211E (decimal 8478)
|
||||
defining Unicode char U+2120 (decimal 8480)
|
||||
defining Unicode char U+2122 (decimal 8482)
|
||||
defining Unicode char U+2126 (decimal 8486)
|
||||
defining Unicode char U+2127 (decimal 8487)
|
||||
defining Unicode char U+212E (decimal 8494)
|
||||
defining Unicode char U+2190 (decimal 8592)
|
||||
defining Unicode char U+2191 (decimal 8593)
|
||||
defining Unicode char U+2192 (decimal 8594)
|
||||
defining Unicode char U+2193 (decimal 8595)
|
||||
defining Unicode char U+2329 (decimal 9001)
|
||||
defining Unicode char U+232A (decimal 9002)
|
||||
defining Unicode char U+2422 (decimal 9250)
|
||||
defining Unicode char U+25E6 (decimal 9702)
|
||||
defining Unicode char U+25EF (decimal 9711)
|
||||
defining Unicode char U+266A (decimal 9834)
|
||||
defining Unicode char U+FEFF (decimal 65279)
|
||||
))
|
||||
LaTeX Info: Redefining \oldstylenums on input line 334.
|
||||
Package textcomp Info: Setting cmr sub-encoding to TS1/0 on input line 349.
|
||||
Package textcomp Info: Setting cmss sub-encoding to TS1/0 on input line 350.
|
||||
Package textcomp Info: Setting cmtt sub-encoding to TS1/0 on input line 351.
|
||||
Package textcomp Info: Setting cmvtt sub-encoding to TS1/0 on input line 352.
|
||||
Package textcomp Info: Setting cmbr sub-encoding to TS1/0 on input line 353.
|
||||
Package textcomp Info: Setting cmtl sub-encoding to TS1/0 on input line 354.
|
||||
Package textcomp Info: Setting ccr sub-encoding to TS1/0 on input line 355.
|
||||
Package textcomp Info: Setting ptm sub-encoding to TS1/4 on input line 356.
|
||||
Package textcomp Info: Setting pcr sub-encoding to TS1/4 on input line 357.
|
||||
Package textcomp Info: Setting phv sub-encoding to TS1/4 on input line 358.
|
||||
Package textcomp Info: Setting ppl sub-encoding to TS1/3 on input line 359.
|
||||
Package textcomp Info: Setting pag sub-encoding to TS1/4 on input line 360.
|
||||
Package textcomp Info: Setting pbk sub-encoding to TS1/4 on input line 361.
|
||||
Package textcomp Info: Setting pnc sub-encoding to TS1/4 on input line 362.
|
||||
Package textcomp Info: Setting pzc sub-encoding to TS1/4 on input line 363.
|
||||
Package textcomp Info: Setting bch sub-encoding to TS1/4 on input line 364.
|
||||
Package textcomp Info: Setting put sub-encoding to TS1/5 on input line 365.
|
||||
Package textcomp Info: Setting uag sub-encoding to TS1/5 on input line 366.
|
||||
Package textcomp Info: Setting ugq sub-encoding to TS1/5 on input line 367.
|
||||
Package textcomp Info: Setting ul8 sub-encoding to TS1/4 on input line 368.
|
||||
Package textcomp Info: Setting ul9 sub-encoding to TS1/4 on input line 369.
|
||||
Package textcomp Info: Setting augie sub-encoding to TS1/5 on input line 370.
|
||||
Package textcomp Info: Setting dayrom sub-encoding to TS1/3 on input line 371.
|
||||
Package textcomp Info: Setting dayroms sub-encoding to TS1/3 on input line 372.
|
||||
|
||||
Package textcomp Info: Setting pxr sub-encoding to TS1/0 on input line 373.
|
||||
Package textcomp Info: Setting pxss sub-encoding to TS1/0 on input line 374.
|
||||
Package textcomp Info: Setting pxtt sub-encoding to TS1/0 on input line 375.
|
||||
Package textcomp Info: Setting txr sub-encoding to TS1/0 on input line 376.
|
||||
Package textcomp Info: Setting txss sub-encoding to TS1/0 on input line 377.
|
||||
Package textcomp Info: Setting txtt sub-encoding to TS1/0 on input line 378.
|
||||
Package textcomp Info: Setting lmr sub-encoding to TS1/0 on input line 379.
|
||||
Package textcomp Info: Setting lmdh sub-encoding to TS1/0 on input line 380.
|
||||
Package textcomp Info: Setting lmss sub-encoding to TS1/0 on input line 381.
|
||||
Package textcomp Info: Setting lmssq sub-encoding to TS1/0 on input line 382.
|
||||
Package textcomp Info: Setting lmvtt sub-encoding to TS1/0 on input line 383.
|
||||
Package textcomp Info: Setting lmtt sub-encoding to TS1/0 on input line 384.
|
||||
Package textcomp Info: Setting qhv sub-encoding to TS1/0 on input line 385.
|
||||
Package textcomp Info: Setting qag sub-encoding to TS1/0 on input line 386.
|
||||
Package textcomp Info: Setting qbk sub-encoding to TS1/0 on input line 387.
|
||||
Package textcomp Info: Setting qcr sub-encoding to TS1/0 on input line 388.
|
||||
Package textcomp Info: Setting qcs sub-encoding to TS1/0 on input line 389.
|
||||
Package textcomp Info: Setting qpl sub-encoding to TS1/0 on input line 390.
|
||||
Package textcomp Info: Setting qtm sub-encoding to TS1/0 on input line 391.
|
||||
Package textcomp Info: Setting qzc sub-encoding to TS1/0 on input line 392.
|
||||
Package textcomp Info: Setting qhvc sub-encoding to TS1/0 on input line 393.
|
||||
Package textcomp Info: Setting futs sub-encoding to TS1/4 on input line 394.
|
||||
Package textcomp Info: Setting futx sub-encoding to TS1/4 on input line 395.
|
||||
Package textcomp Info: Setting futj sub-encoding to TS1/4 on input line 396.
|
||||
Package textcomp Info: Setting hlh sub-encoding to TS1/3 on input line 397.
|
||||
Package textcomp Info: Setting hls sub-encoding to TS1/3 on input line 398.
|
||||
Package textcomp Info: Setting hlst sub-encoding to TS1/3 on input line 399.
|
||||
Package textcomp Info: Setting hlct sub-encoding to TS1/5 on input line 400.
|
||||
Package textcomp Info: Setting hlx sub-encoding to TS1/5 on input line 401.
|
||||
Package textcomp Info: Setting hlce sub-encoding to TS1/5 on input line 402.
|
||||
Package textcomp Info: Setting hlcn sub-encoding to TS1/5 on input line 403.
|
||||
Package textcomp Info: Setting hlcw sub-encoding to TS1/5 on input line 404.
|
||||
Package textcomp Info: Setting hlcf sub-encoding to TS1/5 on input line 405.
|
||||
Package textcomp Info: Setting pplx sub-encoding to TS1/3 on input line 406.
|
||||
Package textcomp Info: Setting pplj sub-encoding to TS1/3 on input line 407.
|
||||
Package textcomp Info: Setting ptmx sub-encoding to TS1/4 on input line 408.
|
||||
Package textcomp Info: Setting ptmj sub-encoding to TS1/4 on input line 409.
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/amsmath/amsmath.sty
|
||||
Package: amsmath 2017/09/02 v2.17a AMS math features
|
||||
\@mathmargin=\skip43
|
||||
|
||||
For additional information on amsmath, use the `?' option.
|
||||
(/usr/share/texmf-dist/tex/latex/amsmath/amstext.sty
|
||||
Package: amstext 2000/06/29 v2.01 AMS text
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/amsmath/amsgen.sty
|
||||
File: amsgen.sty 1999/11/30 v2.0 generic functions
|
||||
\@emptytoks=\toks19
|
||||
\ex@=\dimen112
|
||||
))
|
||||
(/usr/share/texmf-dist/tex/latex/amsmath/amsbsy.sty
|
||||
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
|
||||
\pmbraise@=\dimen113
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/amsmath/amsopn.sty
|
||||
Package: amsopn 2016/03/08 v2.02 operator names
|
||||
)
|
||||
\inf@bad=\count100
|
||||
LaTeX Info: Redefining \frac on input line 213.
|
||||
\uproot@=\count101
|
||||
\leftroot@=\count102
|
||||
LaTeX Info: Redefining \overline on input line 375.
|
||||
\classnum@=\count103
|
||||
\DOTSCASE@=\count104
|
||||
LaTeX Info: Redefining \ldots on input line 472.
|
||||
LaTeX Info: Redefining \dots on input line 475.
|
||||
LaTeX Info: Redefining \cdots on input line 596.
|
||||
\Mathstrutbox@=\box26
|
||||
\strutbox@=\box27
|
||||
\big@size=\dimen114
|
||||
LaTeX Font Info: Redeclaring font encoding OML on input line 712.
|
||||
LaTeX Font Info: Redeclaring font encoding OMS on input line 713.
|
||||
\macc@depth=\count105
|
||||
\c@MaxMatrixCols=\count106
|
||||
\dotsspace@=\muskip10
|
||||
\c@parentequation=\count107
|
||||
\dspbrk@lvl=\count108
|
||||
\tag@help=\toks20
|
||||
\row@=\count109
|
||||
\column@=\count110
|
||||
\maxfields@=\count111
|
||||
\andhelp@=\toks21
|
||||
\eqnshift@=\dimen115
|
||||
\alignsep@=\dimen116
|
||||
\tagshift@=\dimen117
|
||||
\tagwidth@=\dimen118
|
||||
\totwidth@=\dimen119
|
||||
\lineht@=\dimen120
|
||||
\@envbody=\toks22
|
||||
\multlinegap=\skip44
|
||||
\multlinetaggap=\skip45
|
||||
\mathdisplay@stack=\toks23
|
||||
LaTeX Info: Redefining \[ on input line 2817.
|
||||
LaTeX Info: Redefining \] on input line 2818.
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/cancel/cancel.sty
|
||||
Package: cancel 2013/04/12 v2.2 Cancel math terms
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/units/nicefrac.sty
|
||||
Package: nicefrac 1998/08/04 v0.9b Nice fractions
|
||||
\L@UnitsRaiseDisplaystyle=\skip46
|
||||
\L@UnitsRaiseTextstyle=\skip47
|
||||
\L@UnitsRaiseScriptstyle=\skip48
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/base/ifthen.sty
|
||||
Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC)
|
||||
))
|
||||
(/usr/share/texmf-dist/tex/latex/caption/caption.sty
|
||||
Package: caption 2018/10/06 v3.3-154 Customizing captions (AR)
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/caption/caption3.sty
|
||||
Package: caption3 2018/09/12 v1.8c caption3 kernel (AR)
|
||||
Package caption3 Info: TeX engine: e-TeX on input line 64.
|
||||
\captionmargin=\dimen121
|
||||
\captionmargin@=\dimen122
|
||||
\captionwidth=\dimen123
|
||||
\caption@tempdima=\dimen124
|
||||
\caption@indent=\dimen125
|
||||
\caption@parindent=\dimen126
|
||||
\caption@hangindent=\dimen127
|
||||
)
|
||||
\c@caption@flags=\count112
|
||||
\c@ContinuedFloat=\count113
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty
|
||||
Package: fancyhdr 2017/06/30 v3.9a Extensive control of page headers and footer
|
||||
s
|
||||
\f@nch@headwidth=\skip49
|
||||
\f@nch@O@elh=\skip50
|
||||
\f@nch@O@erh=\skip51
|
||||
\f@nch@O@olh=\skip52
|
||||
\f@nch@O@orh=\skip53
|
||||
\f@nch@O@elf=\skip54
|
||||
\f@nch@O@erf=\skip55
|
||||
\f@nch@O@olf=\skip56
|
||||
\f@nch@O@orf=\skip57
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/hyperref/hyperref.sty
|
||||
Package: hyperref 2018/09/30 v6.88a Hypertext links for LaTeX
|
||||
|
||||
(/usr/share/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty
|
||||
Package: hobsub-hyperref 2016/05/16 v1.14 Bundle oberdiek, subset hyperref (HO)
|
||||
|
||||
|
||||
(/usr/share/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty
|
||||
Package: hobsub-generic 2016/05/16 v1.14 Bundle oberdiek, subset generic (HO)
|
||||
Package: hobsub 2016/05/16 v1.14 Construct package bundles (HO)
|
||||
Package: infwarerr 2016/05/16 v1.4 Providing info/warning/error messages (HO)
|
||||
Package: ltxcmds 2016/05/16 v1.23 LaTeX kernel commands for general use (HO)
|
||||
Package: ifluatex 2016/05/16 v1.4 Provides the ifluatex switch (HO)
|
||||
Package ifluatex Info: LuaTeX not detected.
|
||||
Package hobsub Info: Skipping package `ifvtex' (already loaded).
|
||||
Package: intcalc 2016/05/16 v1.2 Expandable calculations with integers (HO)
|
||||
Package hobsub Info: Skipping package `ifpdf' (already loaded).
|
||||
Package: etexcmds 2016/05/16 v1.6 Avoid name clashes with e-TeX commands (HO)
|
||||
Package etexcmds Info: Could not find \expanded.
|
||||
(etexcmds) That can mean that you are not using pdfTeX 1.50 or
|
||||
(etexcmds) that some package has redefined \expanded.
|
||||
(etexcmds) In the latter case, load this package earlier.
|
||||
Package: kvsetkeys 2016/05/16 v1.17 Key value parser (HO)
|
||||
Package: kvdefinekeys 2016/05/16 v1.4 Define keys (HO)
|
||||
Package: pdftexcmds 2018/09/10 v0.29 Utility functions of pdfTeX for LuaTeX (HO
|
||||
)
|
||||
Package pdftexcmds Info: LuaTeX not detected.
|
||||
Package pdftexcmds Info: \pdf@primitive is available.
|
||||
Package pdftexcmds Info: \pdf@ifprimitive is available.
|
||||
Package pdftexcmds Info: \pdfdraftmode found.
|
||||
Package: pdfescape 2016/05/16 v1.14 Implements pdfTeX's escape features (HO)
|
||||
Package: bigintcalc 2016/05/16 v1.4 Expandable calculations on big integers (HO
|
||||
)
|
||||
Package: bitset 2016/05/16 v1.2 Handle bit-vector datatype (HO)
|
||||
Package: uniquecounter 2016/05/16 v1.3 Provide unlimited unique counter (HO)
|
||||
)
|
||||
Package hobsub Info: Skipping package `hobsub' (already loaded).
|
||||
Package: letltxmacro 2016/05/16 v1.5 Let assignment for LaTeX macros (HO)
|
||||
Package: hopatch 2016/05/16 v1.3 Wrapper for package hooks (HO)
|
||||
Package: xcolor-patch 2016/05/16 xcolor patch
|
||||
Package: atveryend 2016/05/16 v1.9 Hooks at the very end of document (HO)
|
||||
Package: atbegshi 2016/06/09 v1.18 At begin shipout hook (HO)
|
||||
Package: refcount 2016/05/16 v3.5 Data extraction from label references (HO)
|
||||
Package: hycolor 2016/05/16 v1.8 Color options for hyperref/bookmark (HO)
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/oberdiek/auxhook.sty
|
||||
Package: auxhook 2016/05/16 v1.4 Hooks for auxiliary files (HO)
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/oberdiek/kvoptions.sty
|
||||
Package: kvoptions 2016/05/16 v3.12 Key value format for package options (HO)
|
||||
)
|
||||
\@linkdim=\dimen128
|
||||
\Hy@linkcounter=\count114
|
||||
\Hy@pagecounter=\count115
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/hyperref/pd1enc.def
|
||||
File: pd1enc.def 2018/09/30 v6.88a Hyperref: PDFDocEncoding definition (HO)
|
||||
Now handling font encoding PD1 ...
|
||||
... no UTF-8 mapping file for font encoding PD1
|
||||
)
|
||||
\Hy@SavedSpaceFactor=\count116
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/latexconfig/hyperref.cfg
|
||||
File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive
|
||||
)
|
||||
Package hyperref Info: Hyper figures OFF on input line 4535.
|
||||
Package hyperref Info: Link nesting OFF on input line 4540.
|
||||
Package hyperref Info: Hyper index ON on input line 4543.
|
||||
Package hyperref Info: Plain pages OFF on input line 4550.
|
||||
Package hyperref Info: Backreferencing OFF on input line 4555.
|
||||
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
|
||||
Package hyperref Info: Bookmarks ON on input line 4788.
|
||||
\c@Hy@tempcnt=\count117
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/url/url.sty
|
||||
\Urlmuskip=\muskip11
|
||||
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
|
||||
)
|
||||
LaTeX Info: Redefining \url on input line 5141.
|
||||
\XeTeXLinkMargin=\dimen129
|
||||
\Fld@menulength=\count118
|
||||
\Field@Width=\dimen130
|
||||
\Fld@charsize=\dimen131
|
||||
Package hyperref Info: Hyper figures OFF on input line 6396.
|
||||
Package hyperref Info: Link nesting OFF on input line 6401.
|
||||
Package hyperref Info: Hyper index ON on input line 6404.
|
||||
Package hyperref Info: backreferencing OFF on input line 6411.
|
||||
Package hyperref Info: Link coloring OFF on input line 6416.
|
||||
Package hyperref Info: Link coloring with OCG OFF on input line 6421.
|
||||
Package hyperref Info: PDF/A mode OFF on input line 6426.
|
||||
LaTeX Info: Redefining \ref on input line 6466.
|
||||
LaTeX Info: Redefining \pageref on input line 6470.
|
||||
\Hy@abspage=\count119
|
||||
\c@Item=\count120
|
||||
\c@Hfootnote=\count121
|
||||
)
|
||||
Package hyperref Info: Driver (autodetected): hpdftex.
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/hyperref/hpdftex.def
|
||||
File: hpdftex.def 2018/09/30 v6.88a Hyperref driver for pdfTeX
|
||||
\Fld@listcount=\count122
|
||||
\c@bookmark@seq@number=\count123
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty
|
||||
Package: rerunfilecheck 2016/05/16 v1.8 Rerun checks for auxiliary files (HO)
|
||||
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
|
||||
82.
|
||||
)
|
||||
\Hy@SectionHShift=\skip58
|
||||
)
|
||||
|
||||
Package hyperref Warning: Option `pdftex' has already been used,
|
||||
(hyperref) setting the option has no effect on input line 72.
|
||||
|
||||
|
||||
Package hyperref Warning: Unexpected value for option `hidelinks'
|
||||
(hyperref) is ignored on input line 72.
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/tools/multicol.sty
|
||||
Package: multicol 2018/04/20 v1.8s multicolumn formatting (FMi)
|
||||
\c@tracingmulticols=\count124
|
||||
\mult@box=\box28
|
||||
\multicol@leftmargin=\dimen132
|
||||
\c@unbalance=\count125
|
||||
\c@collectmore=\count126
|
||||
\doublecol@number=\count127
|
||||
\multicoltolerance=\count128
|
||||
\multicolpretolerance=\count129
|
||||
\full@width=\dimen133
|
||||
\page@free=\dimen134
|
||||
\premulticols=\dimen135
|
||||
\postmulticols=\dimen136
|
||||
\multicolsep=\skip59
|
||||
\multicolbaselineskip=\skip60
|
||||
\partial@page=\box29
|
||||
\last@line=\box30
|
||||
\maxbalancingoverflow=\dimen137
|
||||
\mult@rightbox=\box31
|
||||
\mult@grightbox=\box32
|
||||
\mult@gfirstbox=\box33
|
||||
\mult@firstbox=\box34
|
||||
\@tempa=\box35
|
||||
\@tempa=\box36
|
||||
\@tempa=\box37
|
||||
\@tempa=\box38
|
||||
\@tempa=\box39
|
||||
\@tempa=\box40
|
||||
\@tempa=\box41
|
||||
\@tempa=\box42
|
||||
\@tempa=\box43
|
||||
\@tempa=\box44
|
||||
\@tempa=\box45
|
||||
\@tempa=\box46
|
||||
\@tempa=\box47
|
||||
\@tempa=\box48
|
||||
\@tempa=\box49
|
||||
\@tempa=\box50
|
||||
\@tempa=\box51
|
||||
\c@columnbadness=\count130
|
||||
\c@finalcolumnbadness=\count131
|
||||
\last@try=\dimen138
|
||||
\multicolovershoot=\dimen139
|
||||
\multicolundershoot=\dimen140
|
||||
\mult@nat@firstbox=\box52
|
||||
\colbreak@box=\box53
|
||||
\mc@col@check@num=\count132
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty
|
||||
Package: xcolor 2016/05/11 v2.12 LaTeX color extensions (UK)
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg
|
||||
File: color.cfg 2016/01/02 v1.6 sample color configuration
|
||||
)
|
||||
Package xcolor Info: Package option `usenames' ignored on input line 216.
|
||||
Package xcolor Info: Driver file: pdftex.def on input line 225.
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def
|
||||
File: pdftex.def 2018/01/08 v1.0l Graphics/color driver for pdftex
|
||||
)
|
||||
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1348.
|
||||
Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1352.
|
||||
Package xcolor Info: Model `RGB' extended on input line 1364.
|
||||
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1366.
|
||||
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1367.
|
||||
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1368.
|
||||
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1369.
|
||||
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1370.
|
||||
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1371.
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/graphics/dvipsnam.def
|
||||
File: dvipsnam.def 2016/06/17 v3.0m Driver-dependent file (DPC,SPQR)
|
||||
))
|
||||
(/usr/share/texmf-dist/tex/latex/graphics/graphicx.sty
|
||||
Package: graphicx 2017/06/01 v1.1a Enhanced LaTeX Graphics (DPC,SPQR)
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/graphics/graphics.sty
|
||||
Package: graphics 2017/06/25 v1.2c Standard LaTeX Graphics (DPC,SPQR)
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/graphics/trig.sty
|
||||
Package: trig 2016/01/03 v1.10 sin cos tan (DPC)
|
||||
)
|
||||
(/usr/share/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 99.
|
||||
)
|
||||
\Gin@req@height=\dimen141
|
||||
\Gin@req@width=\dimen142
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/listings/listings.sty
|
||||
\lst@mode=\count133
|
||||
\lst@gtempboxa=\box54
|
||||
\lst@token=\toks24
|
||||
\lst@length=\count134
|
||||
\lst@currlwidth=\dimen143
|
||||
\lst@column=\count135
|
||||
\lst@pos=\count136
|
||||
\lst@lostspace=\dimen144
|
||||
\lst@width=\dimen145
|
||||
\lst@newlines=\count137
|
||||
\lst@lineno=\count138
|
||||
\lst@maxwidth=\dimen146
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/listings/lstmisc.sty
|
||||
File: lstmisc.sty 2018/09/02 1.7 (Carsten Heinz)
|
||||
\c@lstnumber=\count139
|
||||
\lst@skipnumbers=\count140
|
||||
\lst@framebox=\box55
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/listings/listings.cfg
|
||||
File: listings.cfg 2018/09/02 1.7 listings configuration
|
||||
))
|
||||
Package: listings 2018/09/02 1.7 (Carsten Heinz)
|
||||
|
||||
(build/LibroArduino.aux)
|
||||
\openout1 = `LibroArduino.aux'.
|
||||
|
||||
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 146.
|
||||
LaTeX Font Info: ... okay on input line 146.
|
||||
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 146.
|
||||
LaTeX Font Info: ... okay on input line 146.
|
||||
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 146.
|
||||
LaTeX Font Info: ... okay on input line 146.
|
||||
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 146.
|
||||
LaTeX Font Info: ... okay on input line 146.
|
||||
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 146.
|
||||
LaTeX Font Info: ... okay on input line 146.
|
||||
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 146.
|
||||
LaTeX Font Info: ... okay on input line 146.
|
||||
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 146.
|
||||
LaTeX Font Info: Try loading font information for TS1+cmr on input line 146.
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/base/ts1cmr.fd
|
||||
File: ts1cmr.fd 2014/09/29 v2.5h Standard LaTeX font definitions
|
||||
)
|
||||
LaTeX Font Info: ... okay on input line 146.
|
||||
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 146.
|
||||
LaTeX Font Info: ... okay on input line 146.
|
||||
LaTeX Font Info: Try loading font information for T1+iwonal on input line 14
|
||||
6.
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/iwona/t1iwonal.fd
|
||||
File: t1iwonal.fd 2008/07/22 v0.995 font definition file for T1/iwonal (MW)
|
||||
)
|
||||
*geometry* driver: auto-detecting
|
||||
*geometry* detected driver: pdftex
|
||||
*geometry* verbose mode - [ preamble ] result:
|
||||
* driver: pdftex
|
||||
* paper: custom
|
||||
* layout: <same size as paper>
|
||||
* layoutoffset:(h,v)=(0.0pt,0.0pt)
|
||||
* hratio: 1:1
|
||||
* vratio: 1:1
|
||||
* modes: twoside
|
||||
* h-part:(L,W,R)=(56.9055pt, 369.88583pt, 56.9055pt)
|
||||
* v-part:(T,H,B)=(71.13188pt, 540.60237pt, 71.13188pt)
|
||||
* \paperwidth=483.69684pt
|
||||
* \paperheight=682.86613pt
|
||||
* \textwidth=369.88583pt
|
||||
* \textheight=540.60237pt
|
||||
* \oddsidemargin=-15.36449pt
|
||||
* \evensidemargin=-15.36449pt
|
||||
* \topmargin=-33.0119pt
|
||||
* \headheight=12.0pt
|
||||
* \headsep=19.8738pt
|
||||
* \topskip=12.0pt
|
||||
* \footskip=30.0pt
|
||||
* \marginparwidth=98.0pt
|
||||
* \marginparsep=7.0pt
|
||||
* \columnsep=10.0pt
|
||||
* \skip\footins=10.8pt plus 4.0pt minus 2.0pt
|
||||
* \hoffset=0.0pt
|
||||
* \voffset=0.0pt
|
||||
* \mag=1000
|
||||
* \@twocolumnfalse
|
||||
* \@twosidetrue
|
||||
* \@mparswitchtrue
|
||||
* \@reversemarginfalse
|
||||
* (1in=72.27pt=25.4mm, 1cm=28.453pt)
|
||||
|
||||
LaTeX Info: Redefining \it@ocap on input line 146.
|
||||
LaTeX Info: Redefining \it@ccap on input line 146.
|
||||
Package caption Info: Begin \AtBeginDocument code.
|
||||
Package caption Info: hyperref package is loaded.
|
||||
Package caption Info: listings package is loaded.
|
||||
Package caption Info: End \AtBeginDocument code.
|
||||
\AtBeginShipoutBox=\box56
|
||||
Package hyperref Info: Link coloring OFF on input line 146.
|
||||
(/usr/share/texmf-dist/tex/latex/hyperref/nameref.sty
|
||||
Package: nameref 2016/05/21 v2.44 Cross-referencing by name of section
|
||||
|
||||
(/usr/share/texmf-dist/tex/generic/oberdiek/gettitlestring.sty
|
||||
Package: gettitlestring 2016/05/16 v1.5 Cleanup title references (HO)
|
||||
)
|
||||
\c@section@level=\count141
|
||||
)
|
||||
LaTeX Info: Redefining \ref on input line 146.
|
||||
LaTeX Info: Redefining \pageref on input line 146.
|
||||
LaTeX Info: Redefining \nameref on input line 146.
|
||||
|
||||
(build/LibroArduino.out) (build/LibroArduino.out)
|
||||
\@outlinefile=\write3
|
||||
\openout3 = `LibroArduino.out'.
|
||||
|
||||
|
||||
(/usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
|
||||
[Loading MPS to PDF converter (version 2006.09.02).]
|
||||
\scratchcounter=\count142
|
||||
\scratchdimen=\dimen147
|
||||
\scratchbox=\box57
|
||||
\nofMPsegments=\count143
|
||||
\nofMParguments=\count144
|
||||
\everyMPshowfont=\toks25
|
||||
\MPscratchCnt=\count145
|
||||
\MPscratchDim=\dimen148
|
||||
\MPnumerator=\count146
|
||||
\makeMPintoPDFobject=\count147
|
||||
\everyMPtoPDFconversion=\toks26
|
||||
) (/usr/share/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty
|
||||
Package: epstopdf-base 2016/05/15 v2.6 Base part for package epstopdf
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/oberdiek/grfext.sty
|
||||
Package: grfext 2016/05/16 v1.2 Manage graphics extensions (HO)
|
||||
)
|
||||
Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4
|
||||
38.
|
||||
Package grfext Info: Graphics extension search list:
|
||||
(grfext) [.pdf,.png,.jpg,.mps,.jpeg,.jbig2,.jb2,.PDF,.PNG,.JPG,.JPE
|
||||
G,.JBIG2,.JB2,.eps]
|
||||
(grfext) \AppendGraphicsExtensions on input line 456.
|
||||
|
||||
(/usr/share/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
|
||||
))
|
||||
\c@lstlisting=\count148
|
||||
|
||||
Underfull \hbox (badness 10000) in paragraph at lines 147--148
|
||||
|
||||
[]
|
||||
|
||||
LaTeX Font Info: Try loading font information for OT1+iwonalm on input line
|
||||
149.
|
||||
(/usr/share/texmf-dist/tex/latex/iwona/ot1iwonalm.fd
|
||||
File: ot1iwonalm.fd 2005/10/05 v1.2 font definition file for OT1/iwonalm (MW)
|
||||
)
|
||||
LaTeX Font Info: Try loading font information for OML+iwonal on input line 1
|
||||
49.
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/iwona/omliwonal.fd
|
||||
File: omliwonal.fd 2008/07/22 v0.995 font definition file for OML/iwonal (MW)
|
||||
)
|
||||
LaTeX Font Info: Try loading font information for OMS+iwonal on input line 1
|
||||
49.
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/iwona/omsiwonal.fd
|
||||
File: omsiwonal.fd 2008/07/22 v0.995 font definition file for OMS/iwonal (MW)
|
||||
)
|
||||
LaTeX Font Info: Try loading font information for OMX+iwonal on input line 1
|
||||
49.
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/iwona/omxiwonal.fd
|
||||
File: omxiwonal.fd 2008/07/22 v0.995 font definition file for OMX/iwonal (MW)
|
||||
)
|
||||
LaTeX Font Info: Try loading font information for U+msa on input line 149.
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/amsfonts/umsa.fd
|
||||
File: umsa.fd 2013/01/14 v3.01 AMS symbols A
|
||||
)
|
||||
LaTeX Font Info: Try loading font information for U+msb on input line 149.
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/amsfonts/umsb.fd
|
||||
File: umsb.fd 2013/01/14 v3.01 AMS symbols B
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/listings/lstlang1.sty
|
||||
File: lstlang1.sty 2018/09/02 1.7 listings language file
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/listings/lstmisc.sty
|
||||
File: lstmisc.sty 2018/09/02 1.7 (Carsten Heinz)
|
||||
)
|
||||
LaTeX Font Info: Try loading font information for T1+pcr on input line 165.
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/psnfss/t1pcr.fd
|
||||
File: t1pcr.fd 2001/06/04 font definitions for T1/pcr.
|
||||
)
|
||||
Package atveryend Info: Empty hook `BeforeClearDocument' on input line 169.
|
||||
|
||||
|
||||
Package Fancyhdr Warning: \headheight is too small (12.0pt):
|
||||
Make it at least 14.49998pt.
|
||||
We now make it that large for the rest of the document.
|
||||
This may cause the page layout to be inconsistent, however.
|
||||
|
||||
[1
|
||||
|
||||
{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}]
|
||||
Package atveryend Info: Empty hook `AfterLastShipout' on input line 169.
|
||||
(build/LibroArduino.aux)
|
||||
Package atveryend Info: Executing hook `AtVeryEndDocument' on input line 169.
|
||||
Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 169.
|
||||
Package rerunfilecheck Info: File `LibroArduino.out' has not changed.
|
||||
(rerunfilecheck) Checksum: <no file>.
|
||||
)
|
||||
Here is how much of TeX's memory you used:
|
||||
11941 strings out of 492639
|
||||
169334 string characters out of 6135497
|
||||
467686 words of memory out of 5000000
|
||||
15631 multiletter control sequences out of 15000+600000
|
||||
54822 words of font info for 65 fonts, out of 8000000 for 9000
|
||||
1141 hyphenation exceptions out of 8191
|
||||
36i,11n,58p,777b,1333s stack positions out of 5000i,500n,10000p,200000b,80000s
|
||||
{/usr/share/texmf-dist/fonts/enc/dvips/base/8r.enc}{/usr/share/texmf-dist/fon
|
||||
ts/enc/dvips/iwona/ex-iwona.enc}{/usr/share/texmf-dist/fonts/enc/dvips/iwona/sy
|
||||
-iwona.enc}{/usr/share/texmf-dist/fonts/enc/dvips/iwona/rm-iwona.enc}{/usr/shar
|
||||
e/texmf-dist/fonts/enc/dvips/iwona/mi-iwona.enc}{/usr/share/texmf-dist/fonts/en
|
||||
c/dvips/iwona/ec-iwona.enc}</usr/share/texmf-dist/fonts/type1/nowacki/iwona/iwo
|
||||
nal.pfb></usr/share/texmf-dist/fonts/type1/nowacki/iwona/iwonali.pfb></usr/shar
|
||||
e/texmf-dist/fonts/type1/nowacki/iwona/iwonam.pfb></usr/share/texmf-dist/fonts/
|
||||
type1/public/amsfonts/latxfont/line10.pfb></usr/share/texmf-dist/fonts/type1/ur
|
||||
w/courier/ucrb8a.pfb></usr/share/texmf-dist/fonts/type1/urw/courier/ucrr8a.pfb>
|
||||
|
||||
Output written on build/LibroArduino.pdf (1 page, 82278 bytes).
|
||||
PDF statistics:
|
||||
51 PDF objects out of 1000 (max. 8388607)
|
||||
41 compressed objects within 1 object stream
|
||||
4 named destinations out of 1000 (max. 500000)
|
||||
1 words of extra memory for PDF output out of 10000 (max. 10000000)
|
||||
|
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,70 @@
|
|||
### VECTOR images conversion parameters ###
|
||||
ORG_DIR = ./img/originals
|
||||
VEC_DIR = ./img/vectors
|
||||
|
||||
# ...from SVG
|
||||
SVG_PREFIX = svg
|
||||
SVGF = $(notdir $(wildcard $(ORG_DIR)/*.svg))
|
||||
vpath %.svg $(ORG_DIR)
|
||||
|
||||
# ...from TEX
|
||||
TEX_PREFIX = tex
|
||||
TEXF = $(notdir $(wildcard $(ORG_DIR)/*.tex))
|
||||
vpath %.tex $(ORG_DIR)
|
||||
|
||||
# ...to PDF
|
||||
PDF = $(SVGF:.svg=_$(SVG_PREFIX).pdf)
|
||||
PDF += $(TEXF:.tex=_$(TEX_PREFIX).pdf)
|
||||
|
||||
vpath %.pdf $(VEC_DIR)
|
||||
|
||||
### Select all raster ###
|
||||
RAST_DIR = ./img/rasters
|
||||
RASTF = $(wildcard $(RAST_DIR)/*)
|
||||
|
||||
### TEX files ###
|
||||
TEX_DIR = ./tex
|
||||
# TEX_DIR+= ./antani
|
||||
# ...
|
||||
|
||||
TEX = $(foreach dir,$(TEX_DIR),$(wildcard $(dir)/*.tex))
|
||||
|
||||
vpath %.tex $(TEX_DIR)
|
||||
|
||||
help:
|
||||
@echo "Type make dist/yourfile.pdf"
|
||||
|
||||
dist/%.pdf: %.tex $(RASTF) $(TEX) $(PDF) makefile
|
||||
@mkdir -p build
|
||||
@if [ -t 1 ]; then echo -e "\033[1;33m[Mashup ]\033[0m main.tex"; else echo "Mashup"; fi
|
||||
@pdflatex -output-directory build -synctex=1 -interaction=nonstopmode $< > /dev/null
|
||||
@pdflatex -output-directory build -synctex=1 -interaction=nonstopmode $< > /dev/null
|
||||
mv build/$(basename $<).pdf $@
|
||||
|
||||
vectors: $(PDF)
|
||||
|
||||
%_tex.pdf : %.tex
|
||||
@mkdir -p $(VEC_DIR)
|
||||
@if [ -t 1 ]; then echo -e "\033[1;32m[Figure TEX ]\033[0m $^ $@"; else echo "[Figure TEX ] $^ $@"; fi
|
||||
@pdflatex -jobname $(@:.pdf=) -output-directory $(VEC_DIR) $^ > /dev/null
|
||||
|
||||
%_svg.pdf : %.svg
|
||||
@mkdir -p $(VEC_DIR)
|
||||
@if [ -t 1 ]; then echo -e "\033[1;32m[Figure SVG ]\033[0m $^"; else echo "[Figure SVG ] $^"; fi
|
||||
@inkscape -z -C --file=$^ --export-pdf=$(VEC_DIR)/$@ > /dev/null
|
||||
|
||||
tree:
|
||||
mkdir -p $(VEC_DIR)
|
||||
mkdir -p $(ORG_DIR)
|
||||
mkdir -p $(RAST_DIR)
|
||||
mkdir -p $(TEX_DIR)
|
||||
mkdir -p build
|
||||
mkdir -p dist
|
||||
cd build && mkdir -p $(TEX_DIR)
|
||||
|
||||
clean:
|
||||
rm -rf build
|
||||
rm -rf $(VEC_DIR)
|
||||
|
||||
mrproper: build
|
||||
rm -rf dist
|
Loading…
Reference in New Issue