I have to embed four documents{standalone} in another document{article}. \includestandalone is not working for me. (I have the data in the same folder, therefore the /./)
I tried to include with this code:
\begin{figure} \includestandalone[width=\textwidth]
{/./name_of_document_to_embedd}
\caption{My TikZ picture}
\label{..}
\end{figure}
Ps.: Furthermore I'm asked to include a \ref{..} so it's possible to put a reference to the graphics and put two document-plots next to each other with \minipage (but first I need to solve the including problem).
.
.


yourdiagram.texis in the same folder as your main.texfile, then use\includestandalone{yourdiagram}. You could use\includestandalone{./yourdiagram}, but that isn't needed.\includestandalone{/./yourdiagram}is wrong. – Torbjørn T. Jun 02 '18 at 13:30