Ich verstehe nicht, warum ich das folgende Beispiel mit XeLaTeX nicht kompilieren kann, wenn ich die auskommentierte Zeile aktiviere. Mit PDFLaTeX gibt es dieses Problem nicht (allerdings lade ich da auch Öffne in Overleaf
\documentclass{scrartcl} \usepackage{fontspec} \usepackage{empheq} \usepackage{unicode-math} \usepackage{polyglossia} %\setdefaultlanguage[spelling=new, babelshorthands=true]{german} \usepackage{tikz} \usepackage{pgf} \usetikzlibrary[angles] \usetikzlibrary{quotes} \begin{document} \begin{tikzpicture} [x=1cm, y=1cm, scale=1.0, semithick] \draw[dashed] (-3,-1.5) -- (0,0) coordinate (a) -- (3,1.5) coordinate (b); \draw[dashed] (-1,2) coordinate (c) -- (0,0) -- (1,-2) pic["{$\bullet$}", -, draw=black, angle eccentricity=0.5, angle radius=0.6cm] {angle=b--a--c}; \draw[very thick, ->, >=latex] (-2,-1) -- (2,1); \end{tikzpicture} \end{document} Kann mir jemand weiterhelfen?
Dieser Frage ist "Community Wiki" markiert.
|
Die Frage wurde aus folgenden Grund "Duplikat einer anderen Frage" geschlossen saputello 24 Aug '17, 11:08
Zugegeben, das ist ein bisschen umständlich, aber das Rezept ist einfach:
Die Reihenfolge ist dabei wichtig! Öffne in Overleaf
\documentclass{scrartcl} \usepackage{fontspec} \usepackage{empheq} \usepackage{unicode-math} \usepackage{polyglossia} \usepackage{tikz} \usepackage{pgf} \usetikzlibrary{angles,babel,quotes} \setdefaultlanguage[spelling=new, babelshorthands=true]{german} \begin{document} \begin{tikzpicture} [x=1cm, y=1cm, scale=1.0, semithick] \draw[dashed] (-3,-1.5) -- (0,0) coordinate (a) -- (3,1.5) coordinate (b); \draw[dashed] (-1,2) coordinate (c) -- (0,0) -- (1,-2) pic["{$\bullet$}", -, draw=black, angle eccentricity=0.5, angle radius=0.6cm] {angle=b--a--c}; \draw[very thick, ->, >=latex] (-2,-1) -- (2,1); \end{tikzpicture} \end{document} beantwortet 23 Aug '17, 03:58 Henri Danke! Das ist die Lösung meines Problems :)
(23 Aug '17, 20:53)
kasiii
|
Siehe auch Quotes-Library nicht verwendbar mit Polyglossia und Babel