Working on it
some useful links: Princeton graphs 
SDAS graphs
grstyle package
One legend for combined graphs: grc1leg
I know this subpage is definitely incomplete for now. I will clean this up in the coming winter break.
Everything about graphs on Stata
High-quality graph output for LATEX
On Stata:
[plot the graph] 
graph export [file name].pdf, as(pdf) name("Graph") replace  Then, on LATEX terminal:
\usepackage{graphicx}
.
.
\begin{figure}[H]
 \includegraphics[width = \textwidth]{[file name].pdf}
 \caption{[graph title]}
\end{figure}