I have a memoir-class document:
\documentclass[oneside,letterpaper]{memoir} which I set to oneside or twoside depending on if I want to create either an electronic copy (one side) or printable copy (two side). I have three questions:
Is it possible to have it (TeXnicCenter in this case) create two PDF versions when I build (both onesided and twosided) automatically, with different file names?
There is a blank page I need to add only when in
twosidemode, notoneside. How can I integrate that with the above question?If I can't do the two-versions-on-build, how can I do in "if-then" that checks if it's set to
onesideortwosidemode? i.e.if(twoside) then add blank page; end