When doing bigger projects in LaTeX, it's nice to write tikzpictures and graphs in a standalone document, and then include the generated PDF document as a picture.
When collaborating with others, it is nice to share the documents with an editor such as ShareLaTeX or overleaf.
What is then nice to do, when combining bigger projects with sharing, would be to use both together. When using ShareLaTeX one can easily change the compiled document to a standalone figure:
However, ShareLaTeX does not put the PDF file produced by this in the directory, so it is not avaliable to use as an input file ;-(
I do realize that I can just compile the document I want, and then download it:

And reupload it to the directory, but to be honest this is just a big hassle.
So the question goes: Is there a better way to compile standalone figures in ShareLaTeX that get's you the PDF?
Thanks in advance!

figure/folder that you point to as yourgraphicspath– Thorbjørn E. K. Christensen Feb 16 '18 at 12:28Overleaf 2revamp ofoverleafcomming in may. But it's just sad that it's not here yet – Thorbjørn E. K. Christensen Feb 16 '18 at 12:40\includestandalonein the main file and usebuildnewas option for thestandalonepackage in the main file. This way the main file compiler run will call a sub-compiler run to produce the PDFs. If this doesn't work, then you might keep using the source directly (i.e. simply removebuildnew) – Martin Scharrer Mar 09 '18 at 08:02