From: W. Trevor King Date: Wed, 18 May 2011 20:15:01 +0000 (-0400) Subject: Add endfloat post (I'd previously posted it on the department liki). X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=36e59d53a2097ce28f36027d6ea2ce5baf026c88;p=blog.git Add endfloat post (I'd previously posted it on the department liki). --- diff --git a/posts/endfloat.mdwn b/posts/endfloat.mdwn new file mode 100644 index 0000000..45209a0 --- /dev/null +++ b/posts/endfloat.mdwn @@ -0,0 +1,35 @@ +[Endfloat][] is a [[LaTeX]] package for shifting your figures and +tables onto seperate pages at the end of your article, a format +requested by some journals. For example, adding + + \usepackage{endfloat} + \usepackage{color} + \DeclareCaptionFont{white}{\color{white}} + \captionsetup{textfont=white} + +This includes endfloat, which adds to the end of your article + +* a list of figures and their captions followed by +* the figures themselves on separate pages. + +The bit setting the caption color to white hides the captions on the +figure pages, since some journals don't like to have them. If you're +using [hyperref][], and you have references from your captions +(e.g. to equations, citations, etc.), those may get colored +automatically, so they won't be "erased" by the `CaptionFont` +redefinition. You can turn off hyperref's coloring with + + \hypersetup{colorlinks=false} + \hypersetup{pdfborder=0 0 0} + +which turns of the coloring of the link text, and disables the +annoying boxes that hyperref likes to draw around links. Note that +this will make links hard to find throughout your entire article, but +just for the preprint with captionless figure pages, which isn't +really a big deal. You can still find them by mousing around in places +where you expect them to be. + +[Endfloat]: http://www.ctan.org/tex-archive/macros/latex/contrib/endfloat/ +[hyperref]: http://tug.ctan.org/tex-archive/macros/latex/contrib/hyperref/ + +[[!tag tags/latex]]