This commit is contained in:
2026-04-14 23:07:14 +02:00
commit 184014fe4b
6 changed files with 117 additions and 0 deletions

BIN
Images/boulder.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

BIN
Images/chess.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

BIN
Images/sa.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

BIN
Images/tango.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

BIN
Images/volley.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

117
presentation.tex Normal file
View File

@@ -0,0 +1,117 @@
\documentclass[12pt,t]{beamer}
\usepackage{graphicx}
\setbeameroption{hide notes}
\setbeamertemplate{note page}[plain]
% get rid of junk
\usetheme{default}
\beamertemplatenavigationsymbolsempty
\hypersetup{pdfpagemode=UseNone} % don't show bookmarks on initial view
% font
\usepackage{fontspec}
\setsansfont{TeX Gyre Heros}
\setbeamerfont{note page}{family*=pplx,size=\footnotesize} % Palatino for notes
% "TeX Gyre Heros can be used as a replacement for Helvetica"
% In Unix, unzip the following into ~/.fonts
% In Mac, unzip it, double-click the .otf files, and install using "FontBook"
% http://www.gust.org.pl/projects/e-foundry/tex-gyre/heros/qhv2.004otf.zip
%\newfontfamily\emojifont{Noto Emoji}
\newcommand{\inlineemoji}[2][1.2em]{%
\raisebox{-0.2em}{\includegraphics[height=#1]{#2}}%
}
%% named colors
%\definecolor{offwhite}{RGB}{249,242,215}
%\definecolor{foreground}{RGB}{255,255,255}
%\definecolor{background}{RGB}{24,24,24}
%\definecolor{title}{RGB}{107,174,214}
%\definecolor{gray}{RGB}{155,155,155}
%\definecolor{subtitle}{RGB}{102,255,204}
%\definecolor{hilight}{RGB}{102,255,204}
%\definecolor{vhilight}{RGB}{255,111,207}
%\definecolor{lolight}{RGB}{155,155,155}
%%\definecolor{green}{RGB}{125,250,125}
% named colors for white-background slides
\definecolor{offwhite}{RGB}{255,255,255}
\definecolor{foreground}{RGB}{34,34,34}
\definecolor{background}{RGB}{255,255,255}
\definecolor{title}{RGB}{0,82,155}
\definecolor{gray}{RGB}{110,110,110}
\definecolor{subtitle}{RGB}{0,121,107}
\definecolor{hilight}{RGB}{0,121,107}
\definecolor{vhilight}{RGB}{180,0,102}
\definecolor{lolight}{RGB}{130,130,130}
%\definecolor{green}{RGB}{0,140,70}
% use those colors
\setbeamercolor{titlelike}{fg=title}
\setbeamercolor{subtitle}{fg=subtitle}
\setbeamercolor{institute}{fg=gray}
\setbeamercolor{normal text}{fg=foreground,bg=background}
\setbeamercolor{item}{fg=foreground} % color of bullets
\setbeamercolor{subitem}{fg=gray}
\setbeamercolor{itemize/enumerate subbody}{fg=gray}
\setbeamertemplate{itemize subitem}{{\textendash}}
\setbeamerfont{itemize/enumerate subbody}{size=\footnotesize}
\setbeamerfont{itemize/enumerate subitem}{size=\footnotesize}
% page number
\setbeamertemplate{footline}{%
\raisebox{5pt}{\makebox[\paperwidth]{\hfill\makebox[20pt]{\color{gray}
\scriptsize\insertframenumber}}}\hspace*{5pt}}
% add a bit of space at the top of the notes page
\addtobeamertemplate{note page}{\setlength{\parskip}{12pt}}
% a few macros
\newcommand{\bi}{\begin{itemize}}
\newcommand{\ei}{\end{itemize}}
\newcommand{\ig}{\includegraphics}
\newcommand{\subt}[1]{{\footnotesize \color{subtitle} {#1}}}
% title info
\title{AI-Enhanced High-Accuracy Robotics for Industrial Applications}
\subtitle{}
\author{\href{https://abanbytes.eu}{David Madl}}
%\institute{\href{https://www.biostat.wisc.edu}{Biostatistics \& Medical Informatics} \\[2pt] \href{http://www.wisc.edu}{University of Wisconsin{\textendash}Madison}}
\date{%\href{http://kbroman.org}{\tt \scriptsize kbroman.org}
%\\[-4pt]
\href{https://github.com/kbroman}{\tt \scriptsize github.com/cidermole}
}
\begin{document}
% title slide
{
\setbeamertemplate{footline}{} % no page number here
\frame{
\titlepage
\note{
} } }
\begin{frame}{Me - personal interests}
\vspace{24pt}
\bi
%\item{\emojifont🏐 Volleyball}
%\item{\emojifont🧗 Bouldering}
%\item{\emojifont💃 Tango Argentino}
%\item{\emojifont♘ Chess}
%\item{\emojifont🌎 South America}
\item{\inlineemoji{Images/volley.png} Volleyball}
\item{\inlineemoji{Images/boulder.png} Bouldering}
\item{\inlineemoji{Images/tango.png} Tango Argentino}
\item{\inlineemoji{Images/chess.png} Chess}
\item{\inlineemoji{Images/sa.png} South America}
\ei
\end{frame}
\end{document}