svg.path 圖片在多語種中不適用於俄語

svg.path 圖片在多語種中不適用於俄語

我不確定如何準確地提出這個問題,因為我自己也不確定問題是什麼,但本質上我正在嘗試使用svg.pathTikZ 庫繪製路徑。當我選擇烏克蘭語時polyglossia,它工作正常。但是,當我選擇俄語時,它給了我一個錯誤。

微量元素:

\documentclass{article}

\usepackage{fontspec}
\usepackage{polyglossia}
\newfontfamily\cyrillicfont{CMU Serif}[Script=Cyrillic]

\usepackage{tikz}
\usetikzlibrary{svg.path}

% Change this to "russian" for the error
\setmainlanguage{ukrainian}

\begin{document}

\begin{tikzpicture}
  \draw svg "M 55.082,20.537 C 58.777,25.523 60.966,31.694 60.966,38.377 C 60.966,44.998 58.815,51.115 55.178,56.076";
\end{tikzpicture}

\end{document}

錯誤:

Package pgf Error: Unexpected character 'macro:->\active@prefix
"\normal@char" ' in parser 'svgpath' in state 'initial'.

See the pgf package documentation for explanation.
Type  H <return>  for immediate help.
 ...                                              

答案1

俄語 babel/polyglossia"活化。

要么使用

\draw svg {...};

或者正如 Mark Wibrow 在評論中提到的那樣,嘗試

\usetikzlibrary{babel} 

載入後tikz

相關內容