[Tex/LaTex] kTikZ and extra packages

ktikztikz-pgf

Is there any way of loading extra libraries within KtikZ with the \usepackage{} command, like in other LaTeX documents?
I could not find any documentation.

And, of course, a MWE in this case is not possible.

Best Answer

Click the Edit button and add any package you need to the template.

enter image description here

Mine follows for reference:

\documentclass{standalone}
\usepackage{tikz,pgfplots}
\pgfplotsset{compat=newest}
\usepgfplotslibrary{groupplots}

\begin{document}
<>
\end{document}

The <> mark is where the code you type in KtikZ will be placed.

Related Question