copy old stuff in here and build somthing around it

master
Simon Bruder 6 years ago
commit c35ed6dbc1
No known key found for this signature in database
GPG Key ID: 6F03E0000CC5B62F

17
.gitignore vendored

@ -0,0 +1,17 @@
# LaTeX build files
/latex/**/*.aux
/latex/**/*.eps
/latex/**/*.log
/latex/**/*.nav
/latex/**/*.out
/latex/**/*.snm
/latex/**/*.toc
# generated pdfs (reveal pdf export and LaTeX)
*.pdf
# fonts downloaded by script
/latex/fonts
# node modules (revealjs)
node_modules

6
.gitmodules vendored

@ -0,0 +1,6 @@
[submodule "latex/mtheme"]
path = latex/mtheme
url = https://github.com/matze/mtheme
[submodule "revealjs/amnesty/amnesty-dp-2016"]
path = revealjs/amnesty/amnesty-dp-2016
url = https://github.com/wearethoughtfox/amnesty-dp-2016

@ -0,0 +1,17 @@
MIT License
Copyright (c) 2018 Simon Bruder
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

@ -0,0 +1,99 @@
.PHONY: clean
clean:
find latex \
-type f \
\( \
-iname "*.aux" \
-o -iname "*.nav" \
-o -iname "*.out" \
-o -iname "*.toc" \
-o -iname "*.snm" \
-o -iname "*.log" \
-o -iname "*.eps" \
\) \
-delete
find . -iname "*.pdf" -type f -delete
rm -rf latex/fonts revealjs/node_modules
latex/fonts:
mkdir $@
.PHONY: fonts
fonts: latex/fonts
wget -P latex/fonts -c -q \
https://cdn.jsdelivr.net/npm/roboto-fontface/fonts/roboto/Roboto-Black.ttf \
https://cdn.jsdelivr.net/npm/roboto-fontface/fonts/roboto/Roboto-BlackItalic.ttf \
https://cdn.jsdelivr.net/npm/roboto-fontface/fonts/roboto/Roboto-Bold.ttf \
https://cdn.jsdelivr.net/npm/roboto-fontface/fonts/roboto/Roboto-BoldItalic.ttf \
https://cdn.jsdelivr.net/npm/roboto-fontface/fonts/roboto/Roboto-Light.ttf \
https://cdn.jsdelivr.net/npm/roboto-fontface/fonts/roboto/Roboto-LightItalic.ttf \
https://cdn.jsdelivr.net/npm/roboto-fontface/fonts/roboto/Roboto-Medium.ttf \
https://cdn.jsdelivr.net/npm/roboto-fontface/fonts/roboto/Roboto-MediumItalic.ttf \
https://cdn.jsdelivr.net/npm/roboto-fontface/fonts/roboto/Roboto-Regular.ttf \
https://cdn.jsdelivr.net/npm/roboto-fontface/fonts/roboto/Roboto-RegularItalic.ttf \
https://cdn.jsdelivr.net/npm/roboto-fontface/fonts/roboto/Roboto-Thin.ttf \
https://cdn.jsdelivr.net/npm/roboto-fontface/fonts/roboto/Roboto-ThinItalic.ttf \
https://cdn.jsdelivr.net/npm/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Bold.ttf \
https://cdn.jsdelivr.net/npm/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Light.ttf \
https://cdn.jsdelivr.net/npm/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Regular.ttf \
https://cdn.jsdelivr.net/npm/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Thin.ttf \
https://cdn.jsdelivr.net/npm/roboto-mono-webfont/fonts/RobotoMono-Bold.ttf \
https://cdn.jsdelivr.net/npm/roboto-mono-webfont/fonts/RobotoMono-BoldItalic.ttf \
https://cdn.jsdelivr.net/npm/roboto-mono-webfont/fonts/RobotoMono-Italic.ttf \
https://cdn.jsdelivr.net/npm/roboto-mono-webfont/fonts/RobotoMono-Light.ttf \
https://cdn.jsdelivr.net/npm/roboto-mono-webfont/fonts/RobotoMono-LightItalic.ttf \
https://cdn.jsdelivr.net/npm/roboto-mono-webfont/fonts/RobotoMono-Medium.ttf \
https://cdn.jsdelivr.net/npm/roboto-mono-webfont/fonts/RobotoMono-MediumItalic.ttf \
https://cdn.jsdelivr.net/npm/roboto-mono-webfont/fonts/RobotoMono-Regular.ttf \
https://cdn.jsdelivr.net/npm/roboto-mono-webfont/fonts/RobotoMono-Thin.ttf \
https://cdn.jsdelivr.net/npm/roboto-mono-webfont/fonts/RobotoMono-ThinItalic.ttf \
https://cdn.jsdelivr.net/npm/mozilla-fira-pack/Fira/ttf/FiraMono-Bold.ttf \
https://cdn.jsdelivr.net/npm/mozilla-fira-pack/Fira/ttf/FiraMono-Medium.ttf \
https://cdn.jsdelivr.net/npm/mozilla-fira-pack/Fira/ttf/FiraMono-Regular.ttf \
https://cdn.jsdelivr.net/npm/mozilla-fira-pack/Fira/ttf/FiraSans-Bold.ttf \
https://cdn.jsdelivr.net/npm/mozilla-fira-pack/Fira/ttf/FiraSans-BoldItalic.ttf \
https://cdn.jsdelivr.net/npm/mozilla-fira-pack/Fira/ttf/FiraSans-Book.ttf \
https://cdn.jsdelivr.net/npm/mozilla-fira-pack/Fira/ttf/FiraSans-BookItalic.ttf \
https://cdn.jsdelivr.net/npm/mozilla-fira-pack/Fira/ttf/FiraSans-Eight.ttf \
https://cdn.jsdelivr.net/npm/mozilla-fira-pack/Fira/ttf/FiraSans-EightItalic.ttf \
https://cdn.jsdelivr.net/npm/mozilla-fira-pack/Fira/ttf/FiraSans-ExtraBold.ttf \
https://cdn.jsdelivr.net/npm/mozilla-fira-pack/Fira/ttf/FiraSans-ExtraBoldItalic.ttf \
https://cdn.jsdelivr.net/npm/mozilla-fira-pack/Fira/ttf/FiraSans-ExtraLight.ttf \
https://cdn.jsdelivr.net/npm/mozilla-fira-pack/Fira/ttf/FiraSans-ExtraLightItalic.ttf \
https://cdn.jsdelivr.net/npm/mozilla-fira-pack/Fira/ttf/FiraSans-Four.ttf \
https://cdn.jsdelivr.net/npm/mozilla-fira-pack/Fira/ttf/FiraSans-FourItalic.ttf \
https://cdn.jsdelivr.net/npm/mozilla-fira-pack/Fira/ttf/FiraSans-Hair.ttf \
https://cdn.jsdelivr.net/npm/mozilla-fira-pack/Fira/ttf/FiraSans-HairItalic.ttf \
https://cdn.jsdelivr.net/npm/mozilla-fira-pack/Fira/ttf/FiraSans-Heavy.ttf \
https://cdn.jsdelivr.net/npm/mozilla-fira-pack/Fira/ttf/FiraSans-HeavyItalic.ttf \
https://cdn.jsdelivr.net/npm/mozilla-fira-pack/Fira/ttf/FiraSans-Light.ttf \
https://cdn.jsdelivr.net/npm/mozilla-fira-pack/Fira/ttf/FiraSans-Italic.ttf \
https://cdn.jsdelivr.net/npm/mozilla-fira-pack/Fira/ttf/FiraSans-LightItalic.ttf \
https://cdn.jsdelivr.net/npm/mozilla-fira-pack/Fira/ttf/FiraSans-Medium.ttf \
https://cdn.jsdelivr.net/npm/mozilla-fira-pack/Fira/ttf/FiraSans-MediumItalic.ttf \
https://cdn.jsdelivr.net/npm/mozilla-fira-pack/Fira/ttf/FiraSans-Regular.ttf \
https://cdn.jsdelivr.net/npm/mozilla-fira-pack/Fira/ttf/FiraSans-SemiBold.ttf \
https://cdn.jsdelivr.net/npm/mozilla-fira-pack/Fira/ttf/FiraSans-SemiBoldItalic.ttf \
https://cdn.jsdelivr.net/npm/mozilla-fira-pack/Fira/ttf/FiraSans-Thin.ttf \
https://cdn.jsdelivr.net/npm/mozilla-fira-pack/Fira/ttf/FiraSans-ThinItalic.ttf \
https://cdn.jsdelivr.net/npm/mozilla-fira-pack/Fira/ttf/FiraSans-Two.ttf \
https://cdn.jsdelivr.net/npm/mozilla-fira-pack/Fira/ttf/FiraSans-TwoItalic.ttf \
https://cdn.jsdelivr.net/npm/mozilla-fira-pack/Fira/ttf/FiraSans-Ultra.ttf \
https://cdn.jsdelivr.net/npm/mozilla-fira-pack/Fira/ttf/FiraSans-UltraItalic.ttf \
https://cdn.jsdelivr.net/npm/mozilla-fira-pack/Fira/ttf/FiraSans-UltraLightItalic.ttf \
https://cdn.jsdelivr.net/npm/mozilla-fira-pack/Fira/ttf/FiraSans-UltraLight.ttf
revealjs/node_modules:
(cd $(@D) && npm install)
revealjs/%/index.pdf: revealjs/%/index.html
phantomjs revealjs/node_modules/reveal.js/plugin/print-pdf/print-pdf.js file://$(PWD)/$<?print-pdf $@
latex/%/index.pdf: latex/%/index.tex
(cd $(@D) && rubber --module xelatex index.tex)
%.eps: %.svg
inkscape -D -z --file="$<" --export-eps="$@"
%/handout.pdf: %/handout.odt
libreoffice --headless --convert-to pdf "$<" --outdir $(@D)

@ -0,0 +1,2 @@
# presis

@ -0,0 +1,39 @@
#!/bin/bash
set -e
set -x
##
# Build LaTeX documents
##
make fonts
for presi in latex/*;do
# [ "$presi" == "latex/mtheme" ] && break
# [ "$presi" == "latex/fonts" ] && break
for file in $presi/*.svg;do
[ -e "$file" ] && make "${file%.svg}".eps
done
[ -e "$presi/index.tex" ] && make "$presi/index.pdf"
[ -e "$presi/handout.odt" ] && make "$presi/handout.pdf"
done
##
# install nodejs modules
##
make revealjs/node_modules
##
# Build PDF for revealjs
##
for presi in revealjs/*;do
# [ "$presi" == "revealjs/node_modules" ] && break
[ -e "$presi/index.html" ] && make "$presi/index.pdf"
[ -e $presi/handout.odt ] && make "$presi/handout.pdf"
done

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Präsentationen</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Präsentationen</h1>
<table>
<tr><td></td><td><a href="latex/brom/index.pdf">Element: Brom (Br)</a></td></tr>
<tr><td></td><td><a href="revealjs/ffmpeg_englisch/">FFmpeg</a></td></tr>
<tr><td></td><td><a href="revealjs/ffmpeg_englisch/index.pdf">FFmpeg (pdf)</a></td></tr>
<tr><td></td><td><a href="revealjs/kilimandscharo/">Kilimandscharo</a></td></tr>
<tr><td></td><td><a href="revealjs/snowden/">Snowden</a></td></tr>
<tr><td></td><td><a href="revealjs/snowden/index.pdf">Snowden (pdf)</a></td></tr>
<tr><td></td><td><a href="revealjs/snowden/handout.pdf">Snowden (handout)</a></td></tr>
</table>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

@ -0,0 +1,166 @@
% Needs XeLaTeX
\documentclass[aspectratio=43]{beamer}
%\documentclass[aspectratio=1610]{beamer}
\usepackage[ngerman]{babel}
\usepackage{graphicx}
\usepackage{hyperref}
\usepackage{siunitx}
\usepackage{unicode-math}
%\usepackage{pgfpages}
\usetheme{Ilmenau}
% Dark theme
%\usetheme[numbering=none, progressbar=frametitle, background=dark]{metropolis}
% Light theme
%\usetheme[numbering=none, progressbar=frametitle, background=light]{metropolis}
\usepackage{fontspec}
\setsansfont{}[ % Default
Path = /home/simon/.fonts/non-free/FF Din/,
Extension = .ttf,
UprightFont = DINW07-Regular,
BoldFont = DINW07-Bold,
ItalicFont = DINW07-Italic,
]
\setmainfont{}[ % Activate with \textrm{}
Path = /usr/share/fonts/truetype/vollkorn/,
Extension = .ttf,
UprightFont = Vollkorn-Regular,
BoldFont = Vollkorn-Bold,
ItalicFont = Vollkorn-Italic,
]
%\setmonofont{}[ % Activate with \texttt{}
% Path = /home/simon/.fonts/typecatcher/,
% Extension = .ttf,
% UprightFont = Roboto Mono_regular,
% BoldFont = Roboto Mono_300,
% ItalicFont = Roboto Mono_italic,
%]
\setbeamercovered{transparent}
\beamertemplatenavigationsymbolsempty
\title{Element: Brom (Br)}
%\subtitle{Brom ist lecker}
\author{Simon Bruder}
\institute{Christian-von-Bomhard-Schule}
\date{04.12.2017}
\titlegraphic{\includegraphics[height=4.5cm]{brom-glas}}
%\logo{\includegraphics[width=1.8cm]{flag}}
\begin{document}
\frame[plain]{
\titlepage
}
\institute{Christian-von-Bromhard-Schule}
\frame[plain]{
\tableofcontents
}
\section{Wissenswertes}
\subsection{Schnelle Fakten}
\begin{frame}
\frametitle{Brom im Periodensystem}
\includegraphics[width=\textwidth]{periodic-table-brom-magnified}
\end{frame}
\begin{frame}
\frametitle{Überblick}
\begin{itemize}
\pause{}
\item{\textit{brõmos} (altgr.: Gestank)}
\pause{}
\item{Summenformel: $Br_{2}$}
\pause{}
\item{$-7.26\pm0.01$\,\si{\degreeCelsius} < flüssig < $59.25\pm0.45$\,\si{\degreeCelsius}}
\pause{}
\item{Dichte: $3.14\pm0.052$\,\large{$\frac{g}{cm^{3}}$}}
\pause{}
\item{Löslichkeit in Wasser: \Large{$\frac{35\pm3\,g}{1\,}$}}
\pause{}
\item{Farbe: rotbraun}
\end{itemize}
\end{frame}
\subsection{Gesundheit}
\begin{frame}
\frametitle{Gesundheit}
\begin{itemize}
\pause{}
\item{Bei Inhalation: Verätzung der Atemwege}
\pause{}
\item{Versuche an Mäusen: Akute Schäden ab $299\pm125\,ppm$\footnote{ppm = $10^{-6}$ = 0.000001}}
\pause{}
\item{Kann in Verbindungen als Arzneimittel eingesetzt werden}
\end{itemize}
\end{frame}
\section{Verbindungen}
\begin{frame}
\frametitle{Verbindungen}
\begin{itemize}
\item{Natriumbromid ($NaBr$)}
\item{Bromwasserstoff ($HBr$)}
\item{Kaliumbromid ($KBr$)}
\item{Bromaceton ($C_{3}H_{5}BrO$)}
\item{Silberbromid ($AgBr$)}
\end{itemize}
\end{frame}
\section{Vorkommen}
\begin{frame}
\frametitle{Vorkommen}
\begin{itemize}
\pause{}
\item{Durch hohe Reaktionsfreudigkeit kein Vorkommen an elementarem Brom}
\pause{}
\item{Meerwasser: $67\,ppm$ = \Large{$\frac{67\,mg}{}$}}
\pause{}
\item{Hauptexporteure: USA, Israel, Deutschland}
\end{itemize}
\end{frame}
\section{Verwendung}
\begin{frame}
\frametitle{Verwendung}
\begin{itemize}
\pause{}
\item{Arzneimittel (Kalium-, Natriumbromid)}
\pause{}
\item{Insektizid (Bromaceton)}
\pause{}
\item{Fotoblitz (Silberbromid)}
\pause{}
\item{Heute meistens durch andere Mittel abgelöst}
\end{itemize}
\end{frame}
\section*{Schluss}
\subsection*{Quellen}
\begin{frame}
\begin{itemize}
\item{CC-BY-SA 3.0 Wilco Oelen\footnote{http://woelen.homescience.net/science/chem/compounds/bromine.jpg}}
\item{Armtuk: Periodic Table Armtuk3.svg in Wikimedia Commons (CC-BY-SA 3.0)\footnote{https://commons.wikimedia.org/wiki/File:Periodic\_Table\_Armtuk3.svg}}
\item{ECHA European Chemicals Agency\footnote{https://www.echa.europa.eu/web/guest/brief-profile/-/briefprofile/100.028.890}}
\item{PubChem Project\footnote{https://pubchem.ncbi.nlm.nih.gov/}}
\item{Wolfram|Alpha\footnote{https://www.wolframalpha.com/}}
\item{Bromine: Ocurrence\footnote{http://nautilus.fis.uc.pt/st2.5/scenes-e/elem/e03520.html}}
\item{Duden | Brom\footnote{https://www.duden.de/rechtschreibung/Brom}}
\end{itemize}
\end{frame}
\end{document}

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 172 KiB

@ -0,0 +1,122 @@
%%
%% This is file `siunitx-abbreviations.cfg',
%% generated with the docstrip utility.
%%
%% The original source files were:
%%
%% siunitx.dtx (with options: `config,abbreviations')
%% ---------------------------------------------------------------
%% The siunitx package --- A comprehensive (SI) units package
%% Maintained by Joseph Wright
%% E-mail: joseph.wright@morningstar2.co.uk
%% Released under the LaTeX Project Public License v1.3c or later
%% See http://www.latex-project.org/lppl.txt
%% ---------------------------------------------------------------
%%
\ProvidesExplFile {siunitx-abbreviations.cfg} {2017/11/26} {2.7k}
{siunitx: Abbreviated units}
\DeclareSIUnit \A { \ampere }
\DeclareSIUnit \pA { \pico \ampere }
\DeclareSIUnit \nA { \nano \ampere }
\DeclareSIUnit \uA { \micro \ampere }
\DeclareSIUnit \mA { \milli \ampere }
\DeclareSIUnit \kA { \kilo \ampere }
\DeclareSIUnit \Hz { \hertz }
\DeclareSIUnit \mHz { \milli \hertz }
\DeclareSIUnit \kHz { \kilo \hertz }
\DeclareSIUnit \MHz { \mega \hertz }
\DeclareSIUnit \GHz { \giga \hertz }
\DeclareSIUnit \THz { \tera \hertz }
\DeclareSIUnit \mol { \mole }
\DeclareSIUnit \fmol { \femto \mole }
\DeclareSIUnit \pmol { \pico \mole }
\DeclareSIUnit \nmol { \nano \mole }
\DeclareSIUnit \umol { \micro \mole }
\DeclareSIUnit \mmol { \milli \mole }
\DeclareSIUnit \kmol { \kilo \mole }
\DeclareSIUnit \V { \volt }
\DeclareSIUnit \pV { \pico \volt }
\DeclareSIUnit \nV { \nano \volt }
\DeclareSIUnit \uV { \micro \volt }
\DeclareSIUnit \mV { \milli \volt }
\DeclareSIUnit \kV { \kilo \volt }
\DeclareSIUnit \hl { \hecto \litre }
\DeclareSIUnit \l { \litre }
\DeclareSIUnit \ml { \milli \litre }
\DeclareSIUnit \ul { \micro \litre }
\DeclareSIUnit \hL { \hecto \liter }
\DeclareSIUnit \L { \liter }
\DeclareSIUnit \mL { \milli \liter }
\DeclareSIUnit \uL { \micro \liter }
\DeclareSIUnit \fg { \femto \gram }
\DeclareSIUnit \pg { \pico \gram }
\DeclareSIUnit \ng { \nano \gram }
\DeclareSIUnit \ug { \micro \gram }
\DeclareSIUnit \mg { \milli \gram }
\DeclareSIUnit \g { \gram }
\DeclareSIUnit \kg { \kilo \gram }
\DeclareSIUnit \amu { \atomicmassunit }
\DeclareSIUnit \W { \watt }
\DeclareSIUnit \uW { \micro \watt }
\DeclareSIUnit \mW { \milli \watt }
\DeclareSIUnit \kW { \kilo \watt }
\DeclareSIUnit \MW { \mega \watt }
\DeclareSIUnit \GW { \giga \watt }
\DeclareSIUnit \J { \joule }
\DeclareSIUnit \kJ { \kilo \joule }
\DeclareSIUnit \eV { \electronvolt }
\DeclareSIUnit \meV { \milli \electronvolt }
\DeclareSIUnit \keV { \kilo \electronvolt }
\DeclareSIUnit \MeV { \mega \electronvolt }
\DeclareSIUnit \GeV { \giga \electronvolt }
\DeclareSIUnit \TeV { \tera \electronvolt }
\DeclareSIUnit [ inter-unit-product = ] \kWh { \kilo \watt \hour }
\DeclareSIUnit \m { \metre }
\DeclareSIUnit \pm { \pico \metre }
\DeclareSIUnit \nm { \nano \metre }
\DeclareSIUnit \um { \micro \metre }
\DeclareSIUnit \mm { \milli \metre }
\DeclareSIUnit \cm { \centi \metre }
\DeclareSIUnit \dm { \deci \metre }
\DeclareSIUnit \km { \kilo \metre }
\DeclareSIUnit \K { \kelvin }
\DeclareSIUnit \dB { \deci \bel }
\DeclareSIUnit \F { \farad }
\DeclareSIUnit \fF { \femto \farad }
\DeclareSIUnit \pF { \pico \farad }
\DeclareSIUnit \N { \newton }
\DeclareSIUnit \mN { \milli \newton }
\DeclareSIUnit \kN { \kilo \newton }
\DeclareSIUnit \MN { \mega \newton }
\DeclareSIUnit \Pa { \pascal }
\DeclareSIUnit \kPa { \kilo \pascal }
\DeclareSIUnit \MPa { \mega \pascal }
\DeclareSIUnit \GPa { \giga \pascal }
\DeclareSIUnit \mohm { \milli \ohm }
\DeclareSIUnit \kohm { \kilo \ohm }
\DeclareSIUnit \Mohm { \mega \ohm }
\DeclareSIUnit \s { \second }
\DeclareSIUnit \as { \atto \second }
\DeclareSIUnit \fs { \femto \second }
\DeclareSIUnit \ps { \pico \second }
\DeclareSIUnit \ns { \nano \second }
\DeclareSIUnit \us { \micro \second }
\DeclareSIUnit \ms { \milli \second }
%% Copyright (C) 2008-2017 by
%% Joseph Wright <joseph.wright@morningstar2.co.uk>
%%
%% It may be distributed and/or modified under the conditions of
%% the LaTeX Project Public License (LPPL), either version 1.3c of
%% this license or (at your option) any later version. The latest
%% version of this license is in the file:
%% http://www.latex-project.org/lppl.txt
%%
%% This work is "maintained" (as per LPPL maintenance status) by
%% Joseph Wright.
%%
%% This work consists of the file siunitx.dtx
%% and the derived files siunitx.pdf,
%% siunitx.sty and
%% siunitx.ins.
%%
%% End of file `siunitx-abbreviations.cfg'.

@ -0,0 +1,45 @@
%%
%% This is file `siunitx-binary.cfg',
%% generated with the docstrip utility.
%%
%% The original source files were:
%%
%% siunitx.dtx (with options: `config,binary')
%% ---------------------------------------------------------------
%% The siunitx package --- A comprehensive (SI) units package
%% Maintained by Joseph Wright
%% E-mail: joseph.wright@morningstar2.co.uk
%% Released under the LaTeX Project Public License v1.3c or later
%% See http://www.latex-project.org/lppl.txt
%% ---------------------------------------------------------------
%%
\ProvidesExplFile {siunitx-binary.cfg} {2017/11/26} {2.7k}
{siunitx: Binary units}
\DeclareBinaryPrefix \kibi { Ki } { 10 }
\DeclareBinaryPrefix \mebi { Mi } { 20 }
\DeclareBinaryPrefix \gibi { Gi } { 30 }
\DeclareBinaryPrefix \tebi { Ti } { 40 }
\DeclareBinaryPrefix \pebi { Pi } { 50 }
\DeclareBinaryPrefix \exbi { Ei } { 60 }
\DeclareBinaryPrefix \zebi { Zi } { 70 }
\DeclareBinaryPrefix \yobi { Yi } { 80 }
\DeclareSIUnit \bit { bit }
\DeclareSIUnit \byte { B }
%% Copyright (C) 2008-2017 by
%% Joseph Wright <joseph.wright@morningstar2.co.uk>
%%
%% It may be distributed and/or modified under the conditions of
%% the LaTeX Project Public License (LPPL), either version 1.3c of
%% this license or (at your option) any later version. The latest
%% version of this license is in the file:
%% http://www.latex-project.org/lppl.txt
%%
%% This work is "maintained" (as per LPPL maintenance status) by
%% Joseph Wright.
%%
%% This work consists of the file siunitx.dtx
%% and the derived files siunitx.pdf,
%% siunitx.sty and
%% siunitx.ins.
%%
%% End of file `siunitx-binary.cfg'.

@ -0,0 +1,747 @@
%%
%% This is file `siunitx-version-1.cfg',
%% generated with the docstrip utility.
%%
%% The original source files were:
%%
%% siunitx.dtx (with options: `config,version-1')
%% ---------------------------------------------------------------
%% The siunitx package --- A comprehensive (SI) units package
%% Maintained by Joseph Wright
%% E-mail: joseph.wright@morningstar2.co.uk
%% Released under the LaTeX Project Public License v1.3c or later
%% See http://www.latex-project.org/lppl.txt
%% ---------------------------------------------------------------
%%
\ProvidesExplFile {siunitx-version-1.cfg} {2017/11/26} {2.7k}
{siunitx: Version 1 settings}
\keys_define:nn { siunitx } {
addsign .choice: ,
addsign /
all .meta:n = { explicit-sign = + },
addsign /
exp .meta:n = { explicit-sign = + },
addsign /
false .meta:n = { explicit-sign = },
addsign /
mant .meta:n = { explicit-sign = + },
addsign /
none .meta:n = { explicit-sign = },
addsign /
true .meta:n = { explicit-sign = + },
addsign .default:n = { true },
allowlitunits .meta:n = { free-standing-units = #1 },
allowlitunits .default:n = { true },
allowoptarg .meta:n = { unit-optional-argument = #1 },
allowoptargs .default:n = { true },
allowzeroexp .meta:n = { retain-zero-exponent = #1 },
allowzeroexp .default:n = { true },
alsoload .code:n = ,
angformat .code:n = ,
anglesep .choice: ,
anglesep /
cdot .meta:n =
{ arc-separator = \ensuremath { { } \cdot { } } },
anglesep /
comma .meta:n = { arc-separator = \ensuremath { { {,} } } },
anglesep /
fullstop .meta:n = { arc-separator = \ensuremath { { { . } } } },
anglesep /
med .meta:n = { arc-separator = \ensuremath { \: } },
anglesep /
medium .meta:n = { arc-separator = \ensuremath { \: } },
anglesep /
none .meta:n = { arc-separator = },
anglesep /
period .meta:n = { arc-separator = \ensuremath { { { . } } } },
anglesep /
space .meta:n = { arc-separator = \text { ~ } },
anglesep /
stop .meta:n = { arc-separator = \ensuremath { { { . } } } },
anglesep /
thick .meta:n = { arc-separator = \ensuremath { \; } },
anglesep /
thin .meta:n = { arc-separator = \ensuremath { \, } },
anglesep /
tightcdot .meta:n =
{ arc-separator = \ensuremath { \bgroup \cdot \egroup } },
anglesep /
tighttimes .meta:n =
{ arc-separator = \ensuremath { \bgroup \times \egroup } },
anglesep /
times .meta:n = { arc-separator = \ensuremath { \times } },
anglesep /
unknown .meta:n = { arc-separator = \ensuremath {#1} },
astroang .meta:n =
{ angle-symbol-over-decimal = #1 },
astroang .default:n = { true },
closeerr .meta:n = { close-bracket = \ensuremath {#1} },
closefrac .meta:n = { close-bracket = \ensuremath {#1} },
closerange .meta:n = { close-bracket = \ensuremath {#1} },
colour .code:n = { color = #1 },
colorall .code:n = ,
colourall .code:n = ,
colorneg .code:n = ,
colourneg .code:n = ,
colorunits .meta:n = ,
colourunits .meta:n = ,
colorvalues .meta:n = ,
colourvalues .meta:n = ,
decimalsymbol .choice: ,
decimalsymbol /
cdot .meta:n =
{ output-decimal-marker = \ensuremath { { } \cdot { } } },
decimalsymbol /
comma .meta:n = { output-decimal-marker = { \ensuremath { { , } } } },
decimalsymbol /
fullstop .meta:n = { output-decimal-marker = { \ensuremath { { . } } } },
decimalsymbol /
period .meta:n = { output-decimal-marker = { \ensuremath { { . } } } },
decimalsymbol /
stop .meta:n = { output-decimal-marker = { \ensuremath { { . } } } },
decimalsymbol /
tightcdot .code:n =
{ output-decimal-marker = \ensuremath { \bgroup \cdot \egroup } },
decimalsymbol /
unknown .meta:n = { output-decimal-marker = \ensuremath {#1} },
debug .code:n = ,
detectdisplay .meta:n = { detect-display-math = #1 },
detectdisplay .default:n = { true },
digitsep .choice: ,
digitsep /
cdot .meta:n =
{ group-separator = \ensuremath { { } \cdot { } } },
digitsep /
comma .meta:n = { group-separator = \ensuremath { { , } } },
digitsep /
fullstop .meta:n = { group-separator = \ensuremath { . } },
digitsep /
med .meta:n = { group-separator = \ensuremath { \: } },
digitsep /
medium .meta:n = { group-separator = \ensuremath { \: } },
digitsep /
none .meta:n = { group-separator = },
digitsep /
period .meta:n = { group-separator = \ensuremath { . } },
digitsep /
space .meta:n = { group-separator = \text { ~ } },
digitsep /
stop .meta:n = { group-separator = \ensuremath { . } },
digitsep /
thick .meta:n = { group-separator = \ensuremath { \; } },
digitsep /
thin .meta:n = { group-separator = \ensuremath { \, } },
digitsep /
tightcdot .meta:n =
{ group-separator = \ensuremath { \bgroup \cdot \egroup } },
digitsep /
tighttimes .meta:n =
{ group-separator = \ensuremath { \bgroup \times \egroup } },
digitsep /
times .meta:n = { group-separator = \ensuremath { \times } },
digitsep /
unknown .meta:n = { group-separator = \ensuremath {#1} },
dp .meta:n =
{
round-mode = places,
round-precision = #1,
},
emulate .code:n = ,
errspace .choice: ,
errspace /
med .meta:n = { uncertainty-separator = \ensuremath { \: } },
errspace /
medium .meta:n = { uncertainty-separator = \ensuremath { \: } },
errspace /
none .meta:n = { uncertainty-separator = },
errspace /
space .meta:n = { uncertainty-separator = \text { ~ } },
errspace /
thick .meta:n = { uncertainty-separator = \ensuremath { \; } },
errspace /
thin .meta:n = { uncertainty-separator = \ensuremath { \, } },
errspace /
unknown .meta:n = { uncertainty-separator = \ensuremath {#1} },
eVcorra .code:n = ,
eVcorrb .code:n = ,
expbase .choice: ,
expbase /
ten .meta:n = { exponent-base = 10 },
expbase /
two .meta:n = { exponent-base = 2 },
expbase /
unknown .meta:n = { exponent-base = #1 },
expproduct .choice: ,
expproduct /
cdot .meta:n =
{ exponent-product = \ensuremath { { } \cdot { } } },
expproduct /
tightcdot .meta:n =
{ exponent-product = \ensuremath { \bgroup \cdot \egroup } },
expproduct /
tighttimes .meta:n =
{ exponent-product = \ensuremath { \bgroup \times \egroup } },
expproduct /
times .meta:n = { exponent-product = \ensuremath { \times } },
expproduct /
unknown .meta:n = { exponent-product = \ensuremath {#1} },
fixdp .choice:,
fixdp /
false .meta:n = { round-mode = none },
fixdp /
true .meta:n = { round-mode = places },
fixdp .default:n = { true },
fixsf .choice: ,
fixsf /
false .meta:n = { round-mode = none },
fixsf /
true .meta:n = { round-mode = figures },
fixsf .default:n = { true },
fraction .choice: ,
fraction /
frac .meta:n = { fraction-function = \frac },
fraction /
nice .meta:n = { fraction-function = \frac },
fraction /
sfrac .meta:n = { fraction-function = \sfrac },
fraction /
ugly .meta:n =
{
fraction-function = \frac ,
per-mode = symbol-or-fraction
},
inlinebold .meta:n = { detect-inline-weight = #1 },
log .code:n = ,
load .code:n = ,
loctolang .code:n = ,
mathOmega .meta:n = { math-ohm = #1 },
mathcelsius .meta:n = { math-celsius = #1 },
mathdegree .meta:n = { math-degree = #1 },
mathminute .meta:n = { math-arcminute = #1 },
mathmu .meta:n = { math-micro = #1 },
mathringA .meta:n = { math-angstrom = #1 },
mathrm .code:n =
{ \use:x { \keys_set:nn { siunitx } { math-rm = \exp_not:c {#1} } } },
mathsOmega .meta:n = { math-ohm = #1 },
mathscelsius .meta:n = { math-celsius = #1 },
mathsdegree .meta:n = { math-degree = #1 },
mathsecond .meta:n = { math-arcsecond = #1 },
mathsf .code:n =
{ \use:x { \keys_set:nn { siunitx } { math-sf = \exp_not:c {#1} } } },
mathsminute .meta:n = { math-arcminute = #1 },
mathsmu .meta:n = { math-micro = #1 },
mathsringA .meta:n = { math-angstrom = #1 },
mathsrm .code:n =
{ \use:x { \keys_set:nn { siunitx } { math-rm= \exp_not:c {#1} } } },
mathssecond .meta:n = { math-arcsecond = #1 },
mathssf .code:n =
{ \use:x { \keys_set:nn { siunitx } { math-sf = \exp_not:c {#1} } } },
mathstt .code:n =
{ \use:x { \keys_set:nn { siunitx } { math-tt = \exp_not:c {#1} } } },
mathtt .code:n =
{ \use:x { \keys_set:nn { siunitx } { math-tt = \exp_not:c {#1} } } },
negcolor .meta:n = { negative-color = #1 },
negcolour .meta:n = { negative-color = #1 },
noload .code:n = ,
numaddn .meta:n = { input-symbols = #1 },
numcloseerr .meta:n = { input-close-uncertainty = #1 },
numdecimal .meta:n = { input-decimal-markers = #1 },
numdigits .meta:n = { input-digits = #1 },
numdiv .meta:n = { input-quotient = #1 },
numexp .meta:n = { input-exponent-markers = #1 },
numgobble .meta:n = { input-ignore = #1 },
numopenerr .meta:n = { input-open-uncertainty = #1 },
numprod .meta:n = { input-product = #1 },
numsign .meta:n = { input-signs = #1 },
obeyall .meta:n = { detect-all = #1 },
obeyall .default:n = { true },
obeybold .meta:n = { detect-weight = #1 },
obeybold .default:n = { true },
obeyfamily .meta:n = { detect-family = #1 },
obeyfamily .default:n = { true },
obeyitalic .meta:n = { detect-shape = #1 },
obeyitalic .default:n = { true },
obeymode .meta:n = { detect-mode = #1 },
obeymode .default:n = { true },
openerr .meta:n = { open-bracket = \ensuremath {#1} },
openfrac .meta:n = { open-bracket = \ensuremath {#1} },
openrange .meta:n = { open-bracket = \ensuremath {#1} },
padangle .choice: ,
padangle /
all .meta:n =
{
add-arc-degree-zero = true,
add-arc-minute-zero = true,
add-arc-second-zero = true
},
padangle /
both .meta:n =
{
add-arc-degree-zero = true,
add-arc-minute-zero = true,
add-arc-second-zero = true
},
padangle /
false .meta:n =
{
add-arc-degree-zero = false,
add-arc-minute-zero = false,
add-arc-second-zero = false
},
padangle /
large .meta:n =
{
add-arc-degree-zero = true,
add-arc-minute-zero = true,
add-arc-second-zero = false
},
padangle /
none .meta:n =
{
add-arc-degree-zero = false,
add-arc-minute-zero = false,
add-arc-second-zero = false
},
padangle /
small .meta:n =
{
add-arc-degree-zero = false,
add-arc-minute-zero = true,
add-arc-second-zero = true
},
true .meta:n =
{
add-arc-degree-zero = true,
add-arc-minute-zero = true,
add-arc-second-zero = true
},
padnumber .choice: ,
padnumber /
all .meta:n =
{
add-decimal-zero = true,
add-integer-zero = true
},
padnumber /
both .meta:n =
{
add-decimal-zero = true,
add-integer-zero = true
},
padnumber /
false .meta:n =
{
add-decimal-zero = false,
add-integer-zero = false
},
padnumber /
leading .meta:n =
{
add-decimal-zero = true,
add-integer-zero = false
},
padnumber /
none .meta:n =
{
add-decimal-zero = false,
add-integer-zero = false
},
padnumber /
trailing .meta:n =
{
add-decimal-zero = false,
add-integer-zero = true
},
padnumber /
true .meta:n =
{
add-decimal-zero = true,
add-integer-zero = true
},
per .choice: ,
per /
frac .meta:n = { per-mode = fraction },
per /
fraction .meta:n = { per-mode = fraction },
per /
reciprocal .meta:n = { per-mode = reciprocal },
per /
slash .meta:n = { per-mode = symbol },
prefixbase .code:n = ,
prefixproduct .code:n = ,
prefixsymbolic .meta:n = { prefixes-as-symbols = #1 },
prefixsymbolic .default:n = { true },
prespace .meta:n = { space-before-unit = #1 },
prespace .default:n = { true },
redefsymbols .meta:n = { redefine-symbols = #1 },
redefsymbols .default:n = { true },
repeatunits .choice: ,
repeatunits /
false .meta:n =
{
multi-part-units = single,
product-units = single,
},
repeatunits /
power .meta:n =
{
multi-part-units = repeat,
product-units = power,
},
repeatunits /
true .meta:n =
{
multi-part-units = repeat,
product-units = repeat,
},
repeatunits .default:n = { true },
retainplus .meta:n = { retain-explicit-plus = #1 },
retainplus .default:n = { true },
seperr .meta:n = { separate-uncertainty = #1 },
seperr .default:n = { true },
sepfour .meta:n = { group-four-digits = true },
sepfour .default:n = { true },
sf .meta:n =
{
round-mode = figures,
round-precision = #1,
},
sign .meta:n = { explicit-sign = #1 },
slash .choice: ,
slash /
slash .meta:n = { per-symbol = \ensuremath { / } },
slash /
unknown .meta:n = { per-symbol = \ensuremath {#1} },
stickyper .meta:n = { sticky-per = #1 },
stickyper .default:n = { true },
strictarc .code:n = ,
tabalign .code:n =
{
\str_if_eq:nnTF {#1} { centre }
{ \keys_set:nn { siunitx } { table-alignment = center } }
{ \keys_set:nn { siunitx } { table-alignment = #1 } }
},
tabalignexp .code:n = { table-align-exponent = #1 },
tabautofit .meta:n = { table-auto-round = #1 },
tabautofit .default:n = { true },
tabexpalign .code:n = { table-align-exponent = #1 },
tabformat .meta:n = { table-format = #1 },
tabnumalign .code:n =
{
\str_if_eq:nnTF {#1} { centre }
{ \keys_set:nn { siunitx } { table-number-alignment = center } }
{
\str_if_eq:nnTF {#1} { centredecimal }
{
\keys_set:nn { siunitx }
{ table-number-alignment = center-decimal-marker }
}
{
\str_if_eq:nnTF {#1} { centerdecimal }
{
\keys_set:nn { siunitx }
{ table-number-alignment = center-decimal-marker }
}
{
\keys_set:nn { siunitx }
{ table-number-alignment = #1 }
}
}
}
},
tabparseonly .meta:n = { table-parse-only = #1 },
tabparseonly .default:n = { true },
tabtextalign .code:n =
{
\str_if_eq:nnTF {#1} { centre }
{ \keys_set:nn { siunitx } { table-text-alignment = center } }
{ \keys_set:nn { siunitx } { table-text-alignment = #1 } }
},
tabunitalign .code:n =
{
\str_if_eq:nnTF {#1} { centre }
{ \keys_set:nn { siunitx } { table-unit-alignment = center } }
{ \keys_set:nn { siunitx } { table-unit-alignment = #1 } }
},
textOmega .meta:n = { text-ohm = #1 },
textcelsius .meta:n = { text-celsius = #1 },
textdegree .meta:n = { text-degree = #1 },
textminute .meta:n = { text-arcminute = #1 },
textmode .choice: ,
textmode /
true .meta:n = { mode = text },
textmode /
false .meta:n = { mode = math },
textmode .default:n = { true },
textmu .meta:n = { text-micro = #1 },
textringA .meta:n = { text-angstrom = #1 },
textrm .code:n =
{ \use:x { \keys_set:nn { siunitx } { text-rm = \exp_not:c {#1} } } },
textsecond .meta:n = { text-arcsecond = #1 },
textsf .code:n =
{ \use:x { \keys_set:nn { siunitx } { text-sf = \exp_not:c {#1} } } },
texttt .code:n =
{ \use:x { \keys_set:nn { siunitx } { text-tt = \exp_not:c {#1} } } },
tightpm .meta:n = { tight-spacing = #1 },
tightpm .default:n = { true },
tophrase .meta:n = { range-phrase = #1 },
trapambigerr .choice: ,
trapambigerr
/ false .meta:n = { multi-part-units = single },
trapambigerr
/ true .meta:n = { multi-part-units = brackets },
trapambigerr .default:n = { true },
trapambigfrac .meta:n = { bracket-numbers = #1 },
trapambigfrac .default:n = { true },
trapambigrange .choice: ,
trapambigrange
/ false .meta:n = { range-units = single },
trapambigrange
/ true .meta:n = { range-units = brackets },
trapambigrange .default:n = { true },
unitcolor .meta:n = { unit-color = #1 },
unitcolour .meta:n = { unit-color = #1 },
unitmathrm .code:n =
{ \use:x { \keys_set:nn { siunitx } { unit-math-rm = \exp_not:c {#1} } } },
unitmathsf .code:n =
{ \use:x { \keys_set:nn { siunitx } { unit-math-sf = \exp_not:c {#1} } } },
unitmathsrm .code:n =
{ \use:x { \keys_set:nn { siunitx } { unit-math-rm = \exp_not:c {#1} } } },
unitmathssf .code:n =
{ \use:x { \keys_set:nn { siunitx } { unit-math-sf = \exp_not:c {#1} } } },
unitmathstt .code:n =
{ \use:x { \keys_set:nn { siunitx } { unit-math-tt = \exp_not:c {#1} } } },
unitmathtt .code:n =
{ \use:x { \keys_set:nn { siunitx } { unit-math-tt = \exp_not:c {#1} } } },
unitmode .meta:n = { unit-mode = #1 },
unitsep .choice: ,
unitsep /
cdot .meta:n =
{ inter-unit-product = \ensuremath { { } \cdot { } } },
unitsep /
comma .meta:n = { inter-unit-product = { {,} } },
unitsep /
fullstop .meta:n = { inter-unit-product = { { . } } },
unitsep /
med .meta:n = { inter-unit-product = \ensuremath { \: } },
unitsep /
medium .meta:n = { inter-unit-product = \ensuremath { \: } },
unitsep /
none .meta:n = { inter-unit-product = },
unitsep /
period .meta:n = { inter-unit-product = { { . } } },
unitsep /
space .meta:n = { inter-unit-product = \text { ~ } },
unitsep /
stop .meta:n = { inter-unit-product = { { . } } },
unitsep /
thick .meta:n = { inter-unit-product = \ensuremath { \; } },
unitsep /
thin .meta:n = { inter-unit-product = \, },
unitsep /
tightcdot .meta:n =
{ inter-unit-product = \ensuremath { \bgroup \cdot \egroup } },
unitsep /
tighttimes .meta:n =
{ inter-unit-product = \ensuremath { \bgroup \times \egroup } },
unitsep /
times .meta:n = { inter-unit-product = \ensuremath { \times } },
unitsep /
unknown .meta:n = { inter-unit-product = \ensuremath {#1} },
unitspace .choice: ,
unitspace /
med .meta:n = { inter-unit-product = \ensuremath { \: } },
unitspace /
medium .meta:n = { inter-unit-product = \ensuremath { \: } },
unitspace /
none .meta:n = { inter-unit-product = },
unitspace /
space .meta:n = { inter-unit-product = \text { ~ } },
unitspace /
thick .meta:n = { inter-unit-product = \ensuremath { \; } },
unitspace /
thin .meta:n = { inter-unit-product = \, },
unitspace /
unknown .meta:n = { inter-unit-product = \ensuremath {#1} },
valuecolor .meta:n = { number-color = #1 },
valuecolour .meta:n = { number-color = #1 },
valuemathrm .code:n =
{ \use:x { \keys_set:nn { siunitx } { number-math-rm = \exp_not:c {#1} } } },
valuemathsf .code:n =
{ \use:x { \keys_set:nn { siunitx } { number-math-sf = \exp_not:c {#1} } } },
valuemathsrm .code:n =
{ \use:x { \keys_set:nn { siunitx } { number-math-rm = \exp_not:c {#1} } } },
valuemathssf .code:n =
{ \use:x { \keys_set:nn { siunitx } { number-math-sf = \exp_not:c {#1} } } },
valuemathstt .code:n =
{ \use:x { \keys_set:nn { siunitx } { number-math-tt = \exp_not:c {#1} } } },
valuemathtt .code:n =
{ \use:x { \keys_set:nn { siunitx } { number-math-tt = \exp_not:c {#1} } } },
valuemode .meta:n = { number-mode = #1 },
valuesep .choice: ,
valuesep /
cdot .meta:n =
{ number-unit-product = \ensuremath { { } \cdot { } } },
valuesep /
comma .meta:n = { number-unit-product = { {,} } },
valuesep /
fullstop .meta:n = { number-unit-product = { { . } } },
valuesep /
med .meta:n = { number-unit-product = \ensuremath { \: } },
valuesep /
medium .meta:n = { number-unit-product = \ensuremath { \: } },
valuesep /
none .meta:n = { number-unit-product = },
valuesep /
period .meta:n = { number-unit-product = { { . } } },
valuesep /
space .meta:n = { number-unit-product = \text { ~ } },
valuesep /
stop .meta:n = { number-unit-product = { { . } } },
valuesep /
thick .meta:n = { number-unit-product = \ensuremath { \; } },
valuesep /
thin .meta:n = { number-unit-product = \, },
valuesep /
tightcdot .meta:n =
{ number-unit-product = \ensuremath { \bgroup \cdot \egroup } },
valuesep /
tighttimes .meta:n =
{ number-unit-product = \ensuremath { \bgroup \times \egroup } },
valuesep /
times .meta:n = { number-unit-product = \ensuremath { \times } },
valuesep /
unknown .meta:n = { number-unit-product = \ensuremath {#1} },
xspace .meta:n = { use-xspace = #1 },
xspace .default:n = { true },
}
\keys_define:nn { siunitx } {
unknown .code:n =
{
\msg_error:nnx { siunitx } { unknown-option }
{ \exp_not:V \l_keys_key_tl }
}
}
\keys_set:nn { siunitx } {free-standing-units = true}
\cs_new_eq:NN \newunit \DeclareSIUnit
\cs_new_eq:NN \renewunit \DeclareSIUnit
\cs_new_eq:NN \provideunit \DeclareSIUnit
\NewDocumentCommand \newpower { o m m } {
\IfNoValueTF {#1}
{ \DeclareSIPrePower #2 {#3} }
{ \DeclareSIPostPower #2 {#3} }
}
\NewDocumentCommand \renewpower { o m m } {
\IfNoValueTF {#1}
{ \DeclareSIPrePower #2 {#3} }
{ \DeclareSIPostPower #2 {#3} }
}
\NewDocumentCommand \providepower { o m m } {
\IfNoValueTF {#1}
{ \DeclareSIPrePower #2 {#3} }
{ \DeclareSIPostPower #2 {#3} }
}
\NewDocumentCommand \newprefix { o m m m } {
\IfNoValueTF {#1}
{ \DeclareSIPrefix #2 {#3} {#4} }
{ \DeclareBinaryPrefix #2 {#3} {#4} }
}
\NewDocumentCommand \renewprefix { o m m m } {
\IfNoValueTF {#1}
{ \DeclareSIPrefix #2 {#3} {#4} }
{ \DeclareBinaryPrefix #2 {#3} {#4} }
}
\NewDocumentCommand \provideprefix { o m m m } {
\IfNoValueTF {#1}
{ \DeclareSIPrefix #2 {#3} {#4} }
{ \DeclareBinaryPrefix #2 {#3} {#4} }
}
\NewDocumentCommand \newqualifier { m m } {
\__siunitx_declare_qualifier:Nn #1 {#2}
}
\cs_new_eq:NN \renewqualifier \newqualifier
\cs_new_eq:NN \providequalifier \newqualifier
\DeclareSIPrePower \Square { 2 }
\DeclareSIPrePower \ssquare { 2 }
\DeclareSIUnit \BAR { \bar }
\DeclareSIUnit \bbar { \bar }
\DeclareSIUnit \Day { \day }
\DeclareSIUnit \dday { \day }
\DeclareSIUnit \Gray { \gray }
\DeclareSIUnit \ggray { \gray }
\DeclareSIUnit \atomicmass { \atomicmassunit }
\DeclareSIUnit \arcmin { \arcminute }
\DeclareSIUnit \arcsec { \arcsecond }
\DeclareSIUnit \are { a }
\DeclareSIUnit \curie { Ci }
\DeclareSIUnit \gal { Gal }
\DeclareSIUnit \millibar { \milli \bar }
\DeclareSIUnit \rad { rad }
\DeclareSIUnit \rem { rem }
\DeclareSIUnit \roentgen { R }
\DeclareSIUnit \micA { \micro \ampere }
\DeclareSIUnit \micmol { \micro \mole }
\DeclareSIUnit \micl { \micro \litre }
\DeclareSIUnit \micL { \micro \liter }
\DeclareSIUnit \nanog { \nano \gram }
\DeclareSIUnit \micg { \micro \gram }
\DeclareSIUnit \picm { \pico \metre }
\DeclareSIUnit \micm { \micro \metre }
\DeclareSIUnit \Sec { \second }
\DeclareSIUnit \mics { \micro \second }
\DeclareSIUnit \cmc { \centi \metre \cubed }
\DeclareSIUnit \dmc { \deci \metre \cubed }
\DeclareSIUnit \cms { \centi \metre \squared }
\DeclareSIUnit \centimetrecubed { \centi \metre \cubed }
\DeclareSIUnit \centimetresquared { \centi \metre \squared }
\DeclareSIUnit \cubiccentimetre { \centi \metre \cubed }
\DeclareSIUnit \cubicdecimetre { \deci \metre \cubed }
\DeclareSIUnit \squarecentimetre { \centi \metre \squared }
\DeclareSIUnit \squaremetre { \metre \squared }
\DeclareSIUnit \squarekilometre { \kilo \metre \squared }
\DeclareSIUnit \parsec { pc }
\DeclareSIUnit \lightyear { ly }
\DeclareSIUnit \gmol { g \text { - } mol }
\DeclareSIUnit \kgmol { kg \text { - } mol }
\DeclareSIUnit \lbmol { lb \text { - } mol }
\DeclareSIUnit \molar { \mole \per \cubic \deci \metre }
\DeclareSIUnit \Molar { \textsc { m } }
\DeclareSIUnit \torr { Torr }
\DeclareSIUnit \gon { gon }
\DeclareSIUnit \clight { \text { \ensuremath { c } } }
\DeclareSIUnit \micron { \micro \metre }
\DeclareSIUnit \mrad { \milli \rad }
\DeclareSIUnit \gauss { G }
\DeclareSIUnit \eVperc { \eV \per \clight }
\DeclareSIUnit \nanobarn { \nano \barn }
\DeclareSIUnit \picobarn { \pico \barn }
\DeclareSIUnit \femtobarn { \femto \barn }
\DeclareSIUnit \attobarn { \atto \barn }
\DeclareSIUnit \zeptobarn { \zepto \barn }
\DeclareSIUnit \yoctobarn { \yocto \barn }
\DeclareSIUnit \nb { \nano \barn }
\DeclareSIUnit \pb { \pico \barn }
\DeclareSIUnit \fb { \femto \barn }
\DeclareSIUnit \ab { \atto \barn }
\DeclareSIUnit \zb { \zepto \barn }
\DeclareSIUnit \yb { \yocto \barn }
\NewDocumentCommand \requiresiconfigs { m }
{ \keys_set:nn { siunitx } { version-1-compatibility } }
%% Copyright (C) 2008-2017 by
%% Joseph Wright <joseph.wright@morningstar2.co.uk>
%%
%% It may be distributed and/or modified under the conditions of
%% the LaTeX Project Public License (LPPL), either version 1.3c of
%% this license or (at your option) any later version. The latest
%% version of this license is in the file:
%% http://www.latex-project.org/lppl.txt
%%
%% This work is "maintained" (as per LPPL maintenance status) by
%% Joseph Wright.
%%
%% This work consists of the file siunitx.dtx
%% and the derived files siunitx.pdf,
%% siunitx.sty and
%% siunitx.ins.
%%
%% End of file `siunitx-version-1.cfg'.

@ -0,0 +1,73 @@
%%
%% This is file `siunitx.ins',
%% generated with the docstrip utility.
%%
%% The original source files were:
%%
%% siunitx.dtx (with options: `install')
%% ---------------------------------------------------------------
%% The siunitx package --- A comprehensive (SI) units package
%% Maintained by Joseph Wright
%% E-mail: joseph.wright@morningstar2.co.uk
%% Released under the LaTeX Project Public License v1.3c or later
%% See http://www.latex-project.org/lppl.txt
%% ---------------------------------------------------------------
%%
\input l3docstrip.tex
\keepsilent
\askforoverwritefalse
\preamble
---------------------------------------------------------------
The siunitx package --- A comprehensive (SI) units package
Maintained by Joseph Wright
E-mail: joseph.wright@morningstar2.co.uk
Released under the LaTeX Project Public License v1.3c or later
See http://www.latex-project.org/lppl.txt
---------------------------------------------------------------
\endpreamble
\postamble
Copyright (C) 2008-2017 by
Joseph Wright <joseph.wright@morningstar2.co.uk>
It may be distributed and/or modified under the conditions of
the LaTeX Project Public License (LPPL), either version 1.3c of
this license or (at your option) any later version. The latest
version of this license is in the file:
http://www.latex-project.org/lppl.txt
This work is "maintained" (as per LPPL maintenance status) by
Joseph Wright.
This work consists of the file siunitx.dtx
and the derived files siunitx.pdf,
siunitx.sty and
siunitx.ins.
\endpostamble
\usedir{tex/latex/siunitx}
\generate{
\file{\jobname.sty}{\from{\jobname.dtx}{package}}
\file{siunitx-abbreviations.cfg}
{\from{\jobname.dtx}{config,abbreviations}}
\file{siunitx-binary.cfg}{\from{\jobname.dtx}{config,binary}}
\file{siunitx-version-1.cfg}{\from{\jobname.dtx}{config,version-1}}
}
\endbatchfile
%% Copyright (C) 2008-2017 by
%% Joseph Wright <joseph.wright@morningstar2.co.uk>
%%
%% It may be distributed and/or modified under the conditions of
%% the LaTeX Project Public License (LPPL), either version 1.3c of
%% this license or (at your option) any later version. The latest
%% version of this license is in the file:
%% http://www.latex-project.org/lppl.txt
%%
%% This work is "maintained" (as per LPPL maintenance status) by
%% Joseph Wright.
%%
%% This work consists of the file siunitx.dtx
%% and the derived files siunitx.pdf,
%% siunitx.sty and
%% siunitx.ins.
%%
%% End of file `siunitx.ins'.

File diff suppressed because it is too large Load Diff

@ -0,0 +1 @@
Subproject commit 98ba2b330f345a7265c301a322777f647b870fe8

@ -0,0 +1 @@
Subproject commit abe26839e5220863c9c4fdd08c55e1981d586138

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="90.157" height="99.772" viewBox="0 0 23.854 26.398"><path d="M14.339 25.85c-.489-.484-.553-.564-.552-.689 0-.115.235-.49 1.26-2.006l1.26-1.864-1.31-1.316c-.722-.724-1.333-1.358-1.359-1.409-.067-.132-.058-.456.018-.636.039-.094.381-.474.878-.976l.815-.82-.661-.662-.662-.661-.313.288c-2.284 2.102-5.57 3.65-8.602 4.054-.363.048-.391.047-.468-.03-.07-.07-.115-.338-.295-1.72a75.502 75.502 0 0 1-.214-1.72c0-.187.091-.231.702-.337A12.757 12.757 0 0 0 9.408 13.6c.475-.294 1.268-.89 1.639-1.233l.275-.254-4.045-4.05-4.046-4.049.027-.163.027-.163-1.643-1.643L0 .402.201.201.403 0l1.685 1.684 1.686 1.684.293-.19c.161-.104.333-.19.381-.19.061 0 2.885 2.797 9.09 9.002 8.496 8.495 9.002 9.01 9.002 9.147 0 .13-.052.198-.437.583-.383.383-.455.437-.581.437-.132 0-.231-.086-1.127-.98l-.983-.979-.105.142c-.057.078-.978 1.44-2.045 3.026-1.067 1.586-1.978 2.917-2.025 2.958a.38.38 0 0 1-.216.074c-.11 0-.216-.085-.682-.548zm2.98-6.057l.677-1.007-.133-.138a.61.61 0 0 0-.164-.138c-.018 0-.372.23-.787.511-.655.444-.773.51-.903.498-.112-.009-.161-.04-.202-.125-.097-.203-.019-.286.748-.796.4-.265.726-.494.726-.508 0-.014-.344-.369-.763-.788l-.764-.763-.802.802c-.442.44-.813.841-.826.89-.019.07.212.323 1.215 1.329.681.682 1.252 1.24 1.27 1.24.016 0 .335-.453.708-1.007zM5.774 18.488a15.995 15.995 0 0 0 7.512-3.745l.353-.317-.181-.184c-.1-.102-.197-.185-.216-.185-.019 0-.154.111-.3.247-.605.563-1.648 1.324-2.504 1.827a15.745 15.745 0 0 1-5.021 1.852l-.436.076.026.215c.034.295.045.32.14.32.046 0 .328-.047.627-.106zm-.062-1.122a14.913 14.913 0 0 0 5.733-2.552l.461-.34-.182-.184-.181-.185-.239.183c-.802.618-2.187 1.403-3.205 1.819-.923.377-2.095.715-2.908.84L4.846 17l.026.188c.014.104.025.215.025.247 0 .084.136.072.815-.069zm-.162-1.048c1.924-.396 3.869-1.29 5.516-2.538.08-.06.077-.068-.083-.232l-.166-.17.21-.216c.21-.217.21-.217-.139.062-1.675 1.34-3.852 2.31-6.001 2.676-.174.03-.188.075-.132.413.03.18-.053.18.795.005zm7.045-2.443l.254-.233-.103-.11a.445.445 0 0 0-.13-.11c-.03 0-.678.955-.678 1 0 .03.3-.22.657-.547zm3.8.209C9.667 7.355 9.829 7.525 9.98 7.344c.119-.144 1.025-.719 1.132-.719.096 0 1.138 1.023 6.429 6.314 4.705 4.705 6.313 6.338 6.313 6.41 0 .092-.504.895-.691 1.101a.31.31 0 0 1-.196.096c-.089 0-1.327-1.218-6.571-6.462z"/></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="37.682" height="99.771" viewBox="0 0 9.97 26.398"><path d="M5.725 0L4.098.289v6.596l1.627-.327zm1.362 6.624a.22.22 0 0 0-.06.009l-4.332 1.01a.22.22 0 1 0 .1.426l4.332-1.01a.22.22 0 0 0-.04-.435zm0 .79a.22.22 0 0 0-.023.002.22.22 0 0 0-.037.006L2.695 8.435a.22.22 0 1 0 .1.426l4.332-1.01a.22.22 0 0 0-.04-.437zm0 .793a.22.22 0 0 0-.023.001.22.22 0 0 0-.037.006l-4.332 1.01a.22.22 0 1 0 .1.43l4.332-1.01a.22.22 0 0 0-.04-.437zm0 .793a.22.22 0 0 0-.023.002.22.22 0 0 0-.037.006l-4.332 1.01a.22.22 0 1 0 .1.429l4.332-1.01A.22.22 0 0 0 7.087 9zm0 .79a.22.22 0 0 0-.06.01l-4.332 1.01a.22.22 0 1 0 .1.426l4.332-1.01a.22.22 0 0 0-.04-.435zm0 .792a.22.22 0 0 0-.023.002.22.22 0 0 0-.037.006l-4.332 1.013a.22.22 0 1 0 .1.426l4.332-1.01a.22.22 0 0 0-.04-.437zm0 .793a.22.22 0 0 0-.023 0 .22.22 0 0 0-.037.007l-4.332 1.01a.22.22 0 1 0 .1.429l4.332-1.01a.22.22 0 0 0-.04-.437zm0 .792a.22.22 0 0 0-.023.001.22.22 0 0 0-.037.006l-4.332 1.01a.22.22 0 1 0 .1.43l4.332-1.01a.22.22 0 0 0-.04-.437zm0 .791a.22.22 0 0 0-.06.01l-4.332 1.01a.22.22 0 1 0 .1.425l4.332-1.01a.22.22 0 0 0-.04-.435zm-.317.974l-1.63.35c3.044 3.443 3.68 6.239 3.232 8.021-.454 1.807-1.956 2.754-3.757 2.62C2.38 24.759.8 22.498 1.702 19.65c.68-2.14.983-2.692 2.998-5.273l-2.194.472c-1.196 1.645-1.64 2.594-2.2 4.36-1.133 3.574 1.012 6.94 4.203 7.174 2.413.178 4.665-1.258 5.284-3.723.576-2.292-.213-5.318-3.023-8.728z" paint-order="stroke fill markers"/></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="96.302" height="99.776" viewBox="0 0 25.48 26.399"><path d="M0 0v1.683h25.48V0zm1.352 1.986a.363.363 0 0 0-.358.37v21.686a.363.363 0 1 0 .727 0V2.355a.363.363 0 0 0-.369-.369zm4.528 0a.363.363 0 0 0-.358.37v21.686a.364.364 0 1 0 .728 0V2.355a.363.363 0 0 0-.37-.369zm4.529 0a.363.363 0 0 0-.358.37v21.686a.363.363 0 1 0 .727 0V2.355a.363.363 0 0 0-.37-.369zm4.528 0a.363.363 0 0 0-.358.37v21.686a.363.363 0 1 0 .727 0V2.355a.363.363 0 0 0-.37-.369zm4.528 0a.363.363 0 0 0-.358.37v21.686a.364.364 0 0 0 .727 0v-7.914h3.802v7.914a.363.363 0 1 0 .726 0V2.355a.363.363 0 0 0-.369-.369.363.363 0 0 0-.357.37v8.269h-3.802v-8.27a.363.363 0 0 0-.37-.369zm2.22 9.925a.88.88 0 0 1 .88.88.88.88 0 0 1-.365.713v.682a.515.515 0 0 1-.515.515.515.515 0 0 1-.514-.515v-.681a.88.88 0 0 1-.365-.713.88.88 0 0 1 .88-.88zM0 24.716v1.683h25.48v-1.683z" paint-order="stroke fill markers"/></svg>

After

Width:  |  Height:  |  Size: 920 B

@ -0,0 +1,77 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="26.36635mm"
height="26.397871mm"
viewBox="0 0 26.36635 26.397871"
version="1.1"
id="svg122"
sodipodi:docname="freedom-expression.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)">
<metadata
id="metadata126">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1918"
inkscape:window-height="1178"
id="namedview124"
showgrid="false"
inkscape:zoom="1.6820162"
inkscape:cx="255.75354"
inkscape:cy="-95.196242"
inkscape:window-x="1280"
inkscape:window-y="20"
inkscape:window-maximized="0"
inkscape:current-layer="svg122"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<defs
id="defs8">
<clipPath
id="b">
<path
d="m 1592.404,374.387 h 40.393 v 48.525 h -40.393 z"
id="path2"
inkscape:connector-curvature="0"
style="fill:#ff0000;stroke:#fffffe;stroke-width:0.02;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers" />
</clipPath>
<clipPath
id="a">
<path
d="m 1592.404,375.372 h 40.393 V 354.84 h -40.393 z"
id="path5"
inkscape:connector-curvature="0"
style="fill:#ff0000;stroke:#fffffe;stroke-width:0.02;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers" />
</clipPath>
</defs>
<path
style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;stroke-width:1;paint-order:stroke fill markers"
d="M 15.530319,0 13.850318,2.5047575 10.607106,0.09405144 V 3.8638453 H 7.7850549 L 8.638233,6.3091747 9.0521604,6.1639634 8.4041402,4.3041305 H 11.047389 V 0.96686686 l 2.9099,2.16627604 1.667082,-2.48305372 2.223635,1.85776652 2.645317,-1.6639804 0.761712,3.1481289 4.174939,-0.6852285 -1.574583,3.6054638 1.914613,1.6779346 -0.695566,0.896067 0.347784,0.2676842 L 26.366351,8.5302274 24.386108,6.7918329 26.158094,2.7419511 21.58628,3.4917776 20.775993,0.1477936 17.885214,1.9678385 Z M 7.2533059,6.853846 c -1.9740006,0 -3.764862,0.5240946 -5.0818626,1.3900943 C 0.85444541,9.1109402 0,10.343999 0,11.729 c 0,1.384999 0.85444541,2.618058 2.1714433,3.485057 a 7.794,7.794 0 0 0 1.649513,0.815973 l 1.7750843,3.772895 1.0800398,-3.217892 c 0.1899999,0.01101 0.3832568,0.0181 0.5782574,0.0181 0.050001,0 0.099862,-0.0042 0.1498626,-0.0052 v -0.584978 c -0.050001,0 -0.099862,0.0052 -0.1498626,0.0052 -0.1310005,0 -0.3428841,-0.0091 -0.5358844,-0.01913 L 6.4213131,15.983016 6.2730035,15.9732 v 0.0011 h -0.00775 L 6.0792174,16.52823 5.5050901,18.238203 4.576982,16.266229 4.2069781,15.538108 3.6070169,15.310215 A 6.8729999,6.8729999 0 0 1 2.4902874,14.72524 c -1.2029995,-0.791001 -1.90530953,-1.8502 -1.90530953,-2.9962 0,-1.145 0.70231003,-2.2021325 1.90530953,-2.9941336 1.2039997,-0.7910009 2.893052,-1.2960455 4.7640504,-1.2960455 1.8700009,0 3.5600162,0.5050446 4.7630182,1.2960455 0.429999,0.283001 0.792755,0.6011281 1.086755,0.9441286 h 0.732256 A 5.4199998,5.4199998 0 0 0 12.339299,8.24398 C 11.022298,7.3779802 9.2293386,6.8538856 7.2543378,6.8538856 Z m 0.2950713,3.36827 a 0.72999999,0.72999999 0 0 0 -0.716235,0.876948 l 2.15129,10.559045 a 0.72999999,0.72999999 0 0 0 0.7146846,0.584978 h 7.5313222 l 1.533758,4.154783 1.487765,-4.154783 h 3.152262 a 0.72999999,0.72999999 0 0 0 0.715719,-0.59118 l 2.083075,-10.560079 a 0.72999999,0.72999999 0 0 0 -0.714685,-0.869712 z m 0.8960697,1.460892 H 24.600051 l -1.797826,9.099184 h -3.191018 l -0.523999,1.460895 -0.337963,0.942062 -0.346234,-0.942062 -0.535884,-1.45831 v -0.0026 h -7.570081 z"
id="path66"
inkscape:connector-curvature="0" />
</svg>

After

Width:  |  Height:  |  Size: 4.9 KiB

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6.373 10" height="37.796" width="24.087"><path fill="#ff0" paint-order="stroke fill markers" d="M-.625-.98h7.623v11.961H-.625z"/><path d="M5.094 6.17C5.047 6.15 5.04 6 5.013 6c-.042 0-.063.136-.143.156-.083.014-.206-.088-.24-.062-.035.028.077.222-.108.222-.055 0-.083-.062-.083-.11v-1.49s.006-.003.088.018c.055.014.11.041.11.117 0 .04-.015.122.013.136.029.014.048-.014.062-.02.252-.184.314.143.368.143.049 0 .042-.225.11-.225.055-.02.581.232.581.396 0 .035-.069.04-.074.076-.007.048.123.068.102.157-.008.055-.13.123-.097.157.036.035.2-.034.213-.034.035 0 .04.054.04.075 0 .301-.703.527-.86.458zm-1.873.24c-.041-.068-.022-.185-.062-.185-.02 0-.13.164-.192.164-.06 0-.163-.116-.205-.116-.027 0 .028.164-.027.232-.034.048-.363.083-.363.042V4.221c0-.109.083-.15.158-.15h1.223c.15 0 .212.047.212.204l.001 2.088c0 .067-.718.095-.745.046zm.745 2.947c0 .144-.048.177-.17.15l-1.307-.26c-.075-.013-.117-.062-.117-.143V6.738c0-.06.213-.069.246-.042.063.056.042.254.083.254.055 0 .198-.24.26-.24.13 0 .219.075.246.062.028-.014.028-.123.061-.15.048-.034.191-.034.267-.042.124-.007.349-.027.349-.027.089 0 .082.062.082.192zM2.558 2.491c0-.944 1.395-1.484 1.49-1.962.103.095.117.252.117.39 0 .573-.999 1.537-.999 2.235 0 .076.007.096.007.144 0 .068-.027.082-.04.082-.166 0-.575-.32-.575-.889zm-.773 5.902c-.11 0-.178-.22-.206-.212-.033.007.008.184-.033.212-.035.034-.76-.3-.814-.355-.049-.048.02-.116 0-.165-.014-.04-.124-.028-.157-.049-.028-.027.033-.15-.007-.176-.035-.022-.11.122-.158.053-.021-.027-.027-.075-.027-.137 0-.417.444-.587.745-.69.123-.04.081.116.123.124.048.013.054-.076.11-.076.04 0 .199.076.232.048.027-.02-.082-.123-.047-.164.04-.034.358-.094.355-.013v1.462c0 .153-.116.138-.116.138zm4.294-2.517c.076-.13.076-.287.103-.349.04-.068.191-.055.191-.103 0-.02-.11-.047-.15-.075-.082-.047-.054-.293-.095-.293-.063 0-.124.17-.186.095-.109-.136-.56-.396-.765-.47-.076-.029.055-.255.021-.275-.035-.02-.123.137-.253.11-.103-.02-.056-.207-.11-.207-.028 0-.13.26-.206.24-.082-.02-.19-.05-.19-.05v-.682c0-.116-.079-.206-.179-.205h-.739c-.205 0-.19-.15-.19-.185 0-.909 1.319-1.06 1.319-2.25 0-.52-.328-.868-.71-1.176-.022-.013 0 .076 0 .11 0 .553-2.06.84-2.06 2.12 0 1.114 1.109 1.162 1.109 1.333 0 .034-.069.048-.076.048h-.847c-.09 0-.167.055-.166.204v.685c-.082.027-.19-.096-.245-.096-.028 0-.013.212-.062.24-.041.02-.814.294-.883.3-.108.021-.08-.17-.142-.17-.056 0-.056.191-.193.191-.081 0-.15-.076-.211-.076-.04 0 .089.158.089.205 0 .131-.253.178-.253.268 0 .047.239-.02.273-.02.124 0 .11.143.157.143.048 0 .082-.165.124-.192.08-.047.178.035.219.035.067 0-.055-.165.006-.193 0 0 .834-.354.889-.327.048.027.042.11.096.136.054.028.137-.19.137-.055v1.676c-.097.061-.301.097-.41.097-.055 0-.029-.179-.063-.179-.055 0-.109.15-.191.15-.075 0-.185-.184-.26-.184-.047 0 .089.232.007.274-.315.157-.814.307-.814.806 0 .103.055.227.034.26-.02.048-.13.144-.123.185 0 .041.205.026.247.09.02.033.034.183.076.183.033 0 .122-.116.197-.076.24.144.656.302.849.405.047.027.02.177.047.191.055.027.163-.144.335-.048.035.014.069.07.069.13v.56c0 .102.047.13.102.143l2.039.406s.18.04.242.04c.071.004.16 0 .154-.172v-1.27c0-.013.016-.045.043-.045.12 0 .06.345.086.345.054 0 .089-.233.158-.233.096 0 .158.09.198.07.034-.02-.02-.13-.02-.2 0-.06.178-.089.396-.17.192-.068.35-.144.411-.144.048 0 .081.13.123.13.034 0 .04-.17.116-.17.061 0 .198.094.233.067.027-.02-.069-.15.006-.206.055-.033.185-.115.185-.15 0-.02-.253-.027-.266-.027-.048-.014-.103-.164-.138-.164-.04 0-.04.15-.102.198-.055.04-.191-.144-.252-.144-.036 0 .04.138.04.248 0 .108-.663.32-.752.32-.137 0-.144-.17-.171-.17-.041 0-.04.21-.191.21a.096.096 0 0 1-.103-.099V6.581c0-.047.014-.11.103-.114.113-.005.115.25.156.25.075 0 .117-.254.26-.254.11 0 .199.151.268.151.047 0-.083-.157-.083-.233.001-.074.678-.047.938-.505z"/></svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 348 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 118 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 364 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 119 KiB

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="129.396" height="99.776" viewBox="0 0 34.236 26.399"><path d="M17.199 0l-.007.008L17.187 0l-.02.046-.751 1.135c-3.795 5.734-7.72 11.306-13.04 15.942l-.4.346.14.508.089.337-2.262 4.845H0v3.24h1.675v-2.812l1.87-4.004 1.796 6.711h10.016l1.791-6.682 1.731 6.458h10.016l1.797-6.712 1.87 4.005v2.811h1.674v-3.239h-.943l-2.261-4.845.09-.337.138-.508-.4-.346C25.54 12.263 21.616 6.691 17.82.957l-.607-.918zm.097 3.482c3.286 4.85 7.48 10.182 12.078 14.285l-1.775 6.616h-7.423l-2.88-10.924zm-.513 0v9.977l-2.722 11.148H6.638l-1.775-6.616c4.597-4.103 8.635-9.66 11.92-14.509z" paint-order="stroke fill markers"/></svg>

After

Width:  |  Height:  |  Size: 654 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.9 KiB

@ -0,0 +1,178 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Amnesty International</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="../node_modules/reveal.js/css/reveal.css">
<link rel="stylesheet" href="../node_modules/reveal.js/css/print/pdf.css" media="print">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Fira+Sans|Fira+Mono" rel="stylesheet">
<style>
body * {
font-family: "Fira Sans", Roboto, Helvetica, sans-serif !important;
-webkit-print-color-adjust:exact;
}
</style>
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? '../node_modules/reveal.js/css/print/pdf.css' : '../node_modules/reveal.js/css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
</head>
<body>
<div class="reveal">
<div class="slides">
<section>
<h1><img class="plain" style="height: 2em;" src="img/logo.svg"></h1>
<h2>Amnesty International</h2>
<aside class="notes">
<ul>
<li>engl. amnesty = Begnadigung, Straferlass</li>
<li>Menschenrechtsorganisation</li>
<li>Jährlicher Bericht zum Status der Menschenrechte</li>
<li>Gründung 28. Mai 1961 aufgrund von Folterung und Unterdrückung</li>
</ul>
</aside>
</section>
<section data-background-image="img/poster.png">
<aside class="notes">
<ul>
<li>Die Bereiche gibts da halt…</li>
<li>FIXME: Aufzählen!</li>
</ul>
</aside>
</section>
<section data-background-image="img/poster_selected.png">
<aside class="notes">
<ul>