-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslides.tex
112 lines (83 loc) · 2.43 KB
/
slides.tex
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
\documentclass[xcolor=svgnames,aspectratio=169]{beamer}
\usetheme{Boadilla}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{sourcecodepro}
\usepackage[whole]{bxcjkjatype}
\usepackage[backend=biber,style=numeric-comp,sorting=none]{biblatex}
\addbibresource{slides.bib}
\setbeamertemplate{bibliography item}{\insertbiblabel}
\usepackage{listings}
\lstset{
language=Octave,
keywordstyle=\color{blue},
showstringspaces=false,
stringstyle=\color{magenta},
commentstyle=\color{DarkGreen},
}
\usepackage{textcomp}
\usepackage{tikz}
\usetikzlibrary{tikzmark,overlay-beamer-styles,babel}
\usepackage{mathtools}
\usepackage{multimedia}
\usepackage{siunitx}
\usepackage{pifont}
\usepackage{tikz}
\newcommand*\colorcheck[1]{%
\expandafter\newcommand\csname #1check\endcsname{\textcolor{#1}{\ding{52}}}%
}
\colorcheck{green}
\usepackage{microtype}
\DisableLigatures{encoding = OT1}
\def\UrlFont{\fontencoding{OT1}\selectfont}
\title[APA - Arbitrary Precision Arithmetic toolbox]{APA - An Arbitrary Precision Arithmetic toolbox}
\subtitle{for Octave and Matlab}
\author[Kai T. Ohlhus]{
オールフス カイトーベン \\
OHLHUS, Kai Torben}
\institute[TWCU]{
Graduate School of Science \\
Tokyo Woman's Christian University}
\date[November 27, 2021]{
"Development of Verified Numerical Computations for Mathematical Modeling" \\
JST/CREST Result Briefing
{\footnotesize\url{http://verifiedby.me/nvr2021/}} \\
(online) \\[1em]
November 27, 2021}
\titlegraphic{
\hfill\includegraphics[height=1em]{res/images/cc-by-sa}
}
\begin{document}
{
\usebackgroundtemplate{
\vbox to \paperheight{\vfil\hbox to \paperwidth{\hfil
\tikz\node[opacity=0.15] {
%\includegraphics[width=0.6\paperwidth]{res/images/logo}
};
\hfil}\vfil}
}
\frame{\titlepage}
}
\section{Existing arbitrary precision arithmetic software}
\frame{\tableofcontents}
\input{tex/slides_other_tools}
\section{APA toolbox}
\frame{\tableofcontents[currentsection]}
\input{tex/slides_apa}
\section{Benchmark}
\frame{\tableofcontents[currentsection]}
\input{tex/slides_benchmark}
\section{Summary and outlook}
\frame{\tableofcontents[currentsection]}
\input{tex/slides_summary}
% Backup slides.
\newcounter{finalframe}
\setcounter{finalframe}{\value{framenumber}}
\section*{References}
\begin{frame}[allowframebreaks,noframenumbering]
\frametitle{References}
\printbibliography
\end{frame}
\setcounter{framenumber}{\value{finalframe}}
\end{document}