mkogg.py: Fix 'self.get_mp4_metadata(self, source)'
[blog.git] / posts / endfloat.mdwn
1 [Endfloat][] is a [[LaTeX]] package for shifting your figures and
2 tables onto seperate pages at the end of your article, a format
3 requested by some journals. For example, adding
4
5     \usepackage{endfloat}
6     \usepackage{color}
7     \DeclareCaptionFont{white}{\color{white}}
8     \captionsetup{textfont=white}
9
10 This includes endfloat, which adds to the end of your article
11
12 * a list of figures and their captions followed by
13 * the figures themselves on separate pages.
14
15 The bit setting the caption color to white hides the captions on the
16 figure pages, since some journals don't like to have them. If you're
17 using [hyperref][], and you have references from your captions
18 (e.g. to equations, citations, etc.), those may get colored
19 automatically, so they won't be "erased" by the `CaptionFont`
20 redefinition. You can turn off hyperref's coloring with
21
22     \hypersetup{colorlinks=false}
23     \hypersetup{pdfborder=0 0 0}
24
25 which turns of the coloring of the link text, and disables the
26 annoying boxes that hyperref likes to draw around links. Note that
27 this will make links hard to find throughout your entire article, but
28 just for the preprint with captionless figure pages, which isn't
29 really a big deal. You can still find them by mousing around in places
30 where you expect them to be.
31
32 [Endfloat]: http://www.ctan.org/tex-archive/macros/latex/contrib/endfloat/
33 [hyperref]: http://tug.ctan.org/tex-archive/macros/latex/contrib/hyperref/
34
35 [[!tag tags/latex]]