123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- % vim: set foldmethod=marker foldmarker=<<<,>>>:
- \input{ccmbeamer}
- %<<< title, author, institute
- \title
- [Convergent Slender Body Theory]
- {Convergent Slender Body Theory}
- %\author[Dhairya Malhotra]{ \underline{Dhairya~Malhotra}, ~{Alex Barnett}}
- \author[Dhairya Malhotra]{Code: ~{\color{blue} \url{https://github.com/dmalhotra/CSBQ}} \\
- \phantom{.}\\
- \underline{Dhairya~Malhotra}, ~{Alex Barnett}}
- %\institute{Flatiron Institute\\ \mbox{} \\ \pgfuseimage{FIbig} }
- %\institute{\pgfuseimage{FIbig} }
- %\date[]{Code: ~{\color{blue} \url{https://github.com/dmalhotra/CSBQ}} \\ June 13, 2024}
- \date[]{June 13, 2024}
- %>>>
- %<<< packages
- \usepackage{tikz}
- \usetikzlibrary{fit,shapes.geometric,arrows, positioning,calc,shapes,decorations.pathreplacing,patterns}
- \usetikzlibrary{shadows.blur}
- \usetikzlibrary{shapes.symbols}
- \usepackage{pgfplots,pgfplotstable}
- \pgfplotsset{compat=1.17}
- \usepackage{graphbox}
- \usepackage{mathtools}
- \usepackage{multirow}
- \usepackage{multimedia}
- \usepackage{media9}
- %\usepackage{movie15} %(obsolete)
- \usepackage{animate}
- \usepackage{fp}
- %\usepackage{enumitem}
- \usepackage{bm}
- \beamertemplateballitem % Numbered bullets
- \usepackage{xstring}
- \usepackage{mathtools}% Loads amsmath
- \usepackage{stmaryrd}
- \usepackage{amsfonts} %% <- also included by amssymb
- \DeclareMathSymbol{\shortminus}{\mathbin}{AMSa}{"39}
- \newcommand{\vcenteredinclude}[1]{\begingroup\setbox0=\hbox{{#1}}\parbox{\wd0}{\box0}\endgroup}
- %%------------------------------------------------------------------------------
- %%- Latin-abbreviations
- %%------------------------------------------------------------------------------
- \usepackage{expl3}
- \ExplSyntaxOn
- \newcommand\latinabbrev[1]{
- \peek_meaning:NTF . {% Same as \@ifnextchar
- #1\@}%
- { \peek_catcode:NTF a {% Check whether next char has same catcode as \'a, i.e., is a letter
- #1.\@ }%
- {#1.\@}}}
- \ExplSyntaxOff
- %Omit final dot from each def.
- \def\eg{\latinabbrev{e.g}}
- \def\etal{\latinabbrev{et al}}
- \def\etc{\latinabbrev{etc}}
- \def\ie{\latinabbrev{i.e}}
- \definecolor{DarkGreen}{RGB}{0,130,0}
- \usepackage{minted}
- \usemintedstyle{vs}
- %\usemintedstyle{borland}
- %\usemintedstyle{emacs}
- %\usemintedstyle{perldoc}
- %\usemintedstyle{friendly}
- %%\usemintedstyle{pastie}
- %%\usemintedstyle{vim}
- %>>>
- \newcommand\vct[1]{{\ensuremath{\bm{#1}}}}
- \newcommand\convop[1]{{\ensuremath{\mathcal{#1}}}}
- \newcommand\Real{{\ensuremath{\mathbb{R}}}}
- \newcommand\StokesSL{{\ensuremath{\convop{S}}}}
- \newcommand\StokesDL{{\ensuremath{\convop{D}}}}
- \newcommand\StokesCF{{\ensuremath{\convop{K}}}}
- \begin{document}
- \setbeamercovered{transparent}% Dim out "inactive" elements
- \begin{frame}%<<< Title
- \vspace{4em}
- \titlepage
- \vspace{0.5em}
- \begin{columns}
- \column{0.8\textwidth}
- \column{0.2\textwidth}
- \pgfuseimage{FIbig}
- \end{columns}
- \end{frame}%>>>
- \input{intro} % 3
- \input{algo} % 7
- \input{mobility} % 6
- \input{software} % 8
- \input{conclusions} % 1
- \end{document}
|