summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/dpfloat/README.dpfloat
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2010-02-25 00:38:01 +0000
committerKarl Berry <karl@freefriends.org>2010-02-25 00:38:01 +0000
commit0bde8297281dfbe7752a7caa3c0414403716e14b (patch)
treef4bf2d0d3f52507833e18411d9df84070fc70e3b /Master/texmf-dist/doc/latex/dpfloat/README.dpfloat
parentc193c89c0098d0322b0044c21d7eb66a6cdb2aa8 (diff)
dpfloat doc update (24feb10)
git-svn-id: svn://tug.org/texlive/trunk@17196 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/dpfloat/README.dpfloat')
-rw-r--r--Master/texmf-dist/doc/latex/dpfloat/README.dpfloat45
1 files changed, 0 insertions, 45 deletions
diff --git a/Master/texmf-dist/doc/latex/dpfloat/README.dpfloat b/Master/texmf-dist/doc/latex/dpfloat/README.dpfloat
deleted file mode 100644
index 6c5864bd4de..00000000000
--- a/Master/texmf-dist/doc/latex/dpfloat/README.dpfloat
+++ /dev/null
@@ -1,45 +0,0 @@
-Formatting double-page floats in LaTeX
-
-You sometimes want to format two, full-page figures or tables to appear
-side-by-side in an opened book. The first figure must be on the left (even
-page) and the second figure must appear on the right (odd page).
-
-LaTeX provides no way to assure that two consecutive figures will come out
-this way. This double-page float package, dpfloat.sty, allows you to specify
-that a float must appear on an even page, and thereby allows you to format a
-double-page figure.
-
- ------------------------------------------------------------------------
-
-You format a double-page figure by formatting two consecutive, full-page
-figures, specifying that the first must appear on a left page. The other
-will follow on the right page.
-
-It looks something like this:
-
- \documentclass{...}
-
- \usepackage{dpfloat}
-
- \begin{document}
-
- ...
-
- % a double-page figure
-
- \begin{figure}[p]% will be the left-side figure
- \begin{leftfullpage}
- This is the left side figure
- \end{leftfullpage}
- \end{figure}
- \begin{figure}[p]% will be the right-side figure
- \begin{fullpage}
- This is the right side figure
- \end{fullpage}
- \end{figure}
-
- % end of the figure
-
- ...
-
- \end{document}