2 \documentclass[12pt,paper=a4]{scrartcl}
4 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9 %\usepackage[margin=3cm]{geometry}
13 \usepackage[english]{babel}
15 %\usepackage[latin1]{inputenc}
16 %\usepackage[T1]{fontenc}
18 % Do not indent paragraphs, instead separate them via vertical spacing
21 % Support for graphics, provides \includegraphics
23 %\graphicspath{{images/}} % Specify subdir containing the images
25 % Hyperref enriches the generated PDF with clickable links,
26 % and provides many other useful features.
28 \usepackage[colorlinks]{hyperref}
29 \def\sectionautorefname{Section} % Write section with capital 'S'
30 \def\subsectionautorefname{Subsection} % Write subsection with capital 'S'
33 % The fancyvrb package provides the "Verbatim" environment, which,
34 % unlike the built-in "verbatim", allows embedding TeX commands, as
35 % well as tons of other neat stuff (line numbers, formatting adjustments, ...)
37 \fvset{tabsize=4,fontsize=\scriptsize,numbers=left}
39 % Normally, one can not use the underscore character in LaTeX without
40 % escaping it (\_ instead of _). Since the Vorbis specs use it a lot,
41 % we use the underscore package to change this default behavior.
42 \usepackage[nohyphen]{underscore}
44 % In LaTeX, pictures are normally put into floating environments, and it is
45 % left to the typesetting engine to place them in the "optimal" spot. These
46 % docs however expect pictures to be placed in a *specific* position. So we
47 % don't use \begin{figure}...\end{figure}, but rather a center environment.
48 % To still be able to use captions, we use the capt-of package.
52 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
54 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
56 % Custom ref command, using hyperrefs autoref & nameref, to simulate the
57 % behavior of DocBook's '<xref>'.
58 \newcommand{\xref}[1]{\autoref{#1}, ``\nameref{#1}''}
60 % Emulat DocBook's '<link>'.
61 \newcommand{\link}[2]{\hyperref[#1]{#2}}
63 % Simple 'Note' environment. Can be customized later on.
64 \newenvironment{note}{\subparagraph*{Note:}}{}
66 % Map DocBook's <programlisting> to fancyvrb's Verbatim environment
67 \let\programlisting\Verbatim
68 \let\endprogramlisting\endVerbatim
70 % Fake some more DocBook elements
71 \newcommand{\function}[1]{\texttt{#1}}
72 \newcommand{\filename}[1]{\texttt{#1}}
73 \newcommand{\varname}[1]{\texttt{#1}}
74 \newcommand{\literal}[1]{\texttt{#1}}
76 % Redefine \~ to generate something that looks more appropriate when used in text.
77 \renewcommand{\~}{$\sim$}
79 % Useful helper macro that inserts TODO comments very visibly into the generated
80 % file. Helps you to not forget to resolve those TODOs... :)
81 \newcommand{\TODO}[1]{\textcolor{red}{*** #1 ***}}
83 % Configure graphics formats: Prefer PDF, fall back to PNG or JPG, as available.
84 \DeclareGraphicsExtensions{.pdf,.png,.jpg,.jpeg}
87 % NOTE: Things to watch out for: Some chars are reserved in LaTeX. You need to translate them...
88 % ~ -> $\sim$ (or \~ which we defined above)
93 % and others. Refer to any of the many LaTeX refs out there if in doubt!
98 \title{Vorbis I specification}
99 \author{Xiph.org Foundation}
104 \include{01-introduction}
105 \include{02-bitpacking}
106 \include{03-codebook}
116 \include{a1-encapsulation-ogg}
117 \include{a2-encapsulation-rtp}
122 % TODO: Use a bibliography, as in the example below?
123 \begin{thebibliography}{99}
125 \bibitem{Sporer/Brandenburg/Edler} T.~Sporer, K.~Brandenburg and B.~Edler,
126 The use of multirate filter banks for coding of high quality digital audio,
127 \url{http://www.iocon.com/resource/docs/ps/eusipco_corrected.ps}.
130 \end{thebibliography}