I want to generate some images using the tikz-uml
package These images should be shown also in HTML format, like formulas. In a normal latex document in order to draw these images I write
\documentclass[a4paper,10pt,openright,twoside,final]{memoir}
...
\usepackage{tikz}
\usepackage{tikz-uml}
\usetikzlibrary{positioning}
\begin{document}
\begin{tikzpicture}
\begin{umlpackage}[x=0,y=0,fill=red!10]{package}
...
\end{umlpackage}
\end{tikzpicture}
\end{document}
In particular I need to call usetikzlibrary{positioning}
after package declaration.
In the doxyfile I can put \usepackage{tikz-uml}
with EXTRA_PACKAGES
variable, that's works also when using LaTeX in html, but I don't know how put into the doxyfile the command \usetikzlibrary{positioning}
that I need in order to define my images. How can I tell doxygen to add this line?