TikZ 虚线图案生成有问题的 PDF

TikZ 虚线图案生成有问题的 PDF

考虑以下 MWE:

\documentclass{standalone}
\usepackage{tikz}
\begin{document}
\def\dotsize{1}
\def\spacesize{2}
\def\linesize{4}
\begin{tikzpicture}[%
  dash pattern=%
  on \dotsize  pt off \spacesize pt on \dotsize  pt off \spacesize pt on \dotsize  pt %
  off \spacesize %
  on \linesize pt off \spacesize pt on \linesize pt off \spacesize pt on \linesize pt %
  off \spacesize pt,%
  orange]
  \draw (0,0) -- (4cm,4cm);
\end{tikzpicture}
\end{document}

代码编译得很好,我可以使用skim和打开它acrobat reader。但是,当尝试使用打印 PDF 时,skim我收到以下错误:

 ERROR: limitcheck
 OFFENDING COMMAND: setdash

 STACK:

 0
 [0.99628 1.99255 0.99628 1.99255 0.99628 1.99255 3.9851 1.99255 3.9851 1.99255 3.9851 1.99255]

打印在页面上。从 打印时,acrobat我获得了预期的打印输出。

我正在使用MacTeX2.10 TikZ-CVS。

两个问题:

  1. 有人可以重现该问题吗?
  2. 我该如何调试这个问题?

相关内容