summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/anonchap
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2010-02-16 00:38:10 +0000
committerKarl Berry <karl@freefriends.org>2010-02-16 00:38:10 +0000
commit66d52648f02454ea42c196cb510e82db059ceb6d (patch)
tree541d9db2a16a2cf306d75f4a926c533500fe0883 /Master/texmf-dist/doc/latex/anonchap
parent55a363321384bb40bf3d73269227f8233508afe5 (diff)
anonchap update (15feb10)
git-svn-id: svn://tug.org/texlive/trunk@17049 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/anonchap')
-rw-r--r--Master/texmf-dist/doc/latex/anonchap/anonchap.pdfbin0 -> 191020 bytes
-rw-r--r--Master/texmf-dist/doc/latex/anonchap/anonchap.tex96
2 files changed, 96 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/anonchap/anonchap.pdf b/Master/texmf-dist/doc/latex/anonchap/anonchap.pdf
new file mode 100644
index 00000000000..5d823456469
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/anonchap/anonchap.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/anonchap/anonchap.tex b/Master/texmf-dist/doc/latex/anonchap/anonchap.tex
new file mode 100644
index 00000000000..54d417445e1
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/anonchap/anonchap.tex
@@ -0,0 +1,96 @@
+\documentclass[DIV=8, pagesize=auto]{scrartcl}
+
+\usepackage{lmodern}
+\usepackage[T1]{fontenc}
+\usepackage{textcomp}
+\usepackage{shortvrb}
+
+\addtokomafont{title}{\rmfamily}
+\MakeShortVerb{"}
+\newcommand*{\meta}[1]{\textlangle\textsl{#1}\textrangle}
+
+\title{The \textsf{anonchap} package}
+\author{Peter Wilson, Herries Press; \\ maintained by Will Robertson}
+\date{2009/08/03}
+
+
+\begin{document}
+
+\maketitle
+
+\begin{abstract}
+ Provides commands to make "\chapter" typeset like "\section".
+ \emph{Do not use with the \textsf{tocbibind} package} (which also supplies these commands).
+\end{abstract}
+
+
+\section{Change history}
+
+\begin{description}
+\item[v1.1a] New maintainer (Will Robertson)
+\end{description}
+
+
+\section{Usage:}
+
+"\simplechapter["\meta{name}"]" and "\simplechapterdelim{"\meta{delim}"}" act together
+so that any subsequent "\chapter" commands, for example
+%
+\begin{verbatim}
+\chapter{First} ... \chapter{Second}...
+\end{verbatim}
+%
+will be typeset in the style of a "\section" (or numbered "\chapter*") as:
+%
+\begin{quote}
+ \meta{name} 1\meta{delim} First\\
+ \ldots\\
+ \meta{name} 2\meta{delim} Second
+\end{quote}
+%
+A subsequent "\restorechapter" command will reset the "\chapter" typesetting
+back to its default style.
+
+Note that the argument to "\simplechapter" is optional, and that by default
+"\simplechapterdelim" is defined as
+%
+\begin{verbatim}
+\newcommand{\simplechapterdelim}{}
+\end{verbatim}
+
+\begin{samepage}
+Extending the above example:
+%
+\begin{verbatim}
+\simplechapter
+\chapter{First}
+...
+\renewcommand{\simplechapterdelim}{:}
+\chapter{Second}
+...
+\restorechapter % restore before issuing
+ % a modified \simplechapter
+\simplechapter[Chap]
+\chapter{Third}
+...
+\restorechapter
+\chapter{Fourth}
+...
+\end{verbatim}
+%
+Will be typeset as:
+%
+\begin{quote}
+ 1 First\\
+ \ldots\\
+ 2: Second\\
+ \ldots\\
+ Chap 3: Third\\
+ \ldots\\
+ Chapter 4\\
+ Fourth\\
+ \ldots
+\end{quote}
+\end{samepage}
+
+\end{document}