Update config
This commit is contained in:
parent
67611045ed
commit
7a0ab2ac5b
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,3 +1,6 @@
|
|||||||
|
*.mlf*
|
||||||
|
*.mlt*
|
||||||
|
|
||||||
## Core latex/pdflatex auxiliary files:
|
## Core latex/pdflatex auxiliary files:
|
||||||
*.aux
|
*.aux
|
||||||
*.mtc
|
*.mtc
|
||||||
|
39
config.tex
39
config.tex
@ -27,6 +27,10 @@
|
|||||||
|
|
||||||
\usepackage{booktabs}
|
\usepackage{booktabs}
|
||||||
\usepackage{multirow}
|
\usepackage{multirow}
|
||||||
|
\usepackage{tabularx}
|
||||||
|
|
||||||
|
\usepackage{floatrow}
|
||||||
|
\floatsetup[table]{font={footnotesize,sf},capposition=top}
|
||||||
|
|
||||||
\usepackage[binary-units=true]{siunitx}
|
\usepackage[binary-units=true]{siunitx}
|
||||||
|
|
||||||
@ -70,15 +74,13 @@
|
|||||||
\setkomafont{caption}{\small}
|
\setkomafont{caption}{\small}
|
||||||
\setkomafont{captionlabel}{\usekomafont{caption}}
|
\setkomafont{captionlabel}{\usekomafont{caption}}
|
||||||
|
|
||||||
|
\setcounter{secnumdepth}{\subsubsectionnumdepth}
|
||||||
% Large number for chapter
|
|
||||||
\renewcommand*{\chapterformat}{%
|
|
||||||
\fontsize{50}{55}\selectfont\thechapter\autodot\enskip
|
|
||||||
}
|
|
||||||
|
|
||||||
\makeatletter
|
\makeatletter
|
||||||
\renewcommand*{\chapterformat}{ \mbox{\chapappifchapterprefix{\nobreakspace}{\color{BrickRed}\fontsize{40}{45}\selectfont\thechapter}\autodot\enskip}}
|
\renewcommand*{\chapterformat}{ \mbox{\chapappifchapterprefix{\nobreakspace}{\color{BrickRed}\fontsize{40}{45}\selectfont\thechapter}\autodot\enskip}}
|
||||||
\renewcommand\@seccntformat[1]{\color{BrickRed} {\csname the#1\endcsname}\hspace{0.3em}}
|
% Section with color
|
||||||
|
% \renewcommand\@seccntformat[1]{\color{BrickRed} {\csname the#1\endcsname}\hspace{0.3em}}
|
||||||
|
\renewcommand\@seccntformat[1]{{\csname the#1\endcsname}\hspace{0.3em}}
|
||||||
\makeatother
|
\makeatother
|
||||||
|
|
||||||
\renewcommand{\floatpagefraction}{.8}%
|
\renewcommand{\floatpagefraction}{.8}%
|
||||||
@ -97,6 +99,7 @@
|
|||||||
|
|
||||||
\bookmarksetup{depth=2}
|
\bookmarksetup{depth=2}
|
||||||
|
|
||||||
|
\usepackage{xpatch} % Recommanded for biblatex
|
||||||
\usepackage[ % use biblatex for bibliography
|
\usepackage[ % use biblatex for bibliography
|
||||||
backend=biber, % use biber backend (bibtex replacement) or bibtex
|
backend=biber, % use biber backend (bibtex replacement) or bibtex
|
||||||
style=ieee, % bib style
|
style=ieee, % bib style
|
||||||
@ -114,7 +117,15 @@
|
|||||||
mincitenames=1 %
|
mincitenames=1 %
|
||||||
]{biblatex}
|
]{biblatex}
|
||||||
|
|
||||||
\addbibresource{ref.bib}
|
\defbibenvironment{mypubs}
|
||||||
|
{\list
|
||||||
|
{}
|
||||||
|
{\setlength{\leftmargin}{\bibhang}%
|
||||||
|
\setlength{\itemindent}{-\leftmargin}%
|
||||||
|
\setlength{\itemsep}{\bibitemsep}%
|
||||||
|
\setlength{\parsep}{\bibparsep}}}
|
||||||
|
{\endlist}
|
||||||
|
{\item}
|
||||||
|
|
||||||
\AtEveryBibitem{%
|
\AtEveryBibitem{%
|
||||||
\clearfield{urlyear}
|
\clearfield{urlyear}
|
||||||
@ -131,9 +142,16 @@
|
|||||||
|
|
||||||
\renewcommand*{\bibfont}{\footnotesize}
|
\renewcommand*{\bibfont}{\footnotesize}
|
||||||
|
|
||||||
\usepackage[sf, scaled=0.9]{quattrocento}
|
\usepackage{minitoc}
|
||||||
|
% Change section font
|
||||||
|
\renewcommand{\mtcSfont}{\small}
|
||||||
|
% Change indentation
|
||||||
|
\setlength{\mtcindent}{0pt}
|
||||||
|
% \usepackage[nottoc]{tocbibind}
|
||||||
|
|
||||||
\usepackage{crimson}
|
\usepackage[lf]{ebgaramond}
|
||||||
|
|
||||||
|
% \usepackage{crimson}
|
||||||
|
|
||||||
\usepackage[oldstyle, scale=0.7]{sourcecodepro}
|
\usepackage[oldstyle, scale=0.7]{sourcecodepro}
|
||||||
|
|
||||||
@ -155,9 +173,6 @@
|
|||||||
|
|
||||||
\setparsizes{0em}{0.1\baselineskip plus .1\baselineskip}{1em plus 1fil}
|
\setparsizes{0em}{0.1\baselineskip plus .1\baselineskip}{1em plus 1fil}
|
||||||
|
|
||||||
\usepackage{floatrow}
|
|
||||||
\floatsetup[table]{font={footnotesize,sf},capposition=top}
|
|
||||||
|
|
||||||
\numberwithin{equation}{chapter}
|
\numberwithin{equation}{chapter}
|
||||||
|
|
||||||
\usepackage{listings}
|
\usepackage{listings}
|
||||||
|
Binary file not shown.
Binary file not shown.
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 3.0 KiB |
@ -1,225 +1,42 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="241.167pt" height="146.147pt" viewBox="0 0 241.167 146.147" version="1.2">
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="144.725" height="122.047" viewBox="0 0 144.725 122.047">
|
||||||
<defs>
|
<defs>
|
||||||
<g>
|
<g>
|
||||||
<symbol overflow="visible" id="glyph0-0">
|
<g id="glyph-0-0">
|
||||||
<path style="stroke:none;" d=""/>
|
|
||||||
</symbol>
|
|
||||||
<symbol overflow="visible" id="glyph0-1">
|
|
||||||
<path style="stroke:none;" d="M 7.46875 -5.265625 C 7.46875 -6.03125 6.8125 -6.765625 5.515625 -6.765625 L 2.3125 -6.765625 C 2.125 -6.765625 2.015625 -6.765625 2.015625 -6.578125 C 2.015625 -6.453125 2.09375 -6.453125 2.296875 -6.453125 C 2.421875 -6.453125 2.609375 -6.453125 2.71875 -6.4375 C 2.875 -6.421875 2.9375 -6.390625 2.9375 -6.28125 C 2.9375 -6.234375 2.9375 -6.21875 2.90625 -6.09375 L 1.578125 -0.765625 C 1.46875 -0.390625 1.453125 -0.3125 0.671875 -0.3125 C 0.5 -0.3125 0.390625 -0.3125 0.390625 -0.125 C 0.390625 0 0.515625 0 0.546875 0 L 1.796875 -0.03125 L 2.4375 -0.015625 C 2.65625 -0.015625 2.875 0 3.078125 0 C 3.15625 0 3.28125 0 3.28125 -0.203125 C 3.28125 -0.3125 3.1875 -0.3125 3 -0.3125 C 2.640625 -0.3125 2.359375 -0.3125 2.359375 -0.484375 C 2.359375 -0.546875 2.375 -0.59375 2.390625 -0.65625 L 3 -3.125 L 4.6875 -3.125 C 6.09375 -3.125 7.46875 -4.15625 7.46875 -5.265625 Z M 6.546875 -5.515625 C 6.546875 -5.125 6.34375 -4.265625 5.96875 -3.90625 C 5.46875 -3.46875 4.875 -3.390625 4.4375 -3.390625 L 3.046875 -3.390625 L 3.71875 -6.078125 C 3.796875 -6.421875 3.828125 -6.453125 4.25 -6.453125 L 5.203125 -6.453125 C 6.015625 -6.453125 6.546875 -6.1875 6.546875 -5.515625 Z M 6.546875 -5.515625 "/>
|
|
||||||
</symbol>
|
|
||||||
<symbol overflow="visible" id="glyph0-2">
|
|
||||||
<path style="stroke:none;" d="M 7.328125 -0.203125 C 7.328125 -0.3125 7.21875 -0.3125 7.125 -0.3125 C 6.71875 -0.3125 6.59375 -0.40625 6.453125 -0.75 L 5.046875 -4 C 5.03125 -4.03125 5 -4.109375 5 -4.140625 C 5 -4.140625 5.171875 -4.296875 5.28125 -4.375 L 7.015625 -5.703125 C 7.9375 -6.390625 8.328125 -6.421875 8.625 -6.453125 C 8.703125 -6.46875 8.8125 -6.484375 8.8125 -6.65625 C 8.8125 -6.703125 8.78125 -6.765625 8.703125 -6.765625 C 8.484375 -6.765625 8.234375 -6.734375 8 -6.734375 C 7.640625 -6.734375 7.25 -6.765625 6.890625 -6.765625 C 6.828125 -6.765625 6.703125 -6.765625 6.703125 -6.5625 C 6.703125 -6.5 6.75 -6.46875 6.828125 -6.453125 C 7.046875 -6.4375 7.125 -6.390625 7.125 -6.25 C 7.125 -6.078125 6.828125 -5.84375 6.78125 -5.796875 L 2.90625 -2.828125 L 3.703125 -6 C 3.796875 -6.359375 3.8125 -6.453125 4.53125 -6.453125 C 4.78125 -6.453125 4.875 -6.453125 4.875 -6.65625 C 4.875 -6.75 4.796875 -6.765625 4.734375 -6.765625 L 3.46875 -6.734375 L 2.1875 -6.765625 C 2.125 -6.765625 1.984375 -6.765625 1.984375 -6.578125 C 1.984375 -6.453125 2.078125 -6.453125 2.28125 -6.453125 C 2.40625 -6.453125 2.578125 -6.453125 2.703125 -6.4375 C 2.859375 -6.421875 2.921875 -6.390625 2.921875 -6.28125 C 2.921875 -6.234375 2.90625 -6.21875 2.875 -6.09375 L 1.5625 -0.765625 C 1.453125 -0.390625 1.4375 -0.3125 0.65625 -0.3125 C 0.484375 -0.3125 0.375 -0.3125 0.375 -0.125 C 0.375 0 0.5 0 0.53125 0 L 1.78125 -0.03125 L 2.421875 -0.015625 C 2.640625 -0.015625 2.859375 0 3.0625 0 C 3.125 0 3.265625 0 3.265625 -0.203125 C 3.265625 -0.3125 3.171875 -0.3125 2.984375 -0.3125 C 2.609375 -0.3125 2.34375 -0.3125 2.34375 -0.484375 C 2.34375 -0.5625 2.390625 -0.765625 2.421875 -0.921875 L 2.828125 -2.484375 L 4.296875 -3.625 L 5.453125 -0.953125 C 5.5625 -0.6875 5.5625 -0.671875 5.5625 -0.609375 C 5.5625 -0.3125 5.140625 -0.3125 5.046875 -0.3125 C 4.9375 -0.3125 4.828125 -0.3125 4.828125 -0.109375 C 4.828125 0 4.96875 0 4.96875 0 C 5.375 0 5.78125 -0.03125 6.1875 -0.03125 C 6.40625 -0.03125 6.9375 0 7.15625 0 C 7.203125 0 7.328125 0 7.328125 -0.203125 Z M 7.328125 -0.203125 "/>
|
|
||||||
</symbol>
|
|
||||||
<symbol overflow="visible" id="glyph0-3">
|
|
||||||
<path style="stroke:none;" d="M 6.84375 -3.6875 C 6.84375 -4.234375 6.578125 -4.375 6.40625 -4.375 C 6.15625 -4.375 5.90625 -4.125 5.90625 -3.90625 C 5.90625 -3.78125 5.96875 -3.71875 6.0625 -3.640625 C 6.171875 -3.53125 6.421875 -3.265625 6.421875 -2.796875 C 6.421875 -2.453125 6.125 -1.484375 5.875 -0.984375 C 5.609375 -0.453125 5.265625 -0.109375 4.78125 -0.109375 C 4.3125 -0.109375 4.046875 -0.40625 4.046875 -0.96875 C 4.046875 -1.25 4.125 -1.5625 4.15625 -1.6875 L 4.578125 -3.359375 C 4.625 -3.578125 4.71875 -3.9375 4.71875 -4 C 4.71875 -4.1875 4.59375 -4.265625 4.4375 -4.265625 C 4.3125 -4.265625 4.140625 -4.1875 4.078125 -4 C 4.046875 -3.921875 3.578125 -2.03125 3.5 -1.765625 C 3.4375 -1.46875 3.421875 -1.296875 3.421875 -1.125 C 3.421875 -1.015625 3.421875 -0.984375 3.421875 -0.9375 C 3.203125 -0.421875 2.90625 -0.109375 2.515625 -0.109375 C 1.71875 -0.109375 1.71875 -0.84375 1.71875 -1.015625 C 1.71875 -1.328125 1.765625 -1.71875 2.234375 -2.9375 C 2.34375 -3.234375 2.40625 -3.375 2.40625 -3.5625 C 2.40625 -4.015625 2.078125 -4.375 1.59375 -4.375 C 0.65625 -4.375 0.28125 -2.9375 0.28125 -2.859375 C 0.28125 -2.75 0.40625 -2.75 0.40625 -2.75 C 0.5 -2.75 0.515625 -2.78125 0.5625 -2.9375 C 0.828125 -3.859375 1.21875 -4.15625 1.5625 -4.15625 C 1.65625 -4.15625 1.8125 -4.15625 1.8125 -3.828125 C 1.8125 -3.59375 1.703125 -3.3125 1.640625 -3.140625 C 1.203125 -1.96875 1.078125 -1.515625 1.078125 -1.140625 C 1.078125 -0.234375 1.75 0.109375 2.484375 0.109375 C 2.65625 0.109375 3.125 0.109375 3.515625 -0.578125 C 3.78125 0.046875 4.453125 0.109375 4.75 0.109375 C 5.5 0.109375 5.9375 -0.515625 6.1875 -1.109375 C 6.53125 -1.875 6.84375 -3.203125 6.84375 -3.6875 Z M 6.84375 -3.6875 "/>
|
|
||||||
</symbol>
|
|
||||||
<symbol overflow="visible" id="glyph0-4">
|
|
||||||
<path style="stroke:none;" d="M 5.375 -1.421875 C 5.375 -1.515625 5.296875 -1.515625 5.265625 -1.515625 C 5.15625 -1.515625 5.15625 -1.46875 5.125 -1.34375 C 4.984375 -0.78125 4.796875 -0.109375 4.375 -0.109375 C 4.171875 -0.109375 4.078125 -0.234375 4.078125 -0.5625 C 4.078125 -0.78125 4.1875 -1.25 4.265625 -1.59375 L 4.546875 -2.671875 C 4.578125 -2.8125 4.671875 -3.1875 4.71875 -3.34375 C 4.765625 -3.5625 4.859375 -3.9375 4.859375 -4 C 4.859375 -4.1875 4.71875 -4.265625 4.578125 -4.265625 C 4.53125 -4.265625 4.265625 -4.265625 4.1875 -3.921875 L 3.453125 -0.9375 C 3.4375 -0.90625 3.046875 -0.109375 2.3125 -0.109375 C 1.796875 -0.109375 1.703125 -0.5625 1.703125 -0.921875 C 1.703125 -1.46875 1.984375 -2.265625 2.234375 -2.9375 C 2.359375 -3.234375 2.40625 -3.375 2.40625 -3.5625 C 2.40625 -4.015625 2.09375 -4.375 1.59375 -4.375 C 0.65625 -4.375 0.28125 -2.9375 0.28125 -2.859375 C 0.28125 -2.75 0.40625 -2.75 0.40625 -2.75 C 0.5 -2.75 0.515625 -2.78125 0.5625 -2.9375 C 0.8125 -3.796875 1.1875 -4.15625 1.5625 -4.15625 C 1.65625 -4.15625 1.8125 -4.15625 1.8125 -3.828125 C 1.8125 -3.59375 1.703125 -3.3125 1.640625 -3.15625 C 1.28125 -2.171875 1.0625 -1.5625 1.0625 -1.078125 C 1.0625 -0.140625 1.75 0.109375 2.28125 0.109375 C 2.9375 0.109375 3.296875 -0.34375 3.46875 -0.5625 C 3.578125 -0.15625 3.921875 0.109375 4.34375 0.109375 C 4.703125 0.109375 4.921875 -0.125 5.078125 -0.4375 C 5.25 -0.796875 5.375 -1.421875 5.375 -1.421875 Z M 5.375 -1.421875 "/>
|
|
||||||
</symbol>
|
|
||||||
<symbol overflow="visible" id="glyph0-5">
|
|
||||||
<path style="stroke:none;" d="M 4.3125 -1.421875 C 4.3125 -1.46875 4.265625 -1.515625 4.1875 -1.515625 C 4.09375 -1.515625 4.078125 -1.453125 4.046875 -1.390625 C 3.828125 -0.75 3.1875 -0.5625 2.859375 -0.5625 C 2.671875 -0.5625 2.484375 -0.609375 2.28125 -0.6875 C 1.9375 -0.8125 1.796875 -0.859375 1.578125 -0.859375 C 1.578125 -0.859375 1.40625 -0.859375 1.3125 -0.828125 C 1.859375 -1.390625 2.140625 -1.640625 2.5 -1.953125 C 2.5 -1.953125 3.109375 -2.484375 3.46875 -2.84375 C 4.40625 -3.765625 4.625 -4.234375 4.625 -4.28125 C 4.625 -4.375 4.515625 -4.375 4.515625 -4.375 C 4.453125 -4.375 4.421875 -4.359375 4.375 -4.265625 C 4.078125 -3.796875 3.859375 -3.640625 3.625 -3.640625 C 3.390625 -3.640625 3.265625 -3.78125 3.125 -3.953125 C 2.9375 -4.1875 2.765625 -4.375 2.4375 -4.375 C 1.6875 -4.375 1.234375 -3.453125 1.234375 -3.25 C 1.234375 -3.203125 1.265625 -3.140625 1.359375 -3.140625 C 1.453125 -3.140625 1.46875 -3.1875 1.484375 -3.25 C 1.671875 -3.703125 2.25 -3.71875 2.328125 -3.71875 C 2.53125 -3.71875 2.71875 -3.640625 2.953125 -3.5625 C 3.34375 -3.421875 3.453125 -3.421875 3.71875 -3.421875 C 3.359375 -2.984375 2.53125 -2.28125 2.34375 -2.125 L 1.453125 -1.28125 C 0.765625 -0.625 0.421875 -0.0625 0.421875 0.015625 C 0.421875 0.109375 0.546875 0.109375 0.546875 0.109375 C 0.625 0.109375 0.640625 0.09375 0.703125 -0.015625 C 0.9375 -0.359375 1.234375 -0.640625 1.546875 -0.640625 C 1.765625 -0.640625 1.875 -0.546875 2.125 -0.25 C 2.28125 -0.046875 2.46875 0.109375 2.75 0.109375 C 3.734375 0.109375 4.3125 -1.15625 4.3125 -1.421875 Z M 4.3125 -1.421875 "/>
|
|
||||||
</symbol>
|
|
||||||
<symbol overflow="visible" id="glyph0-6">
|
|
||||||
<path style="stroke:none;" d="M 4.640625 -3.6875 C 4.640625 -4.21875 4.375 -4.375 4.203125 -4.375 C 3.953125 -4.375 3.71875 -4.125 3.71875 -3.90625 C 3.71875 -3.78125 3.765625 -3.71875 3.875 -3.609375 C 4.078125 -3.40625 4.203125 -3.15625 4.203125 -2.796875 C 4.203125 -2.375 3.609375 -0.109375 2.453125 -0.109375 C 1.9375 -0.109375 1.71875 -0.453125 1.71875 -0.96875 C 1.71875 -1.53125 1.984375 -2.25 2.28125 -3.078125 C 2.359375 -3.234375 2.40625 -3.375 2.40625 -3.5625 C 2.40625 -4.015625 2.09375 -4.375 1.59375 -4.375 C 0.65625 -4.375 0.28125 -2.9375 0.28125 -2.859375 C 0.28125 -2.75 0.40625 -2.75 0.40625 -2.75 C 0.5 -2.75 0.515625 -2.78125 0.5625 -2.9375 C 0.859375 -3.9375 1.28125 -4.15625 1.5625 -4.15625 C 1.640625 -4.15625 1.8125 -4.15625 1.8125 -3.84375 C 1.8125 -3.59375 1.71875 -3.328125 1.640625 -3.15625 C 1.203125 -2 1.078125 -1.546875 1.078125 -1.125 C 1.078125 -0.046875 1.953125 0.109375 2.40625 0.109375 C 4.078125 0.109375 4.640625 -3.171875 4.640625 -3.6875 Z M 4.640625 -3.6875 "/>
|
|
||||||
</symbol>
|
|
||||||
<symbol overflow="visible" id="glyph1-0">
|
|
||||||
<path style="stroke:none;" d=""/>
|
|
||||||
</symbol>
|
|
||||||
<symbol overflow="visible" id="glyph1-1">
|
|
||||||
<path style="stroke:none;" d="M 3.28125 2.375 C 3.28125 2.34375 3.28125 2.328125 3.109375 2.15625 C 1.875 0.90625 1.5625 -0.953125 1.5625 -2.484375 C 1.5625 -4.203125 1.9375 -5.921875 3.15625 -7.15625 C 3.28125 -7.28125 3.28125 -7.296875 3.28125 -7.328125 C 3.28125 -7.40625 3.234375 -7.4375 3.1875 -7.4375 C 3.078125 -7.4375 2.1875 -6.75 1.609375 -5.5 C 1.09375 -4.40625 0.984375 -3.3125 0.984375 -2.484375 C 0.984375 -1.703125 1.09375 -0.5 1.640625 0.609375 C 2.234375 1.828125 3.078125 2.484375 3.1875 2.484375 C 3.234375 2.484375 3.28125 2.453125 3.28125 2.375 Z M 3.28125 2.375 "/>
|
|
||||||
</symbol>
|
|
||||||
<symbol overflow="visible" id="glyph1-2">
|
|
||||||
<path style="stroke:none;" d="M 6.96875 -3.96875 L 6.96875 -4.265625 C 6.75 -4.25 6.453125 -4.234375 6.234375 -4.234375 L 5.3125 -4.265625 L 5.3125 -3.96875 C 5.671875 -3.953125 5.890625 -3.78125 5.890625 -3.484375 C 5.890625 -3.421875 5.890625 -3.40625 5.84375 -3.28125 L 4.9375 -0.75 L 3.96875 -3.5 C 3.921875 -3.625 3.90625 -3.640625 3.90625 -3.6875 C 3.90625 -3.96875 4.296875 -3.96875 4.5 -3.96875 L 4.5 -4.265625 L 3.46875 -4.234375 C 3.171875 -4.234375 2.875 -4.25 2.578125 -4.265625 L 2.578125 -3.96875 C 2.953125 -3.96875 3.109375 -3.9375 3.203125 -3.8125 C 3.265625 -3.75 3.375 -3.453125 3.4375 -3.265625 L 2.578125 -0.875 L 1.640625 -3.515625 C 1.59375 -3.640625 1.59375 -3.65625 1.59375 -3.6875 C 1.59375 -3.96875 1.984375 -3.96875 2.171875 -3.96875 L 2.171875 -4.265625 L 1.09375 -4.234375 L 0.171875 -4.265625 L 0.171875 -3.96875 C 0.671875 -3.96875 0.796875 -3.9375 0.90625 -3.609375 L 2.15625 -0.109375 C 2.203125 0.03125 2.234375 0.109375 2.375 0.109375 C 2.5 0.109375 2.515625 0.046875 2.5625 -0.09375 L 3.5625 -2.890625 L 4.578125 -0.078125 C 4.609375 0.03125 4.640625 0.109375 4.78125 0.109375 C 4.90625 0.109375 4.9375 0.015625 4.96875 -0.078125 L 6.125 -3.328125 C 6.3125 -3.828125 6.625 -3.953125 6.96875 -3.96875 Z M 6.96875 -3.96875 "/>
|
|
||||||
</symbol>
|
|
||||||
<symbol overflow="visible" id="glyph1-3">
|
|
||||||
<path style="stroke:none;" d="M 4.109375 -1.171875 C 4.109375 -1.28125 4.03125 -1.296875 3.984375 -1.296875 C 3.890625 -1.296875 3.875 -1.234375 3.859375 -1.15625 C 3.5 -0.140625 2.609375 -0.140625 2.515625 -0.140625 C 2.015625 -0.140625 1.625 -0.4375 1.390625 -0.796875 C 1.09375 -1.28125 1.09375 -1.9375 1.09375 -2.28125 L 3.859375 -2.28125 C 4.078125 -2.28125 4.109375 -2.28125 4.109375 -2.5 C 4.109375 -3.484375 3.578125 -4.4375 2.34375 -4.4375 C 1.1875 -4.4375 0.28125 -3.421875 0.28125 -2.171875 C 0.28125 -0.859375 1.3125 0.109375 2.453125 0.109375 C 3.671875 0.109375 4.109375 -0.984375 4.109375 -1.171875 Z M 3.453125 -2.5 L 1.109375 -2.5 C 1.171875 -3.96875 2 -4.21875 2.34375 -4.21875 C 3.359375 -4.21875 3.453125 -2.875 3.453125 -2.5 Z M 3.453125 -2.5 "/>
|
|
||||||
</symbol>
|
|
||||||
<symbol overflow="visible" id="glyph1-4">
|
|
||||||
<path style="stroke:none;" d="M 2.453125 0 L 2.453125 -0.3125 C 1.796875 -0.3125 1.75 -0.359375 1.75 -0.75 L 1.75 -4.375 L 0.359375 -4.265625 L 0.359375 -3.96875 C 1.015625 -3.96875 1.09375 -3.90625 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.421875 -0.03125 C 1.765625 -0.03125 2.109375 -0.015625 2.453125 0 Z M 1.90625 -5.984375 C 1.90625 -6.25 1.671875 -6.515625 1.375 -6.515625 C 1.046875 -6.515625 0.84375 -6.234375 0.84375 -5.984375 C 0.84375 -5.71875 1.0625 -5.453125 1.359375 -5.453125 C 1.703125 -5.453125 1.90625 -5.734375 1.90625 -5.984375 Z M 1.90625 -5.984375 "/>
|
|
||||||
</symbol>
|
|
||||||
<symbol overflow="visible" id="glyph1-5">
|
|
||||||
<path style="stroke:none;" d="M 4.796875 -4 C 4.796875 -4.171875 4.6875 -4.484375 4.296875 -4.484375 C 4.09375 -4.484375 3.671875 -4.421875 3.25 -4.015625 C 2.828125 -4.34375 2.421875 -4.375 2.203125 -4.375 C 1.28125 -4.375 0.59375 -3.6875 0.59375 -2.9375 C 0.59375 -2.5 0.8125 -2.125 1.0625 -1.90625 C 0.9375 -1.765625 0.75 -1.4375 0.75 -1.09375 C 0.75 -0.78125 0.875 -0.40625 1.1875 -0.203125 C 0.59375 -0.046875 0.28125 0.390625 0.28125 0.78125 C 0.28125 1.5 1.265625 2.046875 2.46875 2.046875 C 3.640625 2.046875 4.671875 1.53125 4.671875 0.765625 C 4.671875 0.421875 4.53125 -0.09375 4.015625 -0.359375 C 3.5 -0.640625 2.921875 -0.640625 2.3125 -0.640625 C 2.078125 -0.640625 1.640625 -0.640625 1.578125 -0.65625 C 1.265625 -0.6875 1.046875 -1 1.046875 -1.3125 C 1.046875 -1.359375 1.046875 -1.578125 1.21875 -1.78125 C 1.609375 -1.5 2.015625 -1.46875 2.203125 -1.46875 C 3.125 -1.46875 3.796875 -2.15625 3.796875 -2.921875 C 3.796875 -3.28125 3.640625 -3.65625 3.390625 -3.890625 C 3.75 -4.21875 4.109375 -4.265625 4.296875 -4.265625 C 4.296875 -4.265625 4.359375 -4.265625 4.390625 -4.265625 C 4.28125 -4.21875 4.234375 -4.109375 4.234375 -4 C 4.234375 -3.828125 4.359375 -3.703125 4.515625 -3.703125 C 4.609375 -3.703125 4.796875 -3.78125 4.796875 -4 Z M 3.0625 -2.9375 C 3.0625 -2.671875 3.046875 -2.34375 2.90625 -2.09375 C 2.828125 -1.984375 2.59375 -1.703125 2.203125 -1.703125 C 1.34375 -1.703125 1.34375 -2.6875 1.34375 -2.921875 C 1.34375 -3.1875 1.34375 -3.5 1.5 -3.75 C 1.578125 -3.875 1.796875 -4.15625 2.203125 -4.15625 C 3.0625 -4.15625 3.0625 -3.15625 3.0625 -2.9375 Z M 4.15625 0.78125 C 4.15625 1.3125 3.453125 1.8125 2.484375 1.8125 C 1.46875 1.8125 0.796875 1.3125 0.796875 0.78125 C 0.796875 0.328125 1.171875 -0.046875 1.609375 -0.0625 L 2.1875 -0.0625 C 3.046875 -0.0625 4.15625 -0.0625 4.15625 0.78125 Z M 4.15625 0.78125 "/>
|
|
||||||
</symbol>
|
|
||||||
<symbol overflow="visible" id="glyph1-6">
|
|
||||||
<path style="stroke:none;" d="M 5.296875 0 L 5.296875 -0.3125 C 4.78125 -0.3125 4.53125 -0.3125 4.53125 -0.609375 L 4.53125 -2.5 C 4.53125 -3.34375 4.53125 -3.65625 4.21875 -4.015625 C 4.078125 -4.1875 3.75 -4.375 3.1875 -4.375 C 2.34375 -4.375 1.90625 -3.78125 1.75 -3.421875 L 1.75 -6.875 L 0.3125 -6.765625 L 0.3125 -6.453125 C 1.015625 -6.453125 1.09375 -6.390625 1.09375 -5.90625 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.4375 -0.03125 L 2.546875 0 L 2.546875 -0.3125 C 1.875 -0.3125 1.765625 -0.3125 1.765625 -0.75 L 1.765625 -2.578125 C 1.765625 -3.609375 2.484375 -4.15625 3.109375 -4.15625 C 3.734375 -4.15625 3.84375 -3.625 3.84375 -3.0625 L 3.84375 -0.75 C 3.84375 -0.3125 3.734375 -0.3125 3.078125 -0.3125 L 3.078125 0 L 4.1875 -0.03125 Z M 5.296875 0 "/>
|
|
||||||
</symbol>
|
|
||||||
<symbol overflow="visible" id="glyph1-7">
|
|
||||||
<path style="stroke:none;" d="M 3.28125 -1.234375 L 3.28125 -1.796875 L 3.046875 -1.796875 L 3.046875 -1.25 C 3.046875 -0.515625 2.75 -0.140625 2.375 -0.140625 C 1.71875 -0.140625 1.71875 -1.046875 1.71875 -1.203125 L 1.71875 -3.96875 L 3.125 -3.96875 L 3.125 -4.265625 L 1.71875 -4.265625 L 1.71875 -6.09375 L 1.46875 -6.09375 C 1.453125 -5.28125 1.15625 -4.21875 0.1875 -4.1875 L 0.1875 -3.96875 L 1.03125 -3.96875 L 1.03125 -1.234375 C 1.03125 -0.015625 1.953125 0.109375 2.3125 0.109375 C 3.015625 0.109375 3.28125 -0.59375 3.28125 -1.234375 Z M 3.28125 -1.234375 "/>
|
|
||||||
</symbol>
|
|
||||||
<symbol overflow="visible" id="glyph1-8">
|
|
||||||
<path style="stroke:none;" d="M 5.21875 0 L 5.21875 -0.3125 C 4.53125 -0.3125 4.453125 -0.375 4.453125 -0.859375 L 4.453125 -6.875 L 3.015625 -6.765625 L 3.015625 -6.453125 C 3.71875 -6.453125 3.796875 -6.390625 3.796875 -5.90625 L 3.796875 -3.765625 C 3.5 -4.125 3.078125 -4.375 2.546875 -4.375 C 1.375 -4.375 0.34375 -3.40625 0.34375 -2.125 C 0.34375 -0.875 1.3125 0.109375 2.4375 0.109375 C 3.078125 0.109375 3.515625 -0.234375 3.765625 -0.546875 L 3.765625 0.109375 Z M 3.765625 -1.171875 C 3.765625 -0.984375 3.765625 -0.96875 3.65625 -0.796875 C 3.359375 -0.328125 2.90625 -0.109375 2.484375 -0.109375 C 2.046875 -0.109375 1.6875 -0.359375 1.453125 -0.75 C 1.1875 -1.15625 1.15625 -1.71875 1.15625 -2.125 C 1.15625 -2.484375 1.171875 -3.078125 1.46875 -3.53125 C 1.671875 -3.828125 2.046875 -4.15625 2.578125 -4.15625 C 2.9375 -4.15625 3.34375 -4.015625 3.65625 -3.5625 C 3.765625 -3.390625 3.765625 -3.375 3.765625 -3.203125 Z M 3.765625 -1.171875 "/>
|
|
||||||
</symbol>
|
|
||||||
<symbol overflow="visible" id="glyph1-9">
|
|
||||||
<path style="stroke:none;" d="M 2.859375 -2.484375 C 2.859375 -3.25 2.75 -4.453125 2.203125 -5.5625 C 1.609375 -6.78125 0.765625 -7.4375 0.65625 -7.4375 C 0.609375 -7.4375 0.5625 -7.390625 0.5625 -7.328125 C 0.5625 -7.296875 0.5625 -7.28125 0.75 -7.109375 C 1.71875 -6.125 2.28125 -4.546875 2.28125 -2.484375 C 2.28125 -0.78125 1.921875 0.953125 0.6875 2.203125 C 0.5625 2.328125 0.5625 2.34375 0.5625 2.375 C 0.5625 2.4375 0.609375 2.484375 0.65625 2.484375 C 0.765625 2.484375 1.65625 1.796875 2.234375 0.546875 C 2.75 -0.546875 2.859375 -1.640625 2.859375 -2.484375 Z M 2.859375 -2.484375 "/>
|
|
||||||
</symbol>
|
|
||||||
<symbol overflow="visible" id="glyph1-10">
|
|
||||||
<path style="stroke:none;" d="M 5.109375 0 L 5.109375 -0.3125 C 4.578125 -0.3125 4.390625 -0.328125 4.171875 -0.609375 L 2.84375 -2.328125 C 3.140625 -2.703125 3.515625 -3.1875 3.75 -3.453125 C 4.0625 -3.796875 4.46875 -3.953125 4.9375 -3.96875 L 4.9375 -4.265625 C 4.671875 -4.25 4.375 -4.234375 4.125 -4.234375 C 3.828125 -4.234375 3.296875 -4.265625 3.171875 -4.265625 L 3.171875 -3.96875 C 3.375 -3.9375 3.453125 -3.8125 3.453125 -3.65625 C 3.453125 -3.5 3.359375 -3.375 3.3125 -3.3125 L 2.6875 -2.53125 L 1.921875 -3.53125 C 1.828125 -3.640625 1.828125 -3.65625 1.828125 -3.71875 C 1.828125 -3.859375 1.984375 -3.953125 2.171875 -3.96875 L 2.171875 -4.265625 L 1.109375 -4.234375 C 0.90625 -4.234375 0.4375 -4.25 0.171875 -4.265625 L 0.171875 -3.96875 C 0.859375 -3.96875 0.875 -3.953125 1.34375 -3.359375 L 2.3125 -2.078125 C 1.859375 -1.484375 1.859375 -1.46875 1.390625 -0.90625 C 0.90625 -0.328125 0.328125 -0.3125 0.125 -0.3125 L 0.125 0 C 0.375 -0.015625 0.6875 -0.03125 0.9375 -0.03125 L 1.875 0 L 1.875 -0.3125 C 1.671875 -0.34375 1.59375 -0.46875 1.59375 -0.609375 C 1.59375 -0.828125 1.875 -1.15625 2.484375 -1.875 L 3.234375 -0.875 C 3.3125 -0.765625 3.453125 -0.609375 3.453125 -0.5625 C 3.453125 -0.46875 3.359375 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.15625 -0.03125 C 4.421875 -0.03125 4.8125 -0.015625 5.109375 0 Z M 5.109375 0 "/>
|
|
||||||
</symbol>
|
|
||||||
<symbol overflow="visible" id="glyph1-11">
|
|
||||||
<path style="stroke:none;" d="M 4.671875 -2.125 C 4.671875 -3.390625 3.671875 -4.4375 2.484375 -4.4375 C 1.234375 -4.4375 0.28125 -3.359375 0.28125 -2.125 C 0.28125 -0.84375 1.3125 0.109375 2.46875 0.109375 C 3.671875 0.109375 4.671875 -0.859375 4.671875 -2.125 Z M 3.84375 -2.203125 C 3.84375 -1.84375 3.84375 -1.3125 3.625 -0.875 C 3.40625 -0.421875 2.96875 -0.140625 2.484375 -0.140625 C 2.046875 -0.140625 1.609375 -0.34375 1.34375 -0.796875 C 1.09375 -1.234375 1.09375 -1.84375 1.09375 -2.203125 C 1.09375 -2.578125 1.09375 -3.125 1.34375 -3.5625 C 1.609375 -4.015625 2.078125 -4.21875 2.46875 -4.21875 C 2.90625 -4.21875 3.328125 -4 3.59375 -3.578125 C 3.84375 -3.15625 3.84375 -2.578125 3.84375 -2.203125 Z M 3.84375 -2.203125 "/>
|
|
||||||
</symbol>
|
|
||||||
<symbol overflow="visible" id="glyph1-12">
|
|
||||||
<path style="stroke:none;" d="M 5.296875 0 L 5.296875 -0.3125 C 4.78125 -0.3125 4.53125 -0.3125 4.53125 -0.609375 L 4.53125 -2.5 C 4.53125 -3.34375 4.53125 -3.65625 4.21875 -4.015625 C 4.078125 -4.1875 3.75 -4.375 3.1875 -4.375 C 2.453125 -4.375 1.984375 -3.953125 1.71875 -3.34375 L 1.71875 -4.375 L 0.3125 -4.265625 L 0.3125 -3.96875 C 1.015625 -3.96875 1.09375 -3.890625 1.09375 -3.40625 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.4375 -0.03125 L 2.546875 0 L 2.546875 -0.3125 C 1.875 -0.3125 1.765625 -0.3125 1.765625 -0.75 L 1.765625 -2.578125 C 1.765625 -3.609375 2.484375 -4.15625 3.109375 -4.15625 C 3.734375 -4.15625 3.84375 -3.625 3.84375 -3.0625 L 3.84375 -0.75 C 3.84375 -0.3125 3.734375 -0.3125 3.078125 -0.3125 L 3.078125 0 L 4.1875 -0.03125 Z M 5.296875 0 "/>
|
|
||||||
</symbol>
|
|
||||||
<symbol overflow="visible" id="glyph1-13">
|
|
||||||
<path style="stroke:none;" d="M 5.296875 0 L 5.296875 -0.3125 C 4.609375 -0.3125 4.53125 -0.375 4.53125 -0.859375 L 4.53125 -4.375 L 3.078125 -4.265625 L 3.078125 -3.96875 C 3.765625 -3.96875 3.84375 -3.890625 3.84375 -3.40625 L 3.84375 -1.640625 C 3.84375 -0.78125 3.375 -0.109375 2.640625 -0.109375 C 1.8125 -0.109375 1.765625 -0.578125 1.765625 -1.09375 L 1.765625 -4.375 L 0.3125 -4.265625 L 0.3125 -3.96875 C 1.09375 -3.96875 1.09375 -3.9375 1.09375 -3.046875 L 1.09375 -1.5625 C 1.09375 -0.796875 1.09375 0.109375 2.59375 0.109375 C 3.15625 0.109375 3.59375 -0.171875 3.875 -0.78125 L 3.875 0.109375 Z M 5.296875 0 "/>
|
|
||||||
</symbol>
|
|
||||||
<symbol overflow="visible" id="glyph1-14">
|
|
||||||
<path style="stroke:none;" d="M 3.5625 -1.265625 C 3.5625 -1.796875 3.265625 -2.09375 3.15625 -2.203125 C 2.828125 -2.53125 2.4375 -2.609375 2.015625 -2.6875 C 1.46875 -2.796875 0.796875 -2.921875 0.796875 -3.5 C 0.796875 -3.84375 1.0625 -4.25 1.90625 -4.25 C 3 -4.25 3.046875 -3.359375 3.078125 -3.046875 C 3.078125 -2.96875 3.1875 -2.96875 3.1875 -2.96875 C 3.3125 -2.96875 3.3125 -3.015625 3.3125 -3.203125 L 3.3125 -4.203125 C 3.3125 -4.375 3.3125 -4.4375 3.203125 -4.4375 C 3.15625 -4.4375 3.140625 -4.4375 3.015625 -4.3125 C 2.984375 -4.28125 2.875 -4.1875 2.84375 -4.15625 C 2.46875 -4.4375 2.0625 -4.4375 1.90625 -4.4375 C 0.703125 -4.4375 0.328125 -3.78125 0.328125 -3.21875 C 0.328125 -2.875 0.484375 -2.59375 0.75 -2.375 C 1.0625 -2.125 1.34375 -2.0625 2.0625 -1.921875 C 2.28125 -1.875 3.09375 -1.71875 3.09375 -1.015625 C 3.09375 -0.5 2.75 -0.109375 1.96875 -0.109375 C 1.140625 -0.109375 0.78125 -0.671875 0.59375 -1.515625 C 0.5625 -1.640625 0.5625 -1.6875 0.453125 -1.6875 C 0.328125 -1.6875 0.328125 -1.609375 0.328125 -1.4375 L 0.328125 -0.125 C 0.328125 0.046875 0.328125 0.109375 0.4375 0.109375 C 0.484375 0.109375 0.5 0.09375 0.6875 -0.09375 C 0.703125 -0.109375 0.703125 -0.125 0.875 -0.3125 C 1.3125 0.09375 1.765625 0.109375 1.96875 0.109375 C 3.109375 0.109375 3.5625 -0.5625 3.5625 -1.265625 Z M 3.5625 -1.265625 "/>
|
|
||||||
</symbol>
|
|
||||||
<symbol overflow="visible" id="glyph1-15">
|
|
||||||
<path style="stroke:none;" d="M 5.15625 -2.140625 C 5.15625 -3.390625 4.203125 -4.375 3.09375 -4.375 C 2.3125 -4.375 1.90625 -3.9375 1.703125 -3.71875 L 1.703125 -4.375 L 0.28125 -4.265625 L 0.28125 -3.96875 C 0.984375 -3.96875 1.046875 -3.90625 1.046875 -3.46875 L 1.046875 1.171875 C 1.046875 1.609375 0.9375 1.609375 0.28125 1.609375 L 0.28125 1.921875 L 1.390625 1.890625 L 2.5 1.921875 L 2.5 1.609375 C 1.84375 1.609375 1.734375 1.609375 1.734375 1.171875 L 1.734375 -0.578125 C 1.78125 -0.421875 2.203125 0.109375 2.953125 0.109375 C 4.125 0.109375 5.15625 -0.859375 5.15625 -2.140625 Z M 4.34375 -2.140625 C 4.34375 -0.9375 3.640625 -0.109375 2.90625 -0.109375 C 2.515625 -0.109375 2.140625 -0.3125 1.875 -0.71875 C 1.734375 -0.921875 1.734375 -0.9375 1.734375 -1.125 L 1.734375 -3.34375 C 2.015625 -3.84375 2.5 -4.125 3.015625 -4.125 C 3.734375 -4.125 4.34375 -3.265625 4.34375 -2.140625 Z M 4.34375 -2.140625 "/>
|
|
||||||
</symbol>
|
|
||||||
<symbol overflow="visible" id="glyph1-16">
|
|
||||||
<path style="stroke:none;" d="M 4.109375 -1.171875 C 4.109375 -1.28125 4.015625 -1.28125 3.984375 -1.28125 C 3.890625 -1.28125 3.875 -1.234375 3.859375 -1.171875 C 3.5625 -0.25 2.921875 -0.140625 2.5625 -0.140625 C 2.03125 -0.140625 1.15625 -0.5625 1.15625 -2.15625 C 1.15625 -3.78125 1.96875 -4.1875 2.5 -4.1875 C 2.578125 -4.1875 3.203125 -4.1875 3.5625 -3.828125 C 3.15625 -3.796875 3.09375 -3.5 3.09375 -3.375 C 3.09375 -3.109375 3.265625 -2.90625 3.546875 -2.90625 C 3.796875 -2.90625 4 -3.078125 4 -3.375 C 4 -4.046875 3.25 -4.4375 2.484375 -4.4375 C 1.25 -4.4375 0.34375 -3.375 0.34375 -2.140625 C 0.34375 -0.875 1.3125 0.109375 2.46875 0.109375 C 3.796875 0.109375 4.109375 -1.078125 4.109375 -1.171875 Z M 4.109375 -1.171875 "/>
|
|
||||||
</symbol>
|
|
||||||
<symbol overflow="visible" id="glyph1-17">
|
|
||||||
<path style="stroke:none;" d="M 3.609375 -3.78125 C 3.609375 -4.09375 3.296875 -4.375 2.875 -4.375 C 2.15625 -4.375 1.796875 -3.71875 1.65625 -3.28125 L 1.65625 -4.375 L 0.28125 -4.265625 L 0.28125 -3.96875 C 0.96875 -3.96875 1.046875 -3.890625 1.046875 -3.40625 L 1.046875 -0.75 C 1.046875 -0.3125 0.9375 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.40625 -0.03125 C 1.796875 -0.03125 2.265625 -0.03125 2.671875 0 L 2.671875 -0.3125 L 2.453125 -0.3125 C 1.71875 -0.3125 1.703125 -0.421875 1.703125 -0.765625 L 1.703125 -2.296875 C 1.703125 -3.28125 2.125 -4.15625 2.875 -4.15625 C 2.9375 -4.15625 2.96875 -4.15625 2.984375 -4.15625 C 2.953125 -4.140625 2.75 -4.015625 2.75 -3.765625 C 2.75 -3.484375 2.96875 -3.34375 3.1875 -3.34375 C 3.359375 -3.34375 3.609375 -3.453125 3.609375 -3.78125 Z M 3.609375 -3.78125 "/>
|
|
||||||
</symbol>
|
|
||||||
<symbol overflow="visible" id="glyph1-18">
|
|
||||||
<path style="stroke:none;" d="M 2.53125 0 L 2.53125 -0.3125 C 1.859375 -0.3125 1.75 -0.3125 1.75 -0.75 L 1.75 -6.875 L 0.328125 -6.765625 L 0.328125 -6.453125 C 1.015625 -6.453125 1.09375 -6.390625 1.09375 -5.90625 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.421875 -0.03125 Z M 2.53125 0 "/>
|
|
||||||
</symbol>
|
|
||||||
<symbol overflow="visible" id="glyph1-19">
|
|
||||||
<path style="stroke:none;" d="M 4.78125 -0.875 L 4.78125 -1.4375 L 4.53125 -1.4375 L 4.53125 -0.875 C 4.53125 -0.3125 4.296875 -0.25 4.1875 -0.25 C 3.859375 -0.25 3.8125 -0.6875 3.8125 -0.75 L 3.8125 -2.71875 C 3.8125 -3.140625 3.8125 -3.53125 3.453125 -3.890625 C 3.078125 -4.28125 2.578125 -4.4375 2.09375 -4.4375 C 1.28125 -4.4375 0.609375 -3.96875 0.609375 -3.3125 C 0.609375 -3.015625 0.796875 -2.859375 1.0625 -2.859375 C 1.34375 -2.859375 1.515625 -3.046875 1.515625 -3.3125 C 1.515625 -3.421875 1.46875 -3.75 1.015625 -3.765625 C 1.28125 -4.109375 1.765625 -4.21875 2.078125 -4.21875 C 2.5625 -4.21875 3.125 -3.828125 3.125 -2.953125 L 3.125 -2.578125 C 2.625 -2.5625 1.9375 -2.53125 1.3125 -2.234375 C 0.5625 -1.890625 0.3125 -1.375 0.3125 -0.9375 C 0.3125 -0.140625 1.28125 0.109375 1.90625 0.109375 C 2.5625 0.109375 3.015625 -0.28125 3.203125 -0.75 C 3.234375 -0.359375 3.5 0.0625 3.96875 0.0625 C 4.1875 0.0625 4.78125 -0.078125 4.78125 -0.875 Z M 3.125 -1.390625 C 3.125 -0.453125 2.421875 -0.109375 1.96875 -0.109375 C 1.484375 -0.109375 1.078125 -0.453125 1.078125 -0.953125 C 1.078125 -1.5 1.5 -2.3125 3.125 -2.375 Z M 3.125 -1.390625 "/>
|
|
||||||
</symbol>
|
|
||||||
</g>
|
</g>
|
||||||
|
<g id="glyph-0-1">
|
||||||
|
<path d="M 7.453125 -5.265625 C 7.453125 -6.015625 6.8125 -6.75 5.515625 -6.75 L 2.296875 -6.75 C 2.109375 -6.75 2 -6.75 2 -6.5625 C 2 -6.453125 2.09375 -6.453125 2.296875 -6.453125 C 2.421875 -6.453125 2.59375 -6.4375 2.71875 -6.421875 C 2.875 -6.40625 2.9375 -6.375 2.9375 -6.265625 C 2.9375 -6.234375 2.921875 -6.203125 2.890625 -6.078125 L 1.578125 -0.765625 C 1.46875 -0.390625 1.453125 -0.3125 0.671875 -0.3125 C 0.5 -0.3125 0.390625 -0.3125 0.390625 -0.125 C 0.390625 0 0.515625 0 0.546875 0 L 1.796875 -0.03125 L 2.4375 -0.015625 C 2.65625 -0.015625 2.875 0 3.078125 0 C 3.140625 0 3.28125 0 3.28125 -0.203125 C 3.28125 -0.3125 3.1875 -0.3125 3 -0.3125 C 2.625 -0.3125 2.359375 -0.3125 2.359375 -0.484375 C 2.359375 -0.546875 2.375 -0.59375 2.390625 -0.65625 L 3 -3.125 L 4.671875 -3.125 C 6.078125 -3.125 7.453125 -4.15625 7.453125 -5.265625 Z M 6.53125 -5.5 C 6.53125 -5.109375 6.34375 -4.265625 5.953125 -3.90625 C 5.453125 -3.46875 4.859375 -3.375 4.4375 -3.375 L 3.03125 -3.375 L 3.703125 -6.078125 C 3.796875 -6.421875 3.8125 -6.453125 4.25 -6.453125 L 5.1875 -6.453125 C 6.015625 -6.453125 6.53125 -6.1875 6.53125 -5.5 Z M 6.53125 -5.5 "/>
|
||||||
|
</g>
|
||||||
|
<g id="glyph-0-2">
|
||||||
|
<path d="M 7.3125 -0.203125 C 7.3125 -0.3125 7.203125 -0.3125 7.125 -0.3125 C 6.71875 -0.3125 6.59375 -0.40625 6.4375 -0.75 L 5.03125 -4 C 5.03125 -4.03125 4.984375 -4.109375 4.984375 -4.140625 C 4.984375 -4.140625 5.15625 -4.28125 5.265625 -4.359375 L 7 -5.703125 C 7.9375 -6.375 8.3125 -6.421875 8.609375 -6.453125 C 8.6875 -6.453125 8.796875 -6.46875 8.796875 -6.640625 C 8.796875 -6.6875 8.765625 -6.75 8.6875 -6.75 C 8.46875 -6.75 8.21875 -6.71875 7.984375 -6.71875 C 7.625 -6.71875 7.234375 -6.75 6.890625 -6.75 C 6.8125 -6.75 6.703125 -6.75 6.703125 -6.5625 C 6.703125 -6.484375 6.75 -6.453125 6.8125 -6.453125 C 7.03125 -6.421875 7.125 -6.375 7.125 -6.234375 C 7.125 -6.0625 6.828125 -5.828125 6.765625 -5.78125 L 2.90625 -2.8125 L 3.703125 -6 C 3.78125 -6.34375 3.8125 -6.453125 4.53125 -6.453125 C 4.78125 -6.453125 4.859375 -6.453125 4.859375 -6.640625 C 4.859375 -6.734375 4.78125 -6.75 4.734375 -6.75 L 3.46875 -6.71875 L 2.1875 -6.75 C 2.109375 -6.75 1.984375 -6.75 1.984375 -6.5625 C 1.984375 -6.453125 2.078125 -6.453125 2.28125 -6.453125 C 2.40625 -6.453125 2.578125 -6.4375 2.703125 -6.421875 C 2.859375 -6.40625 2.921875 -6.375 2.921875 -6.265625 C 2.921875 -6.234375 2.90625 -6.203125 2.875 -6.078125 L 1.546875 -0.765625 C 1.453125 -0.390625 1.4375 -0.3125 0.65625 -0.3125 C 0.484375 -0.3125 0.375 -0.3125 0.375 -0.125 C 0.375 0 0.5 0 0.53125 0 L 1.78125 -0.03125 L 2.40625 -0.015625 C 2.625 -0.015625 2.84375 0 3.0625 0 C 3.125 0 3.25 0 3.25 -0.203125 C 3.25 -0.3125 3.171875 -0.3125 2.984375 -0.3125 C 2.609375 -0.3125 2.328125 -0.3125 2.328125 -0.484375 C 2.328125 -0.546875 2.390625 -0.765625 2.421875 -0.921875 L 2.8125 -2.46875 L 4.296875 -3.625 L 5.4375 -0.953125 C 5.5625 -0.6875 5.5625 -0.671875 5.5625 -0.609375 C 5.5625 -0.3125 5.140625 -0.3125 5.046875 -0.3125 C 4.9375 -0.3125 4.828125 -0.3125 4.828125 -0.109375 C 4.828125 0 4.96875 0 4.96875 0 C 5.359375 0 5.78125 -0.03125 6.171875 -0.03125 C 6.390625 -0.03125 6.921875 0 7.140625 0 C 7.1875 0 7.3125 0 7.3125 -0.203125 Z M 7.3125 -0.203125 "/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<clipPath id="clip-0">
|
||||||
|
<path clip-rule="nonzero" d="M 0.425781 14 L 40 14 L 40 16 L 0.425781 16 Z M 0.425781 14 "/>
|
||||||
|
</clipPath>
|
||||||
|
<clipPath id="clip-1">
|
||||||
|
<path clip-rule="nonzero" d="M 123 0 L 144.027344 0 L 144.027344 31 L 123 31 Z M 123 0 "/>
|
||||||
|
</clipPath>
|
||||||
</defs>
|
</defs>
|
||||||
<g id="surface1">
|
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -28.347549 -28.345161 L 28.345614 -28.345161 L 28.345614 28.348002 L -28.347549 28.348002 Z M -28.347549 -28.345161 " transform="matrix(0.992252, 0, 0, -0.992252, 72.225569, 29.116644)"/>
|
||||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -28.345855 -28.347017 L 28.346396 -28.347017 L 28.346396 28.345234 L -28.345855 28.345234 Z M -28.345855 -28.347017 " transform="matrix(0.994197,0,0,-0.994197,121.146216,53.133879)"/>
|
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
<use xlink:href="#glyph-0-1" x="68.365709" y="32.49427"/>
|
||||||
<use xlink:href="#glyph0-1" x="117.278788" y="56.518127"/>
|
|
||||||
</g>
|
</g>
|
||||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -21.261779 -91.706864 L 21.258391 -91.706864 L 21.258391 -49.186694 L -21.261779 -49.186694 Z M -21.261779 -91.706864 " transform="matrix(0.994197,0,0,-0.994197,121.146216,53.133879)"/>
|
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -21.261396 -91.707182 L 21.259461 -91.707182 L 21.259461 -49.186325 L -21.261396 -49.186325 Z M -21.261396 -91.707182 " transform="matrix(0.992252, 0, 0, -0.992252, 72.225569, 29.116644)"/>
|
||||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||||
<use xlink:href="#glyph0-2" x="116.585833" y="126.554354"/>
|
<use xlink:href="#glyph-0-2" x="67.674109" y="102.393464"/>
|
||||||
</g>
|
</g>
|
||||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -33.477193 14.420684 L -71.365014 14.420684 " transform="matrix(0.994197,0,0,-0.994197,121.146216,53.133879)"/>
|
<g clip-path="url(#clip-0)">
|
||||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053769 -0.00178642 L 1.610014 1.683776 L 3.087337 -0.00178642 L 1.610014 -1.683419 Z M 6.053769 -0.00178642 " transform="matrix(0.994197,0,0,-0.994197,85.039953,38.795099)"/>
|
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -33.477136 14.423711 L -71.364436 14.423711 " transform="matrix(0.992252, 0, 0, -0.992252, 72.225569, 29.116644)"/>
|
||||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
|
||||||
<use xlink:href="#glyph1-1" x="43.000321" y="11.22747"/>
|
|
||||||
<use xlink:href="#glyph1-2" x="46.852294" y="11.22747"/>
|
|
||||||
</g>
|
|
||||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
|
||||||
<use xlink:href="#glyph1-3" x="53.728199" y="11.22747"/>
|
|
||||||
<use xlink:href="#glyph1-4" x="58.130878" y="11.22747"/>
|
|
||||||
<use xlink:href="#glyph1-5" x="60.882429" y="11.22747"/>
|
|
||||||
<use xlink:href="#glyph1-6" x="65.834824" y="11.22747"/>
|
|
||||||
</g>
|
|
||||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
|
||||||
<use xlink:href="#glyph1-7" x="71.060591" y="11.22747"/>
|
|
||||||
<use xlink:href="#glyph1-3" x="74.912563" y="11.22747"/>
|
|
||||||
<use xlink:href="#glyph1-8" x="79.315243" y="11.22747"/>
|
|
||||||
<use xlink:href="#glyph1-9" x="84.818344" y="11.22747"/>
|
|
||||||
</g>
|
|
||||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
|
||||||
<use xlink:href="#glyph1-3" x="14.551366" y="23.113098"/>
|
|
||||||
<use xlink:href="#glyph1-10" x="18.954045" y="23.113098"/>
|
|
||||||
<use xlink:href="#glyph1-11" x="24.181793" y="23.113098"/>
|
|
||||||
<use xlink:href="#glyph1-5" x="29.134188" y="23.113098"/>
|
|
||||||
<use xlink:href="#glyph1-3" x="34.086583" y="23.113098"/>
|
|
||||||
<use xlink:href="#glyph1-12" x="38.489262" y="23.113098"/>
|
|
||||||
<use xlink:href="#glyph1-11" x="43.992363" y="23.113098"/>
|
|
||||||
<use xlink:href="#glyph1-13" x="48.944758" y="23.113098"/>
|
|
||||||
<use xlink:href="#glyph1-14" x="54.447859" y="23.113098"/>
|
|
||||||
</g>
|
|
||||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
|
||||||
<use xlink:href="#glyph1-4" x="61.653594" y="23.113098"/>
|
|
||||||
<use xlink:href="#glyph1-12" x="64.405145" y="23.113098"/>
|
|
||||||
<use xlink:href="#glyph1-15" x="69.908246" y="23.113098"/>
|
|
||||||
<use xlink:href="#glyph1-13" x="75.411347" y="23.113098"/>
|
|
||||||
<use xlink:href="#glyph1-7" x="80.914448" y="23.113098"/>
|
|
||||||
<use xlink:href="#glyph1-14" x="84.766421" y="23.113098"/>
|
|
||||||
</g>
|
|
||||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
|
||||||
<use xlink:href="#glyph0-3" x="81.314696" y="34.998727"/>
|
|
||||||
</g>
|
|
||||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -33.477193 -14.422466 L -51.523316 -14.422466 L -51.523316 -70.446779 L -21.75684 -70.446779 " transform="matrix(0.994197,0,0,-0.994197,121.146216,53.133879)"/>
|
|
||||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053769 0.00000357407 L 1.610014 1.681637 L 3.087337 0.00000357407 L 1.610014 -1.681629 Z M 6.053769 0.00000357407 " transform="matrix(0.994197,0,0,-0.994197,85.039953,67.47266)"/>
|
|
||||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
|
||||||
<use xlink:href="#glyph1-16" x="4.084457" y="92.79042"/>
|
|
||||||
<use xlink:href="#glyph1-11" x="8.487136" y="92.79042"/>
|
|
||||||
<use xlink:href="#glyph1-12" x="13.439531" y="92.79042"/>
|
|
||||||
</g>
|
|
||||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
|
||||||
<use xlink:href="#glyph1-7" x="18.665298" y="92.79042"/>
|
|
||||||
<use xlink:href="#glyph1-17" x="22.517271" y="92.79042"/>
|
|
||||||
<use xlink:href="#glyph1-11" x="26.396977" y="92.79042"/>
|
|
||||||
<use xlink:href="#glyph1-18" x="31.349372" y="92.79042"/>
|
|
||||||
</g>
|
|
||||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
|
||||||
<use xlink:href="#glyph1-14" x="37.399218" y="92.79042"/>
|
|
||||||
<use xlink:href="#glyph1-4" x="41.306657" y="92.79042"/>
|
|
||||||
<use xlink:href="#glyph1-5" x="44.058208" y="92.79042"/>
|
|
||||||
<use xlink:href="#glyph1-12" x="49.010603" y="92.79042"/>
|
|
||||||
<use xlink:href="#glyph1-19" x="54.513704" y="92.79042"/>
|
|
||||||
<use xlink:href="#glyph1-18" x="59.466099" y="92.79042"/>
|
|
||||||
<use xlink:href="#glyph1-14" x="62.217649" y="92.79042"/>
|
|
||||||
</g>
|
|
||||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
|
||||||
<use xlink:href="#glyph0-4" x="60.456437" y="104.676049"/>
|
|
||||||
</g>
|
|
||||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.845385 14.420684 L 66.733206 14.420684 " transform="matrix(0.994197,0,0,-0.994197,121.146216,53.133879)"/>
|
|
||||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054118 -0.00178642 L 1.610364 1.683776 L 3.087686 -0.00178642 L 1.610364 -1.683419 Z M 6.054118 -0.00178642 " transform="matrix(0.994197,0,0,-0.994197,184.668512,38.795099)"/>
|
|
||||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
|
||||||
<use xlink:href="#glyph1-1" x="153.619681" y="11.22747"/>
|
|
||||||
<use xlink:href="#glyph1-2" x="157.471654" y="11.22747"/>
|
|
||||||
</g>
|
|
||||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
|
||||||
<use xlink:href="#glyph1-3" x="164.347559" y="11.22747"/>
|
|
||||||
<use xlink:href="#glyph1-4" x="168.750238" y="11.22747"/>
|
|
||||||
<use xlink:href="#glyph1-5" x="171.501789" y="11.22747"/>
|
|
||||||
<use xlink:href="#glyph1-6" x="176.454184" y="11.22747"/>
|
|
||||||
</g>
|
|
||||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
|
||||||
<use xlink:href="#glyph1-7" x="181.679951" y="11.22747"/>
|
|
||||||
<use xlink:href="#glyph1-3" x="185.531924" y="11.22747"/>
|
|
||||||
<use xlink:href="#glyph1-8" x="189.934603" y="11.22747"/>
|
|
||||||
<use xlink:href="#glyph1-9" x="195.437704" y="11.22747"/>
|
|
||||||
</g>
|
|
||||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
|
||||||
<use xlink:href="#glyph1-3" x="153.619681" y="23.113098"/>
|
|
||||||
<use xlink:href="#glyph1-10" x="158.02236" y="23.113098"/>
|
|
||||||
<use xlink:href="#glyph1-11" x="163.250109" y="23.113098"/>
|
|
||||||
<use xlink:href="#glyph1-5" x="168.202503" y="23.113098"/>
|
|
||||||
<use xlink:href="#glyph1-3" x="173.154898" y="23.113098"/>
|
|
||||||
<use xlink:href="#glyph1-12" x="177.557577" y="23.113098"/>
|
|
||||||
<use xlink:href="#glyph1-11" x="183.060679" y="23.113098"/>
|
|
||||||
<use xlink:href="#glyph1-13" x="188.013074" y="23.113098"/>
|
|
||||||
<use xlink:href="#glyph1-14" x="193.516175" y="23.113098"/>
|
|
||||||
</g>
|
|
||||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
|
||||||
<use xlink:href="#glyph1-11" x="200.721909" y="23.113098"/>
|
|
||||||
<use xlink:href="#glyph1-13" x="205.674304" y="23.113098"/>
|
|
||||||
<use xlink:href="#glyph1-7" x="211.177405" y="23.113098"/>
|
|
||||||
<use xlink:href="#glyph1-15" x="215.029378" y="23.113098"/>
|
|
||||||
<use xlink:href="#glyph1-13" x="220.532479" y="23.113098"/>
|
|
||||||
<use xlink:href="#glyph1-7" x="226.035581" y="23.113098"/>
|
|
||||||
<use xlink:href="#glyph1-14" x="229.887553" y="23.113098"/>
|
|
||||||
</g>
|
|
||||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
|
||||||
<use xlink:href="#glyph0-5" x="153.619681" y="34.998727"/>
|
|
||||||
</g>
|
|
||||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.845385 -14.422466 L 51.523857 -14.422466 L 51.523857 -70.446779 L 26.393658 -70.446779 " transform="matrix(0.994197,0,0,-0.994197,121.146216,53.133879)"/>
|
|
||||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054553 0.000928634 L 1.606869 1.682562 L 3.088121 0.000928634 L 1.606869 -1.684633 Z M 6.054553 0.000928634 " transform="matrix(-0.994197,0,0,0.994197,150.20692,123.170952)"/>
|
|
||||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
|
||||||
<use xlink:href="#glyph1-14" x="176.165093" y="92.79042"/>
|
|
||||||
<use xlink:href="#glyph1-3" x="180.072533" y="92.79042"/>
|
|
||||||
<use xlink:href="#glyph1-12" x="184.475212" y="92.79042"/>
|
|
||||||
<use xlink:href="#glyph1-14" x="189.978313" y="92.79042"/>
|
|
||||||
<use xlink:href="#glyph1-3" x="193.885753" y="92.79042"/>
|
|
||||||
<use xlink:href="#glyph1-8" x="198.288432" y="92.79042"/>
|
|
||||||
</g>
|
|
||||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
|
||||||
<use xlink:href="#glyph1-11" x="207.089828" y="92.79042"/>
|
|
||||||
<use xlink:href="#glyph1-13" x="212.042223" y="92.79042"/>
|
|
||||||
<use xlink:href="#glyph1-7" x="217.545324" y="92.79042"/>
|
|
||||||
<use xlink:href="#glyph1-15" x="221.397297" y="92.79042"/>
|
|
||||||
<use xlink:href="#glyph1-13" x="226.900398" y="92.79042"/>
|
|
||||||
<use xlink:href="#glyph1-7" x="232.403499" y="92.79042"/>
|
|
||||||
</g>
|
|
||||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
|
||||||
<use xlink:href="#glyph0-6" x="176.165093" y="104.676049"/>
|
|
||||||
</g>
|
</g>
|
||||||
|
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.052253 0.00124058 L 1.60766 1.682234 L 3.087879 0.00124058 L 1.60766 -1.683689 Z M 6.052253 0.00124058 " transform="matrix(0.992252, 0, 0, -0.992252, 36.189952, 14.805918)"/>
|
||||||
|
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -33.477136 -14.42087 L -51.523207 -14.42087 L -51.523207 -70.444785 L -21.757426 -70.444785 " transform="matrix(0.992252, 0, 0, -0.992252, 72.225569, 29.116644)"/>
|
||||||
|
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.052253 0.00159996 L 1.60766 1.682593 L 3.087879 0.00159996 L 1.60766 -1.68333 Z M 6.052253 0.00159996 " transform="matrix(0.992252, 0, 0, -0.992252, 36.189952, 43.427369)"/>
|
||||||
|
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 28.845582 14.423711 L 66.732881 14.423711 " transform="matrix(0.992252, 0, 0, -0.992252, 72.225569, 29.116644)"/>
|
||||||
|
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" d="M 141.628906 14.804688 L 137.21875 13.136719 L 138.6875 14.804688 L 137.21875 16.476562 Z M 141.628906 14.804688 "/>
|
||||||
|
<g clip-path="url(#clip-1)">
|
||||||
|
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.052221 0.00124058 L 1.607628 1.682234 L 3.087847 0.00124058 L 1.607628 -1.683689 Z M 6.052221 0.00124058 " transform="matrix(0.992252, 0, 0, -0.992252, 135.623578, 14.805918)"/>
|
||||||
</g>
|
</g>
|
||||||
|
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 28.845582 -14.42087 L 51.521272 -14.42087 L 51.521272 -70.444785 L 26.392985 -70.444785 " transform="matrix(0.992252, 0, 0, -0.992252, 72.225569, 29.116644)"/>
|
||||||
|
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.053661 -0.00106474 L 1.609068 1.683865 L 3.089287 -0.00106474 L 1.609068 -1.682058 Z M 6.053661 -0.00106474 " transform="matrix(-0.992252, 0, 0, 0.992252, 101.229414, 99.016681)"/>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 36 KiB After Width: | Height: | Size: 7.5 KiB |
@ -367,11 +367,11 @@ Figure [[fig:general_control_names]] shows the results of the Tikz code of listi
|
|||||||
\coordinate[] (outputv) at ($(P.south east)!0.25!(P.north east)$);
|
\coordinate[] (outputv) at ($(P.south east)!0.25!(P.north east)$);
|
||||||
|
|
||||||
% Connections and labels
|
% Connections and labels
|
||||||
\draw[<-] (inputw) node[above left, align=right]{(weighted)\\exogenous inputs\\$w$} -- ++(-1.5, 0);
|
\draw[<-] (inputw) -- ++(-1.5, 0);
|
||||||
\draw[<-] (inputu) -- ++(-0.8, 0) |- node[left, near start, align=right]{control signals\\$u$} (K.west);
|
\draw[<-] (inputu) -- ++(-0.8, 0) |- (K.west);
|
||||||
|
|
||||||
\draw[->] (outputz) node[above right, align=left]{(weighted)\\exogenous outputs\\$z$} -- ++(1.5, 0);
|
\draw[->] (outputz) -- ++(1.5, 0);
|
||||||
\draw[->] (outputv) -- ++(0.8, 0) |- node[right, near start, align=left]{sensed output\\$v$} (K.east);
|
\draw[->] (outputv) -- ++(0.8, 0) |- (K.east);
|
||||||
\end{tikzpicture}
|
\end{tikzpicture}
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
@ -416,28 +416,28 @@ Table [[tab:table_with_equations]] shows a table with some mathematics inside.
|
|||||||
#+name: tab:table_multiple_heads
|
#+name: tab:table_multiple_heads
|
||||||
#+ATTR_LATEX: :font \footnotesize
|
#+ATTR_LATEX: :font \footnotesize
|
||||||
#+caption: Table with multiples groups
|
#+caption: Table with multiples groups
|
||||||
| | *Classical Control* | *Modern Control* | *Robust Control* |
|
| | *Classical Control* | *Modern Control* |
|
||||||
| <l> | <c> | <c> | <c> |
|
| <l> | <c> | <c> |
|
||||||
|-------------------------+------------------------------------+--------------------------------------+-------------------------------------------------------------------------|
|
|-------------------------+------------------------------------+--------------------------------------|
|
||||||
| *Date* | 1930- | 1960- | 1980- |
|
| *Date* | 1930- | 1960- |
|
||||||
|-------------------------+------------------------------------+--------------------------------------+-------------------------------------------------------------------------|
|
|-------------------------+------------------------------------+--------------------------------------|
|
||||||
| *Tools* | Transfer Functions | State Space formulation | Disk margin |
|
| *Tools* | Transfer Functions | State Space formulation |
|
||||||
| | Nyquist Plots | Riccati Equations | Systems and Signals Norms ($\mathcal{H}_\infty$, $\mathcal{H}_2$ Norms) |
|
| | Nyquist Plots | Riccati Equations |
|
||||||
| | Bode Plots | | Closed Loop Transfer Functions |
|
| | Bode Plots | |
|
||||||
| | Phase and Gain margins | | Weighting Functions |
|
| | Phase and Gain margins | |
|
||||||
|-------------------------+------------------------------------+--------------------------------------+-------------------------------------------------------------------------|
|
|-------------------------+------------------------------------+--------------------------------------|
|
||||||
| *Control Architectures* | Proportional, Integral, Derivative | Full State Feedback | General Control Configuration |
|
| *Control Architectures* | Proportional, Integral, Derivative | Full State Feedback |
|
||||||
| | Leads, Lags | LQR, LQG | |
|
| | Leads, Lags | LQR, LQG |
|
||||||
| | | Kalman Filters | |
|
| | | Kalman Filters |
|
||||||
|-------------------------+------------------------------------+--------------------------------------+-------------------------------------------------------------------------|
|
|-------------------------+------------------------------------+--------------------------------------|
|
||||||
| *Advantages* | Study Stability | Automatic Synthesis | Automatic Synthesis |
|
| *Advantages* | Study Stability | Automatic Synthesis |
|
||||||
| | Simple | MIMO | MIMO |
|
| | Simple | MIMO |
|
||||||
| | Natural | Optimization Problem | Optimization Problem |
|
| | Natural | Optimization Problem |
|
||||||
| | | | Guaranteed Robustness |
|
| | | |
|
||||||
| | | | Easy specification of performances |
|
| | | |
|
||||||
|-------------------------+------------------------------------+--------------------------------------+-------------------------------------------------------------------------|
|
|-------------------------+------------------------------------+--------------------------------------|
|
||||||
| *Disadvantages* | Manual Method | No Guaranteed Robustness | Required knowledge of specific tools |
|
| *Disadvantages* | Manual Method | No Guaranteed Robustness |
|
||||||
| | Only SISO | Difficult Rejection of Perturbations | Need a reasonably good model of the system |
|
| | Only SISO | Difficult Rejection of Perturbations |
|
||||||
|
|
||||||
|
|
||||||
* Appendix :ignore:
|
* Appendix :ignore:
|
||||||
|
BIN
phd-thesis.pdf
BIN
phd-thesis.pdf
Binary file not shown.
364
phd-thesis.tex
364
phd-thesis.tex
@ -1,17 +1,18 @@
|
|||||||
% Created 2021-05-19 mer. 19:21
|
% Created 2023-01-26 Thu 09:33
|
||||||
% Intended LaTeX compiler: pdflatex
|
% Intended LaTeX compiler: pdflatex
|
||||||
\documentclass[a4paper, twoside, 11pt, onecolumn, bibliography=totoc, openright]{scrreprt}
|
\documentclass[a4paper, twoside, 11pt, onecolumn, bibliography=totoc, openright, appendixprefix=true]{scrreprt}
|
||||||
|
|
||||||
\input{config.tex}
|
\input{config.tex}
|
||||||
\newglossaryentry{ka}{name=\ensuremath{k_a},description={{Actuator Stiffness in}}}
|
|
||||||
\newglossaryentry{phi}{name=\ensuremath{\phi},description={{A woody bush}}}
|
|
||||||
\newacronym{mimo}{MIMO}{Multiple-Inputs Multiple-Outputs}
|
\newacronym{mimo}{MIMO}{Multiple-Inputs Multiple-Outputs}
|
||||||
\newacronym{siso}{SISO}{Single-Input Single-Output}
|
\newacronym{siso}{SISO}{Single-Input Single-Output}
|
||||||
\newacronym{nass}{NASS}{Nano Active Stabilization System}
|
\newacronym{nass}{NASS}{Nano Active Stabilization System}
|
||||||
\newacronym{lti}{LTI}{Linear Time Invariant}
|
\newacronym{lti}{LTI}{Linear Time Invariant}
|
||||||
|
\newglossaryentry{ka}{name=\ensuremath{k_a},description={{Actuator Stiffness in}}}
|
||||||
|
\newglossaryentry{phi}{name=\ensuremath{\phi},description={{A woody bush}}}
|
||||||
\input{config_extra.tex}
|
\input{config_extra.tex}
|
||||||
|
\addbibresource{ref.bib}
|
||||||
\author{Dehaeze Thomas}
|
\author{Dehaeze Thomas}
|
||||||
\date{2021-05-19}
|
\date{2023-01-26}
|
||||||
\title{PhD Thesis}
|
\title{PhD Thesis}
|
||||||
\subtitle{My subtitle}
|
\subtitle{My subtitle}
|
||||||
\hypersetup{
|
\hypersetup{
|
||||||
@ -19,12 +20,13 @@
|
|||||||
pdftitle={PhD Thesis},
|
pdftitle={PhD Thesis},
|
||||||
pdfkeywords={},
|
pdfkeywords={},
|
||||||
pdfsubject={},
|
pdfsubject={},
|
||||||
pdfcreator={Emacs 27.2 (Org mode 9.5)},
|
pdfcreator={Emacs 28.2 (Org mode 9.5.2)},
|
||||||
pdflang={English}}
|
pdflang={English}}
|
||||||
|
\usepackage{biblatex}
|
||||||
|
\addbibresource{~/Cloud/brain/biblio/references.bib}
|
||||||
\begin{document}
|
\begin{document}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
\begin{titlepage}
|
\begin{titlepage}
|
||||||
\vspace*{5cm}
|
\vspace*{5cm}
|
||||||
\makeatletter
|
\makeatletter
|
||||||
@ -55,39 +57,337 @@
|
|||||||
\thispagestyle{empty}
|
\thispagestyle{empty}
|
||||||
\newpage
|
\newpage
|
||||||
|
|
||||||
|
\chapter*{Abstract}
|
||||||
|
|
||||||
|
\chapter*{Résumé}
|
||||||
|
|
||||||
|
\chapter*{Acknowledgments}
|
||||||
|
|
||||||
|
\dominitoc
|
||||||
|
\tableofcontents
|
||||||
|
|
||||||
|
\listoftables
|
||||||
|
\listoffigures
|
||||||
|
|
||||||
|
\chapter{Introduction}
|
||||||
\chapter{Test}
|
\chapter{Test}
|
||||||
\label{sec:orgb0179e0}
|
\minitoc
|
||||||
|
\paragraph{Abstract}
|
||||||
|
|
||||||
|
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
|
||||||
|
|
||||||
\section{Test}
|
\section{Test}
|
||||||
\label{sec:orgf015fe9}
|
A list:
|
||||||
\begin{itemize}
|
\begin{itemize}
|
||||||
\item acronyms \gls{mimo}, \gls{siso}, and again \gls{mimo}
|
\item acronyms \acrshort{nass} \acrshort{mimo} \acrshort{lti} \acrfull{siso}
|
||||||
\item glossary terms \gls{ka}, \gls{phi}.
|
\item glossary terms \gls{ka}, \gls{phi}.
|
||||||
\item Bibliography citations: \cite{dehaeze21_activ_dampin_rotat_platf_using,dehaeze18_sampl_stabil_for_tomog_exper}
|
\item Bibliography citations: \cite{dehaeze21_activ_dampin_rotat_platf_using,dehaeze21_mechat_approac_devel_nano_activ_stabil_system}.
|
||||||
\end{itemize}
|
\end{itemize}
|
||||||
|
|
||||||
\section{blabla}
|
A definition list:
|
||||||
\label{sec:org4462f41}
|
\begin{description}
|
||||||
\begin{enumerate}
|
\item[{this}] means that
|
||||||
\item sdlfk
|
\item[{that}] means this
|
||||||
\label{sec:orgf9a136f}
|
\end{description}
|
||||||
|
|
||||||
\item sldkjf asdf
|
Some Footnote\footnote{this is a footnote with citation \cite{dehaeze21_mechat_approac_devel_nano_activ_stabil_system}.}
|
||||||
\label{sec:org2a91bfd}
|
|
||||||
\begin{enumerate}
|
|
||||||
\item lksdfjasd
|
|
||||||
\label{sec:org3333491}
|
|
||||||
\item lksdfjasd
|
|
||||||
\label{sec:org7f482e6}
|
|
||||||
\item lksdfjasd
|
|
||||||
\label{sec:org71575d5}
|
|
||||||
\end{enumerate}
|
|
||||||
\end{enumerate}
|
|
||||||
\section{blabla}
|
|
||||||
\label{sec:orgf06bbc2}
|
|
||||||
\chapter{Test}
|
|
||||||
\label{sec:orgb301b29}
|
|
||||||
|
|
||||||
\printbibliography
|
\section{Section}
|
||||||
|
\subsection{Sub section}
|
||||||
|
|
||||||
|
This is a sub section.
|
||||||
|
|
||||||
|
\subsection{Sub section}
|
||||||
|
Start of the sub section
|
||||||
|
\paragraph{Paragraph}
|
||||||
|
This is a paragraph
|
||||||
|
\paragraph{lksdfjasd}
|
||||||
|
|
||||||
|
\paragraph{lksdfjasd}
|
||||||
|
|
||||||
|
\section{blabla}
|
||||||
|
\chapter{Source Blocks}
|
||||||
|
\minitoc
|
||||||
|
\section{Figures}
|
||||||
|
\begin{minted}[]{matlab}
|
||||||
|
t = 0:0.01:5; % Time [s]
|
||||||
|
x = sin(2*pi*t); % Output Voltage [V]
|
||||||
|
\end{minted}
|
||||||
|
|
||||||
|
\begin{minted}[]{matlab}
|
||||||
|
figure;
|
||||||
|
plot(t, x);
|
||||||
|
xlabel('Time [s]'); ylabel('Voltage [V]');
|
||||||
|
\end{minted}
|
||||||
|
|
||||||
|
\begin{figure}[htbp]
|
||||||
|
\centering
|
||||||
|
\includegraphics[scale=1]{figs/matlab_fig_example.png}
|
||||||
|
\caption{\label{fig:matlab_fig_example}Matlab Figure}
|
||||||
|
\end{figure}
|
||||||
|
|
||||||
|
\section{Table Result}
|
||||||
|
|
||||||
|
\begin{minted}[]{matlab}
|
||||||
|
x = 1:10;
|
||||||
|
y = x.^2;
|
||||||
|
\end{minted}
|
||||||
|
|
||||||
|
\begin{table}[htbp]
|
||||||
|
\caption{\label{tab:table_name}Table caption}
|
||||||
|
\centering
|
||||||
|
\begin{tabular}{rr}
|
||||||
|
\(x\) & \(y = x^2\)\\
|
||||||
|
\hline
|
||||||
|
1 & 1\\
|
||||||
|
2 & 4\\
|
||||||
|
3 & 9\\
|
||||||
|
4 & 16\\
|
||||||
|
5 & 25\\
|
||||||
|
6 & 36\\
|
||||||
|
7 & 49\\
|
||||||
|
8 & 64\\
|
||||||
|
9 & 81\\
|
||||||
|
10 & 100\\
|
||||||
|
\end{tabular}
|
||||||
|
\end{table}
|
||||||
|
|
||||||
|
\section{Inline Results}
|
||||||
|
|
||||||
|
Results can be automatically outputed as shown below.
|
||||||
|
|
||||||
|
\begin{minted}[]{matlab}
|
||||||
|
sqrt(2)
|
||||||
|
\end{minted}
|
||||||
|
|
||||||
|
\begin{verbatim}
|
||||||
|
1.4142
|
||||||
|
\end{verbatim}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
\begin{minted}[]{matlab}
|
||||||
|
y
|
||||||
|
\end{minted}
|
||||||
|
|
||||||
|
\begin{verbatim}
|
||||||
|
y =
|
||||||
|
1 4 9 16 25 36 49 64 81 100
|
||||||
|
\end{verbatim}
|
||||||
|
|
||||||
|
\section{Caption and Reference}
|
||||||
|
|
||||||
|
Captions can be added to code blocks.
|
||||||
|
Moreover, we can link to specific bode blocks (Listing \ref{lst:matlab_figure} or \ref{lst:matlab_svd}).
|
||||||
|
|
||||||
|
\begin{listing}[htbp]
|
||||||
|
\begin{minted}[]{matlab}
|
||||||
|
figure;
|
||||||
|
[X,Y,Z] = peaks;
|
||||||
|
contour(X,Y,Z,20)
|
||||||
|
\end{minted}
|
||||||
|
\caption{\label{lst:matlab_figure}Code to produce a nice contour plot}
|
||||||
|
\end{listing}
|
||||||
|
|
||||||
|
\begin{figure}[htbp]
|
||||||
|
\centering
|
||||||
|
\includegraphics[scale=1]{figs/matlab_logo.png}
|
||||||
|
\caption{\label{fig:matlab_logo}Obtained Contour Plot}
|
||||||
|
\end{figure}
|
||||||
|
|
||||||
|
\begin{listing}[htbp]
|
||||||
|
\begin{minted}[]{matlab}
|
||||||
|
A = [1 2; 3 4; 5 6; 7 8]
|
||||||
|
[U,S,V] = svd(A)
|
||||||
|
\end{minted}
|
||||||
|
\caption{\label{lst:matlab_svd}Code to compute the Singular Value Decomposition}
|
||||||
|
\end{listing}
|
||||||
|
|
||||||
|
\begin{verbatim}
|
||||||
|
A = [1 2; 3 4; 5 6; 7 8]
|
||||||
|
A =
|
||||||
|
1 2
|
||||||
|
3 4
|
||||||
|
5 6
|
||||||
|
7 8
|
||||||
|
[U,S,V] = svd(A)
|
||||||
|
U =
|
||||||
|
-0.152483233310201 -0.82264747222566 -0.394501022283829 -0.379959133877596
|
||||||
|
-0.349918371807964 -0.42137528768458 0.242796545704357 0.800655879510063
|
||||||
|
-0.547353510305727 -0.0201031031435029 0.697909975442776 -0.461434357387336
|
||||||
|
-0.74478864880349 0.381169081397575 -0.546205498863303 0.0407376117548695
|
||||||
|
S =
|
||||||
|
14.2690954992615 0
|
||||||
|
0 0.626828232417541
|
||||||
|
0 0
|
||||||
|
0 0
|
||||||
|
V =
|
||||||
|
-0.641423027995072 0.767187395072177
|
||||||
|
-0.767187395072177 -0.641423027995072
|
||||||
|
\end{verbatim}
|
||||||
|
|
||||||
|
\section{Source Blocks with Line Numbers}
|
||||||
|
|
||||||
|
Citation \cite{taghirad13_paral,dehaeze21_activ_dampin_rotat_platf_using}
|
||||||
|
|
||||||
|
The Listing \ref{lst:matlab_line_numbers} has line numbers as the \texttt{-n} option was used.
|
||||||
|
|
||||||
|
Specific lines of codes can be referenced.
|
||||||
|
For instance, the code used to specify the wanted the vertical label is on line 4.
|
||||||
|
|
||||||
|
\begin{listing}[htbp]
|
||||||
|
\begin{minted}[linenos,firstnumber=1]{matlab}
|
||||||
|
figure;
|
||||||
|
plot(t, x)
|
||||||
|
xlabel('Time [s]');
|
||||||
|
ylabel('Output [V]');
|
||||||
|
\end{minted}
|
||||||
|
\caption{\label{lst:matlab_line_numbers}Specify Labels}
|
||||||
|
\end{listing}
|
||||||
|
|
||||||
|
Numbering can be continued by using \texttt{+n} option as shown below.
|
||||||
|
\begin{minted}[linenos,firstnumber=5]{matlab}
|
||||||
|
figure;
|
||||||
|
plot(t, u)
|
||||||
|
xlabel('Time [s]');
|
||||||
|
ylabel('Input [V]');
|
||||||
|
\end{minted}
|
||||||
|
|
||||||
|
\chapter{Images}
|
||||||
|
\minitoc
|
||||||
|
\section{Normal Image}
|
||||||
|
|
||||||
|
Figure \ref{fig:general_control_names} shows the results of the Tikz code of listing \ref{lst:tikz_test}.
|
||||||
|
|
||||||
|
\begin{listing}[htbp]
|
||||||
|
\begin{minted}[]{latex}
|
||||||
|
\begin{tikzpicture}
|
||||||
|
|
||||||
|
% Blocs
|
||||||
|
\node[block={2.0cm}{2.0cm}] (P) {$P$};
|
||||||
|
\node[block={1.5cm}{1.5cm}, below=0.7 of P] (K) {$K$};
|
||||||
|
|
||||||
|
% Input and outputs coordinates
|
||||||
|
\coordinate[] (inputw) at ($(P.south west)!0.75!(P.north west)$);
|
||||||
|
\coordinate[] (inputu) at ($(P.south west)!0.25!(P.north west)$);
|
||||||
|
\coordinate[] (outputz) at ($(P.south east)!0.75!(P.north east)$);
|
||||||
|
\coordinate[] (outputv) at ($(P.south east)!0.25!(P.north east)$);
|
||||||
|
|
||||||
|
% Connections and labels
|
||||||
|
\draw[<-] (inputw) -- ++(-1.5, 0);
|
||||||
|
\draw[<-] (inputu) -- ++(-0.8, 0) |- (K.west);
|
||||||
|
|
||||||
|
\draw[->] (outputz) -- ++(1.5, 0);
|
||||||
|
\draw[->] (outputv) -- ++(0.8, 0) |- (K.east);
|
||||||
|
\end{tikzpicture}
|
||||||
|
\end{minted}
|
||||||
|
\caption{\label{lst:tikz_test}Tikz code that is used to generate Figure \ref{fig:general_control_names}}
|
||||||
|
\end{listing}
|
||||||
|
|
||||||
|
\begin{figure}[htbp]
|
||||||
|
\centering
|
||||||
|
\includegraphics[scale=1]{figs/general_control_names.png}
|
||||||
|
\caption{\label{fig:general_control_names}General Control Configuration}
|
||||||
|
\end{figure}
|
||||||
|
|
||||||
|
\section{Sub Images}
|
||||||
|
|
||||||
|
Link to subfigure \ref{fig:general_control_names_1}.
|
||||||
|
|
||||||
|
\begin{figure}[htbp]
|
||||||
|
\begin{subfigure}[c]{0.49\linewidth}
|
||||||
|
\centering
|
||||||
|
\includegraphics[scale=1]{figs/general_control_names.png}
|
||||||
|
\caption{\label{fig:general_control_names_1} sub figure caption}
|
||||||
|
\end{subfigure}
|
||||||
|
\hfill
|
||||||
|
\begin{subfigure}[c]{0.49\linewidth}
|
||||||
|
\centering
|
||||||
|
\includegraphics[scale=1]{figs/general_control_names.png}
|
||||||
|
\caption{\label{fig:general_control_names_2} sub figure caption}
|
||||||
|
\end{subfigure}
|
||||||
|
\hfill
|
||||||
|
\caption{\label{fig:subfigure}Subfigure Caption}
|
||||||
|
\centering
|
||||||
|
\end{figure}
|
||||||
|
|
||||||
|
\chapter{Tables}
|
||||||
|
\minitoc
|
||||||
|
|
||||||
|
Table \ref{tab:table_with_equations} shows a table with some mathematics inside.
|
||||||
|
|
||||||
|
\begin{table}[htbp]
|
||||||
|
\caption{\label{tab:table_with_equations}A Simple table with included math}
|
||||||
|
\centering
|
||||||
|
\begin{tabular}{rrrrrr}
|
||||||
|
\(N\) & \(N^2\) & \(N^3\) & \(N^4\) & \(\sqrt n\) & \(\sqrt[4]N\)\\
|
||||||
|
\hline
|
||||||
|
1 & 1 & 1 & 1 & 1 & 1\\
|
||||||
|
2 & 4 & 8 & 16 & 1.4142136 & 1.1892071\\
|
||||||
|
3 & 9 & 27 & 81 & 1.7320508 & 1.3160740\\
|
||||||
|
\end{tabular}
|
||||||
|
\end{table}
|
||||||
|
|
||||||
|
\begin{table}[htbp]
|
||||||
|
\caption{\label{tab:table_without_head}Table without Head}
|
||||||
|
\centering
|
||||||
|
\begin{tabular}{lrrrrr}
|
||||||
|
& \textbf{1} & \textbf{2} & \textbf{3} & \textbf{4} & \textbf{5}\\
|
||||||
|
\textbf{1} & 1 & 2 & 3 & 4 & 5\\
|
||||||
|
\textbf{2} & 2 & 4 & 6 & 8 & 10\\
|
||||||
|
\textbf{3} & 3 & 6 & 9 & 12 & 15\\
|
||||||
|
\textbf{4} & 4 & 8 & 12 & 16 & 20\\
|
||||||
|
\textbf{5} & 5 & 10 & 15 & 20 & 25\\
|
||||||
|
\end{tabular}
|
||||||
|
\end{table}
|
||||||
|
|
||||||
|
\begin{table}[htbp]
|
||||||
|
\caption{\label{tab:table_multiple_heads}Table with multiples groups}
|
||||||
|
\centering
|
||||||
|
\footnotesize
|
||||||
|
\begin{tabular}{lcc}
|
||||||
|
& \textbf{Classical Control} & \textbf{Modern Control}\\
|
||||||
|
\hline
|
||||||
|
\textbf{Date} & 1930- & 1960-\\
|
||||||
|
\hline
|
||||||
|
\textbf{Tools} & Transfer Functions & State Space formulation\\
|
||||||
|
& Nyquist Plots & Riccati Equations\\
|
||||||
|
& Bode Plots & \\
|
||||||
|
& Phase and Gain margins & \\
|
||||||
|
\hline
|
||||||
|
\textbf{Control Architectures} & Proportional, Integral, Derivative & Full State Feedback\\
|
||||||
|
& Leads, Lags & LQR, LQG\\
|
||||||
|
& & Kalman Filters\\
|
||||||
|
\hline
|
||||||
|
\textbf{Advantages} & Study Stability & Automatic Synthesis\\
|
||||||
|
& Simple & MIMO\\
|
||||||
|
& Natural & Optimization Problem\\
|
||||||
|
& & \\
|
||||||
|
& & \\
|
||||||
|
\hline
|
||||||
|
\textbf{Disadvantages} & Manual Method & No Guaranteed Robustness\\
|
||||||
|
& Only SISO & Difficult Rejection of Perturbations\\
|
||||||
|
\end{tabular}
|
||||||
|
\end{table}
|
||||||
|
|
||||||
|
|
||||||
|
\appendix
|
||||||
|
|
||||||
|
\chapter{Mathematical formulas}
|
||||||
|
\chapter{Comments on something}
|
||||||
|
\printbibliography[heading=bibintoc,title={Bibliography}]
|
||||||
|
|
||||||
|
\chapter*{List of Publications}
|
||||||
|
\begin{refsection}[ref.bib]
|
||||||
|
% List all papers even if not cited
|
||||||
|
\nocite{*}
|
||||||
|
% Sort by year
|
||||||
|
\newrefcontext[sorting=ynt]
|
||||||
|
% Articles
|
||||||
|
\printbibliography[keyword={publication},heading={subbibliography},title={Articles},env=mypubs,type={article}]
|
||||||
|
% Proceedings
|
||||||
|
\printbibliography[keyword={publication},heading={subbibliography},title={In Proceedings},env=mypubs,type={inproceedings}]
|
||||||
|
\end{refsection}
|
||||||
|
|
||||||
\printglossary[type=\acronymtype]
|
\printglossary[type=\acronymtype]
|
||||||
\printglossary
|
\printglossary
|
||||||
|
Loading…
x
Reference in New Issue
Block a user