diff options
author | Karl Berry <karl@freefriends.org> | 2006-07-21 23:54:18 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2006-07-21 23:54:18 +0000 |
commit | d9ba4e2e8ea2ad7ccbdb8769416a06bfa616eab3 (patch) | |
tree | 03b27ebf3700a6439934460a4311295419a9e440 /Master/texmf-dist/doc/latex/hepthesis/example/example.tex | |
parent | 6205fe4cf94df0a8693755ae920874a8c7b9e959 (diff) |
new package hepthesis (3mar06)
git-svn-id: svn://tug.org/texlive/trunk@1893 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/hepthesis/example/example.tex')
-rw-r--r-- | Master/texmf-dist/doc/latex/hepthesis/example/example.tex | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/hepthesis/example/example.tex b/Master/texmf-dist/doc/latex/hepthesis/example/example.tex new file mode 100644 index 00000000000..75e61322dcd --- /dev/null +++ b/Master/texmf-dist/doc/latex/hepthesis/example/example.tex @@ -0,0 +1,51 @@ +\documentclass{thesis} +\usepackage{thesis} + +%% PDF metadata +\makeatletter +\@ifpackageloaded{hyperref}{% +\hypersetup{% +pdftitle = {Studying B to K pi decays with LHCb}, +pdfsubject = {Andy Buckley's PhD thesis}, +pdfkeywords = {LHCb, B, physics, LHC, heavy flavour}, +pdfauthor = {\textcopyright\ Andy Buckley} +} +}{} +\makeatother + +%% Define the thesis title and author +\definethesis% +{A study of \BToKPi decays with the \LHCb experiment}% +{Andrew Gordon Buckley} + +%% Start the document +\begin{document} + +%% Define the un-numbered front matter (cover pages, rubrik and table of contents) +\begin{frontmatter} + \input{frontmatter} +\end{frontmatter} + +%% Start the content body of the thesis +\begin{mainmatter} + %% Actually, more semantic chapter filenames are better, like "chap-bgtheory.tex" + \input{chap1} + \input{chap2} + %% To ignore a specific chapter while working on another, + %% making the build faster, comment it out like this: + %\input{chap3} +\end{mainmatter} + +%% Produce the appendices +\begin{appendices} + \input{appendices} +\end{appendices} + +%% Produce the un-numbered back matter (e.g. colophon, +%% bibliography, tables of figures etc., index...) +\begin{backmatter} + \input{backmatter} +\end{backmatter} + +%% Close +\end{document} |