SMC's LaTeX editor doesn't work with multiple files. I searched a bit
around and found a package I've never heard of: "subfiles". It seems
to be pretty new, too.
What it does is the following: you create a master document, which
references sub-documents, and the sub-documents reference the master
document for the overall style. That's all. Then you can render
everything or just a part of it at the same time.
I hope this is helpful for some of you!
http://ctan.org/tex-archive/macros/latex/contrib/subfiles
In example below pay attention, how the scrartcl class is propagated
to both child documents!
@William: what's missing is the obvious: trigger a recompile of the
master document, if one of the child documents change - and vice
versa, recompile a child, if the master document changes (which might
have an impact on the styling of the child).
Example:
main.tex
\documentclass[a4paper]{scrartcl}
\usepackage{subfiles}
\begin{document}
This is the main part
\subfile{chapter1}
\subfile{chapter2}
\end{document}
chapter1.tex
\documentclass[main.tex]{subfiles}
\begin{document}
\section{Section 1}
This is section 1 speaking!
\end{document}
chapter2.tex
\documentclass[main.tex]{subfiles}
\begin{document}
\section{Section 2}
... and this is section 2.
\end{document}