diff options
author | Karl Berry <karl@freefriends.org> | 2009-05-23 00:23:51 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2009-05-23 00:23:51 +0000 |
commit | a683c3d7e9fac38ec713f23fb6b9d2c7143aea82 (patch) | |
tree | 424ab223921f85fd3f167a4ccd0e2d37d05c2927 /Master/texmf-dist/doc/latex/MemoirChapStyles/README | |
parent | 5beb5368a684995153c8566797ba054f21c666af (diff) |
move english latex doc out of texmf-doc
git-svn-id: svn://tug.org/texlive/trunk@13412 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/MemoirChapStyles/README')
-rw-r--r-- | Master/texmf-dist/doc/latex/MemoirChapStyles/README | 97 |
1 files changed, 97 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/MemoirChapStyles/README b/Master/texmf-dist/doc/latex/MemoirChapStyles/README new file mode 100644 index 00000000000..56667752af2 --- /dev/null +++ b/Master/texmf-dist/doc/latex/MemoirChapStyles/README @@ -0,0 +1,97 @@ +% (C) Lars Madsen, daleif@imf.au.dk, 2006/12/15 +% This material is subject to the LaTeX Project Public License. +% See http://www.ctan.org/tex-archive/help/Catalogue/licenses.lppl.html +% for the details of that license. + + +The main idea behind this document is to demonstrate various either +contributed or inspired chapter styles for the memoir class. + +If you have style you would like to contribute a style/implementation, +please send it with a minimal example to daleif+memoir@imf.au.dk +and I will include it into this document. + + + +Memoir Chapter style Showcase -- README +---------------------------------------- + +The showcase source consists of one single file that includes +everything needed to compile the document. + + +Files +------ + +MemoirChapStyles.tex -- source code +MemoirChapStyles.pdf -- compiled showcase +README -- this document + + +Versions +--------- + +1.6 Added the jenor style, and prepared for a CTAN release. +1.5 A new mempatch version has been released including several new + chapter styles, this document has been changed acordingly. + You can use this as a preview for these styles. +1.4c: Added demo2 from the comming new version of Memoir Addendum, and + also added the the daleif3 style +1.4b: Sample text bugfix, a missing \par after \fancybreak affects + the spacing after \chapter* +1.4: Added the EQ style inspired by a mail from Erik Quaeghebeur +1.3: Added the reparticle, southall and chappell styles from the + memoir addendum. Thanks to David Chadd for reminding me. + + + +How to compile this showcase document: +-------------------------------------- + +Requirements: + +A fairly new LaTeX installation + +pdfcrop (comes at least with TeX Live 2005) +pdftops (comes with Xpdf, only for Linux, sorry) +perl (see later) + + +To compile: + +Run the document once through latex or pdflatex. +This will create + + process.pl + chapterexample.tex + +and a lot of + + *-style.tex + +files + +Now run (you might need to change the permissions on process.pl) + + ./process.pl -f MemoirChapStyles.styles + +This will process all of the *-style files mentioned in MemoirChapStyles.styles. +It will run + + pdflatex XXX-style.tex + pdfcrop XXX-style.pdf tmp.pdf + mv tmp.pdf XXX-style.pdf + pdftops -eps XXX-style.pdf + + +(plus a little extra for the EQ style) + +The reason for going over pdflatex, pdfcrop, pdftops is that dvips is +not good at creating correct bounding boxes for files that contain +postscript effects, pdfcrop does a much better job. + +Then run latex or pdflatex on MemoirChapStyles.tex a few times to get all +references up to date. + + +/daleif |