tikzpicture 预览中为空白

tikzpicture 预览中为空白

使用 preview-latex 预览 tikzpicture 环境会在 pdf 模式下显示空白矩形,或者在 ps 模式下根本不产生预览文件。

我正在使用 aquamacs 23.3a、auctex 和 gs 9.04。

我测试了多种文件格式输出和预览选项。我也没有看到任何错误或警告弹出,所以我不能确定错误是出在 ghostscript、auctex 还是预览上。

以下预览整个 tikzpicture 环境的空白。

\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
  \node[draw] {tikz rectangle};
\end{tikzpicture}
\end{document}

有没有办法查看到底哪里出了问题?

答案1

你应该添加

\usepackage[active,float]{preview}
\PreviewEnvironment{tikzpicture} 

作为最后一个包裹。

如果这还不够,请尝试将其包装在可能正在寻找浮点数的tikzpicture范围内。\begin{figure}...\end{figure}preview-latex

相关内容