Don't Panic SS21

This commit is contained in:
Niklas Conen
2021-08-05 15:57:05 +02:00
parent 76badc8a8c
commit a0ab6d54a3
39 changed files with 187 additions and 449 deletions
+19
View File
@@ -0,0 +1,19 @@
\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{external}
\tikzexternalize[only named]
\tikzset{
export as png/.style={
external/system call/.add={}{
&& convert -density #1 -transparent white "\image.pdf" "\image.png"
},
},
export as png/.default={200},
}
\begin{document}
\tikzset{export as png=500}
\tikzsetnextfilename{email-png}
\begin{tikzpicture}
\node {fsinf@uni-frankfurt.de};
\end{tikzpicture}
\end{document}