Hi everyone,
I would like to know if an "anti-draft" package exist, where the text would be ignored and only the figures and other floats would be displayed ?
My point is : I'm currently finishing the writing of my PhD thesis where a lot of figures ar cross-referenced and I would like to make a second small document to regroup and synthetize all the figures where it would be easier for the reader to find the figures?
Is there already some package to do that ? Would that ring a bell ?
Thanks a lot by advance,
General ⇒ An anti-draft package ?
NEW: TikZ book now 40% off at Amazon.com for a short time.

An anti-draft package ?
Hi Titan2012,
Welcome to the LaTeX community!
Best Regards
Welcome to the LaTeX community!
I am not aware of any package (or more probably script) that offers this. This also seems a very localized use case. Since the positioning/placement depends on the surrounding text anyway one would not gain any advantage/knowledge in this respect. The only thing you would get is the order of the images. I would think this last point is easier done by creating a second document and (with the help of the search function of the editor) copying allTitan2012 wrote:I would like to know if an "anti-draft" package exist, where the text would be ignored and only the figures and other floats would be displayed ?
\includegraphics{...}
in there. I am not convinced though that this will help you figure out where to place your figures differently…Best Regards
site moderator & package author
Re: An anti-draft package ?
Thank you for your reply Clemens,
That was the kind of solution I wanted to avoid. ^^"
But in the end, you're right. I may have to do that.
Best regards
That was the kind of solution I wanted to avoid. ^^"
But in the end, you're right. I may have to do that.
Best regards
- Stefan Kottwitz
- Site Admin
- Posts: 10347
- Joined: Mon Mar 10, 2008 9:44 pm
An anti-draft package ?
Hi,
welcome to the board!
Here's a simple approach for managing draft and final versions. Put into the preamble
and use for text text within the document
This way you can switch between a draft and a final stage. Or define
Or use the
comment package, which can show and hide environments.
Another possible approach may be using the
endfloat package during the draft stage, and viewing/printing just the float pages at the end, and removing the endfloat setting at the final stage.
Stefan
welcome to the board!
Here's a simple approach for managing draft and final versions. Put into the preamble
Code: Select all
\newif\iffinal
\finaltrue% or use false, for hidden text
Code: Select all
\iffinal
your text
\else
% nothing, or placeholder
\fi
\ifdraft
, the other way round.Or use the

Another possible approach may be using the

Stefan
LaTeX.org admin