hgbook

annotate en/00book.tex @ 550:5cd47f721686

Rename LaTeX input files to have numeric prefixes
author Bryan O'Sullivan <bos@serpentine.com>
date Thu Jan 29 22:56:27 2009 -0800 (2009-01-29)
parents a631aca1083f
children
rev   line source
bos@61 1 % The use of oneside here is a temporary hack; \marginpar entries
bos@61 2 % don't show up on odd pages of PDF output without it. Sigh.
bos@61 3 \documentclass[oneside]{book}
bos@61 4 \usepackage{enumerate}
bos@61 5 \usepackage{fullpage}
bos@61 6 \usepackage{makeidx}
bos@61 7 \usepackage{ifpdf}
bos@61 8 \usepackage{graphicx}
bos@61 9 \usepackage{pslatex}
bos@61 10 \usepackage{fancyvrb}
bos@61 11 % leave hyperref until last
bos@225 12 \usepackage[colorlinks=true,bookmarks=true,pdftitle={Distributed
bos@225 13 revision control with Mercurial},pdfsubject={Revision
bos@225 14 control},pdfkeywords={Mercurial, Revision control, Distributed
bos@225 15 revision control},pdfauthor={Bryan O'Sullivan}]{hyperref}
bos@61 16
bos@61 17 \include{99defs}
bos@61 18
bos@177 19 \title{Distributed revision control with Mercurial} \author{Bryan
bos@177 20 O'Sullivan}
bos@148 21 \date{Copyright \copyright\ 2006, 2007 Bryan O'Sullivan.\\
bos@61 22 This material may be distributed only subject to the terms and
bos@61 23 conditions set forth in version 1.0 of the Open Publication License.
bos@61 24 Please refer to Appendix~\ref{cha:opl} for the license text.\\
bos@186 25 This book was prepared from
bos@186 26 \href{http://hg.serpentine.com/mercurial/book/}{rev~\input{build_id}}
bos@186 27 using \href{http://www.selenic.com/hg/}{rev~\input{hg_id}} of Mercurial.}
bos@61 28
bos@61 29 \makeindex
bos@61 30
bos@61 31 \begin{document}
bos@61 32
bos@61 33 \maketitle
bos@61 34
bos@61 35 \addcontentsline{toc}{chapter}{Contents}
bos@61 36 \pagenumbering{roman}
bos@61 37 \tableofcontents
bos@61 38 \listoffigures
bos@61 39 %\listoftables
bos@61 40
bos@61 41 \pagenumbering{arabic}
bos@61 42
bos@550 43 \include{ch00-preface}
bos@550 44 \include{ch01-intro}
bos@550 45 \include{ch02-tour-basic}
bos@550 46 \include{ch03-tour-merge}
bos@550 47 \include{ch04-concepts}
bos@550 48 \include{ch05-daily}
bos@550 49 \include{ch06-collab}
bos@550 50 \include{ch07-filenames}
bos@550 51 \include{ch08-branch}
bos@550 52 \include{ch09-undo}
bos@550 53 \include{ch10-hook}
bos@550 54 \include{ch11-template}
bos@550 55 \include{ch12-mq}
bos@550 56 \include{ch13-mq-collab}
bos@550 57 \include{ch14-hgext}
bos@61 58
bos@61 59 \appendix
bos@550 60 \include{appA-cmdref}
bos@550 61 \include{appB-mq-ref}
bos@550 62 \include{appC-srcinstall}
bos@550 63 \include{appD-license}
bos@61 64 \addcontentsline{toc}{chapter}{Bibliography}
bos@61 65 \bibliographystyle{alpha}
bos@61 66 \bibliography{99book}
bos@61 67
bos@89 68 \addcontentsline{toc}{chapter}{Index}
bos@61 69 \printindex
bos@61 70
bos@61 71 \end{document}
bos@61 72
bos@61 73 %%% Local Variables:
bos@61 74 %%% mode: latex
bos@61 75 %%% TeX-master: t
bos@61 76 %%% End: