exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

system.tex (1999B)


      1 \documentclass[10pt]{book}
      2 \usepackage[utf8]{inputenc}
      3 \usepackage{titlesec}
      4 \usepackage{xspace}
      5 \usepackage{microtype}
      6 \usepackage{amssymb,amsmath,amsthm}
      7 \newtheorem{theorem}{Theorem}
      8 \newtheorem{lemma}{Lemma}
      9 \usepackage{url}
     10 \usepackage{graphicx}
     11 \usepackage{caption}
     12 \usepackage{subcaption}
     13 \usepackage{enumitem}
     14 \usepackage{hyperref}
     15 % bold math
     16 \usepackage{bm}
     17 \usepackage{booktabs}
     18 \usepackage{adjustbox}
     19 \usepackage{array}
     20 \usepackage{verbatim}
     21 \usepackage{listings}
     22 \usepackage{multicol}
     23 
     24 
     25 % stuff like \ding for symbols
     26 \usepackage{pifont}
     27 
     28 \usepackage[
     29   natbib=true,
     30   style=alphabetic,
     31   backref=true,
     32   doi=false,
     33   isbn=false,
     34   maxbibnames=99,
     35 ]{biblatex}
     36 \addbibresource{ref.bib}
     37 
     38 \usepackage{epsfig}
     39 \usepackage{textpos}
     40 \usepackage{ifthen}
     41 \usepackage{makeidx}
     42 \usepackage{float}
     43 \usepackage{calc}
     44 \usepackage{vmargin}
     45 \usepackage{letterspace}
     46 \usepackage[pass]{geometry}
     47 
     48 \usepackage{eurosym}
     49 \usepackage{bytefield}
     50 \usepackage[binary-units,detect-weight=true,detect-family=true]{siunitx}
     51 \usepackage[usenames,dvipsnames,svgnames,table]{xcolor}
     52 \usepackage{qrcode}
     53 \usepackage{cryptocode}
     54 \usepackage{tikz}
     55 \usetikzlibrary{shapes,arrows}
     56 \usetikzlibrary{positioning}
     57 \usetikzlibrary{calc}
     58 \usepackage{mdframed}
     59 % Typography
     60 \usepackage[sc,osf]{mathpazo}
     61 \linespread{1.05}
     62 \usepackage[scaled]{helvet} % ss
     63 \usepackage{courier} % tt
     64 \normalfont
     65 \usepackage[T1]{fontenc}
     66 
     67 \usepackage{pdfpages}
     68 
     69 \author{Florian Dold \and The GNU Taler Developers}
     70 \title{The GNU Taler System}
     71 
     72 \begin{document}
     73 
     74 \newcommand{\astfootnote}[1]{
     75 \let\oldthefootnote=\thefootnote%
     76 \setcounter{footnote}{0}%
     77 \renewcommand{\thefootnote}{\fnsymbol{footnote}}%
     78 \footnote{#1}%
     79 \let\thefootnote=\oldthefootnote%
     80 }
     81 
     82 \maketitle
     83 \frontmatter
     84 \include{abstract}
     85 \include{acknowledgements}
     86 \tableofcontents
     87 \listoffigures
     88 \mainmatter
     89 
     90 
     91 \include{introduction}
     92 \include{taler/design}
     93 \include{taler/security}
     94 \include{taler/implementation}
     95 \include{conclusions}
     96 
     97 \printbibliography[heading=bibintoc]
     98 
     99 \end{document}