Note: I don't think the ifdraft package provides exactly what I'm looking for, but it could be wrappered (I just don't know how :-) )
I'd like to do this:
\ifdraft
... pgf graph component that's only for me
\fi
I'm currently using \iffalse and \fi, but it's obviously more clunky to change 20 locations instead of one. I'm trying to avoid \ifdraft{do x}{do y} because 1) it's uglier and therefore less readable 2) 95% of my use cases would be \ifdraft{do X}{}. If there's a way to wrapper ifdraft{do X}{} into \ifdraft X \fi that would be perfect!
Followed by passing in the filename. Could I use something like
– Chris Aug 23 '19 at 14:31make $file-draftandmake $file-finalto accomplish this?