我也发布了这篇文章,重点略有不同堆栈溢出已经,但我仍在寻找一个优雅的解决方案,所以我将在这里再试一次。
我用tikz设备在 R 中将我的图形转换为 Tikz 文件。不幸的是,这些文件是独立的 latex 文档,因此它们周围有一个\begin
and\end{document}
标签,因此我无法将.tikz
-files 作为子文档包含在 Lyx 中。
我可能必须剪切文件的开头和结尾,然后它才能工作,但我宁愿不生成正文或让 lyx 忽略它。有什么想法吗?
PS:.tikz
文件如下所示
% Created by tikzDevice version 0.10.1
% !TEX encoding = UTF-8 Unicode
\documentclass[10pt]{article}
\nonstopmode
\usepackage{tikz}
\usepackage[active,tightpage,psfixbb]{preview}
\PreviewEnvironment{pgfpicture}
\setlength\PreviewBorder{0pt}
\begin{document}
\begin{tikzpicture}[x=1pt,y=1pt]
[...this is where the tikzcode is...]
\end{tikzpicture}
\end{document}