Add talk made on 2023-01-18 #482

Merged
lx merged 9 commits from talk-tocatta-2023-01-18 into main 2023-01-20 11:40:09 +00:00
10 changed files with 20 additions and 0 deletions
Showing only changes of commit 3250be7c48 - Show all commits

1
doc/talks/.envrc Normal file
View File

@ -0,0 +1 @@
use_nix

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -266,6 +266,13 @@
\end{frame}
\begin{frame}
\frametitle{Garage's architecture}
\begin{center}
\includegraphics[width=.35\linewidth]{assets/garage.drawio.pdf}
\end{center}
\end{frame}
\begin{frame}
\frametitle{Two big problems}
\begin{enumerate}

12
doc/talks/shell.nix Normal file
View File

@ -0,0 +1,12 @@
{ pkgs ? import <nixpkgs> { } }:
let
latex = (pkgs.texlive.combine {
inherit (pkgs.texlive)
scheme-basic
beamer amsmath mathtools breqn
environ
multirow graphics import adjustbox tabu vwcol stmaryrd ulem ragged2e
dvisvgm dvipng wrapfig hyperref capt-of;
});
in pkgs.mkShell { nativeBuildInputs = [ pkgs.gnumake latex ]; }