我如何.odt
从.tex
包含的源生成文件\tikzpicture
?
我尝试过mk4ht oolatex test.tex
但是我只能.odt
通过以下代码生成一个空文件:
\documentclass{article}
\def\pgfsysdriver{pgfsys-tex4ht.def}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\path (0,0) node[draw] (A) {A};
\path (2,0) node[draw] (B) {B};
\draw (A) -- (B) node[midway,above = 0 em] {via};
\end{tikzpicture}
\end{document}
我愿意通过其他方式来获取我的.odt
文件。