General ⇒ An anti-draft package ?
An anti-draft package ?
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,
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
An anti-draft package ?
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
Re: An anti-draft package ?
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: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
An anti-draft package ?
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