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
|
\documentclass[11pt,b5paper,openright,fleqn]{book}
\special{papersize=176mm,250mm}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{algorithmic, algorithm, colonequals, alltt}
\usepackage{amsmath, amssymb, mathtools, MnSymbol, mathrsfs, esvect}
\usepackage{tipa, color, graphicx}
\usepackage{shorttoc, minitoc}
\usepackage[english]{babel}
\selectlanguage{english}
\definecolor{linkcolour}{RGB}{112, 0, 0}
\definecolor{urlcolour}{RGB}{0, 0, 112}
\usepackage[unicode,pdfencoding=auto]{hyperref}
\hypersetup{
pdfborder={0 0 0},
colorlinks=true,
linkcolor=linkcolour,
urlcolor=urlcolour,
linktoc=all,
pdfsubject={Computer science},
pdfauthor={Mattias Andrée},
pdftitle={libzahl},
pdfkeywords={libzahl, big integer, big number, bigint, bignum, multiple-precision, arbitrary precision}
}
\hypersetup{linktocpage}
\usepackage{makeidx}
\makeindex
\usepackage{geometry}
\geometry{margin=1in}
\usepackage{microtype}
\DisableLigatures{encoding = *, family = *} % NB! disables -- and ---
\frenchspacing
\newcommand{\chapref}[1]{\hyperref[#1]{Chapter~\ref*{#1} [\nameref*{#1}], page \pageref*{#1}}}
\newcommand{\secref}[1]{\hyperref[#1]{Section~\ref*{#1} [\nameref*{#1}], page \pageref*{#1}}}
\newcommand{\appxref}[1]{\hyperref[#1]{Appendix~\ref*{#1} [\nameref*{#1}], page \pageref*{#1}}}
\newcommand{\pchapref}[1]{(see \hyperref[#1]{Chapter~\ref*{#1} [\nameref*{#1}], page \pageref*{#1}})}
\newcommand{\psecref}[1]{(see \hyperref[#1]{Section~\ref*{#1} [\nameref*{#1}], page \pageref*{#1}})}
\newcommand{\pappxref}[1]{(see \hyperref[#1]{Appendix~\ref*{#1} [\nameref*{#1}], page \pageref*{#1}})}
\definecolor{c}{rgb}{0.45, 0.45, 0.45}
\begin{document}
\frontmatter
\title{{\Huge \bf libzahl version 1.1}}
\author{}
\date{\vspace{3in}}
\maketitle
\thispagestyle{empty}
\null
\vfill
\noindent
Copyright \copyright{} 2016 $~$ Mattias Andrée $\langle$\href{mailto:maandree@kth.se}{\texttt{maandree@kth.se}}$\rangle$
\vspace{1ex}
\noindent
{\small
Permission is hereby granted, free of charge, to any person obtaining a
copy of this document and associated files (the ``Document''), to deal in
the Document without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Document, and to permit persons to whom the Document is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Document.
}
\newpage
\shorttoc{Short contents}{0}
\setcounter{tocdepth}{2}
\dominitoc
\tableofcontents
\mainmatter
\input doc/what-is-libzahl.tex
\input doc/libzahls-design.tex
\input doc/get-started.tex
\input doc/miscellaneous.tex
\input doc/arithmetic.tex
\input doc/bit-operations.tex
\input doc/number-theory.tex
\input doc/random-numbers.tex
\input doc/not-implemented.tex
\appendix
\backmatter
\addcontentsline{toc}{chapter}{Index}
\printindex
\end{document}
|