<div dir="ltr">In the past I've used `\jobname` as a switch to generate different outputs from the same source file, but it requires two separate compile jobs (i.e. `pdflatex -jobname=solutions problems.tex`, and then I'd use something like (note: it's been a while so my syntax could be way off here)<div><br></div><div>```</div><div>\newif\ifsolutions</div><div>\def\solutionsjob{solutions}</div><div>\ifx\jobname\solutionsjob\solutionstrue\fi</div><div>```</div><div><br></div><div>If you really want to do it with a single pdflatex invocation, you could potentially use `--shell-escape` with `\write18{pdflatex ...}` but this of course opens up a security hole and I wouldn't recommend it for the benefit you're gaining over a simple shell script (for instance).</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, Jul 18, 2022 at 3:15 PM Christopher W. Ryan via texhax <<a href="mailto:texhax@tug.org">texhax@tug.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">I suppose this is a question at the intersection of LaTeX, R, Sweave. So<br>
not entirely sure which listserve is the best place to post it.<br>
<br>
For my statistical/academic work, I create a noweb .Rnw file and use an<br>
R -> Sweave -> pdflatex workflow (incidentally using emacs and Emacs<br>
Speaks Statistics as an IDE of sorts, but I think that is immaterial.)<br>
<br>
Model-fitting produces many graphs. I generate these each as their own<br>
pdf file, and then use<br>
<br>
\begin{figure}<br>
  \includegraphics{}<br>
  \caption{}\label{}<br>
\end{figure}<br>
<br>
blocks to include them in the manuscript.<br>
<br>
Some grpahs are for inclusion in a main manuscript, while others are<br>
diagnostic plots assessing the adequacy of the model that probably<br>
should be relegated at a separate pdf file of "Supplementary Materials".<br>
Many journals accept/encourage such materials these days.<br>
<br>
Is there a way to generate two pdf files, the main manuscript and the<br>
Supplementary Materials, in one fell swoop (meaning compile the Rnw file<br>
just once)? Or do I need to write a separate LaTeX source file that<br>
includes the supplementary graphics and compile that separately? I<br>
suspect the latter is true, and the former would be expecting too much<br>
magic. But thought I'd ask.<br>
<br>
Thanks.<br>
<br>
--Chris Ryan<br>
</blockquote></div>