summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2010-02-06 23:41:34 +0000
committerKarl Berry <karl@freefriends.org>2010-02-06 23:41:34 +0000
commitc4de2d646327abffb394d44f2b06b2085dd4bfb0 (patch)
tree30bba6a0d563570ca8b3974c99e72b54fceb2fdb /Master/texmf-dist/doc/latex
parent585255c491e58499ca285c62e610eee9e3a257df (diff)
new latex package renditions 0.1 (6feb10)
git-svn-id: svn://tug.org/texlive/trunk@16932 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex')
-rw-r--r--Master/texmf-dist/doc/latex/renditions/README22
-rw-r--r--Master/texmf-dist/doc/latex/renditions/renditions.pdfbin0 -> 60135 bytes
-rw-r--r--Master/texmf-dist/doc/latex/renditions/test_ren.tex27
3 files changed, 49 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/renditions/README b/Master/texmf-dist/doc/latex/renditions/README
new file mode 100644
index 00000000000..c6830289aba
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/renditions/README
@@ -0,0 +1,22 @@
+The renditions package
+Dated: 02/05/10
+
+Using the renditions package, you can create many versions, or renditions, of content from the same source file.
+
+This is a short package sets up comment environments, called renditions. These renditions can be included or excluded according to the value of the rendition option. The basic options of this package are max and rendition,
+
+ \usepackage[max=4,rendition=3]{renditions}
+
+In the above example, max=4 declares that there are 4 renditions in the document, the option rendition=3 causes the package to include rendition3, and to exclude all the others rendition1, rendition2, and rendition4.
+
+The renditions package is a stand-alone package, but it was designed for use with the AeB Builder utility.
+
+The package requires the comment package.
+
+Now, I simply must get back to my retirement.
+
+Dr. D. P. Story
+www.acrotex.net
+dpstory@uakron.edu
+dpstory@acrotex.net
+02/05/10
diff --git a/Master/texmf-dist/doc/latex/renditions/renditions.pdf b/Master/texmf-dist/doc/latex/renditions/renditions.pdf
new file mode 100644
index 00000000000..b9f2b423492
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/renditions/renditions.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/renditions/test_ren.tex b/Master/texmf-dist/doc/latex/renditions/test_ren.tex
new file mode 100644
index 00000000000..169af9e8a3d
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/renditions/test_ren.tex
@@ -0,0 +1,27 @@
+\documentclass{article}
+\usepackage[max=4, rendition=2]{renditions}
+
+%\rendition{3}
+
+\parindent0pt\parskip6pt
+
+\begin{document}
+This is a test file for renditions.
+
+\begin{rendition1}
+Rendition 1
+\end{rendition1}
+
+\begin{rendition2}
+Rendition 2
+\end{rendition2}
+
+\begin{rendition3}
+Rendition 3
+\end{rendition3}
+
+\begin{rendition4}
+Rendition 4
+\end{rendition4}
+
+\end{document} \ No newline at end of file