从 tikzpicture 生成 odt?

从 tikzpicture 生成 odt?

我如何.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文件。

相关内容