How can I produce an .odt file from a .tex source which includes \tikzpicture?
I tried mk4ht oolatex test.tex but I only be able to produce an empty .odt file from the following code:
\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}
I am open to other way to get my .odt file.
! Undefined control sequence. \Gin@ewidth ->\pgfexternalwidth– Sigmun Oct 04 '13 at 08:37\usepackage{graphicx}and\usetikzlibrary{external}as you did in your example. – Sigmun Oct 04 '13 at 09:25