Files
dont-panic/SS21/artikel/make-email-as-png.tex
T
2021-04-04 16:18:17 +00:00

19 lines
494 B
TeX

\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}