1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
|
%% ttb_en.tex
%% Copyright 2003-2005 Nicolas Markey
%
% This work may be distributed and/or modified under the
% conditions of the LaTeX Project Public License, either version 1.3
% of this license or (at your option) any later version.
% The latest version of this license is in
% http://www.latex-project.org/lppl.txt
% and version 1.3 or later is part of all distributions of LaTeX
% version 2003/12/01 or later.
%
% This work has the LPPL maintenance status "maintained".
% The Current Maintainer of this work is Nicolas Markey
%
% This work consists of the files
% ttb_en.tex
% ttb_en.sec1.tex ttb_en.sec2.tex ttb_en.sec3.tex
% ttb_en.sec4.tex ttb_en.sec5.tex ttb_style.sty
% local.bib idxstyle.ist Makefile
% and the derived ttb_en.dvi, ttb_en.ps and ttb_en.pdf
\def\ttbversion{1.3}
\def\ttbdate{16/10/2005}
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{ifpdf}
\ifpdf
\usepackage{lmodern}
\fi
\usepackage[latin1]{inputenc}
\usepackage[english]{babel}
\usepackage{moreverb}
\usepackage{url}
\usepackage[margin=3cm,bottom=2.5cm,top=3cm]{geometry}
\usepackage{multind}
\usepackage{array}
\usepackage{longtable}
\usepackage{marvosym}
\usepackage{color}
\usepackage{ttb_style}
\usepackage{xcolor}
\usepackage[colorlinks,breaklinks]{hyperref}
\makeatletter
\def\@citecolor{green!50!black}
\def\@linkcolor{red!80!black}
\makeatother
\usepackage{advdate}
\makeatletter
\let\save@ssect\@ssect
\usepackage{minitoc}
\expandafter\ifx\csname mtcskip\endcsname\relax
\def\mtcskip{}
\message{WARNING -- Please update your minitoc package.}
\fi
\makeindex{latex}
\makeindex{bibtex}
\begin{document}
\SetDate[\ttbdate]
\setcounter{parttocdepth}{3}
\doparttoc
%% Title page
\begin{center}
{\Huge\bfseries Tame the BeaST}
\par\bigskip
{\large The B to X of \bt}
\par\bigskip
Nicolas \textsc{Markey}
\par
\url{markey@lsv.ens-cachan.fr}
\end{center}
\widowpenalty10000
\vfil\vfil
\begin{center}
\fbox{Version \ttbversion{} -- \today}
\vfil
\begin{minipage}{.8\textwidth}
This \pageref{lastpage}-page tutorial presents and explains, as clearly and
exhaustively as possible, what \bt can do.
Indeed, \bt manuals, essentially two documents by its
author~\cite{btxdoc,btxhak} and chapters in some \LaTeX
books~\cite[...]{latex:dps,latex:lc,latex:lc2}, are often
short and incomplete.
The capital letters ``BST'' in the title represent the standard extension of
\bt style files. ``B~to~X'' means that I tried to be as complete as
possible. Don't hesitate to e-mail me you \TeX{}nical as well as
(mis)spelling remarks.
\end{minipage}
\end{center}
\vfil\vfil
\begin{center}
\begin{minipage}{.8\textwidth}
\tableofcontents
\end{minipage}
\end{center}
\vfil
\include{ttb_en.sec1}
\include{ttb_en.sec2}
\include{ttb_en.sec3}
\include{ttb_en.sec4}
\include{ttb_en.sec5}
%\nocite{merlin}
\def\addcontentsline#1#2#3{}
\cleardoublepage
\bibliographystyle{alpha}
\bibliography{local}
\printindex{latex}{\LaTeX}
\clearpage
\let\oldendindex\endtheindex
\def\copyright{\vfill
\null\hfill\begin{minipage}{.5\textwidth}
\setlength\parindent{0pt}
\obeyspaces
Copyright \textcopyright{} 2003-\the\year{} Nicolas \textsc{Markey}
This work may be distributed and/or modified under the
conditions of the LaTeX Project Public License, either version 1.3
of this license or (at your option) any later version.
The latest version of this license is in\par
\hfil\url{http://www.latex-project.org/lppl.txt}\par
and version 1.3 or later is part of all distributions of LaTeX
version 2003/12/01 or later.
This work has the LPPL status "maintained".\par
The current maintainer of this work is Nicolas \textsc{Markey}.
\end{minipage}}
\def\endtheindex{\label{lastpage}\copyright\oldendindex}
\printindex{bibtex}{\bt}
%\leavevmode\label{lastpage}
\end{document}
|