不知何故\includestandalone
,该standalone
包没有创建包含以下主文件的 pdf:
\documentclass{article}
\usepackage{standalone}
\usepackage{tikz}
\begin{document}
\begin{figure}[h]
\includestandalone[mode=buildnew]{test2}
\includestandalone[mode=image]{test2}
\end{figure}
\end{document}
这是独立文件的代码:
\documentclass[tikz]{standalone}
\begin{document}
\begin{tikzpicture}
\draw[->] (0,1cm)--++(14,-5);
\end{tikzpicture}
\end{document}
我认为从阅读手册独立软件包的使用方法(使用 pdflatex):
\includestandalone[mode=buildnew]{test2}
编译后会在我的文件夹中提供一个pdf文件test2.pdf
,但我没有,这就是为什么我的代码的第二行:
\includestandalone[mode=image]{test2}
不起作用,没有 pdf - 没有编译,上面说:)
请解释为什么我在编译后没有得到 pdf。
答案1
这是我的问题的答案。它并不容易找到。 Latex Standalone 总是在文件名中重建/撇号?
Standalone
软件包应该用这个来更新(如果你使用 MiKTEX):https://bitbucket.org/martin_scharrer/standalone/downloads.然后它就可以完美运行了。