Skip to content

Instantly share code, notes, and snippets.

@kellertuer
Created August 26, 2019 15:30
Show Gist options
  • Save kellertuer/01ee909987761efef53b4216813d3eab to your computer and use it in GitHub Desktop.
Save kellertuer/01ee909987761efef53b4216813d3eab to your computer and use it in GitHub Desktop.
Eine Vorlage für ein Ortsschild.
\documentclass[tikz=true]{standalone}
\usepackage{fontspec}
\usepackage{xunicode,xltxtra}
\setromanfont[Ligatures={Common}]{Alte DIN 1451 Mittelschrift gepraegt}
\definecolor{ortsschild}{HTML}{F0CA00}
\begin{document}
\begin{tikzpicture}
\draw[fill=ortsschild,rounded corners=2.5cm,draw=none] (-45,-30) rectangle (45,30);
\draw[black,line width=1.5cm,rounded corners=2.5cm] (-43,-28) --
++(86,0) -- ++(0,56) -- ++(-86,0) -- cycle;
\node[scale=40] at (0,10) {Bad Gateway};
\node[scale=30] at (0,-10) {Internetkurort};
\end{tikzpicture}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment