Start new project

This commit is contained in:
Michael Zhang 2021-12-07 12:32:30 -06:00
commit 1ff3f37eb8
Signed by: michael
GPG key ID: BDA47A31A3C8EE6B
3 changed files with 45 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
*.pdf

2
Justfile Normal file
View file

@ -0,0 +1,2 @@
watch:
watchexec -e tex -- tectonic main.tex

42
main.tex Normal file
View file

@ -0,0 +1,42 @@
\documentclass{beamer}
\usepackage[utf8]{inputenc}
\usepackage{tikz}
\usetikzlibrary{positioning}
%Information to be included in the title page:
\title{Sample title}
\author{Anonymous}
\institute{Overleaf}
\date{2021}
\begin{document}
\frame{\titlepage}
\begin{frame}
\frametitle{Sample frame title}
This is some text in the first frame. This is some text in the first frame. This is some text in the first frame.
\end{frame}
\begin{frame}
\begin{tikzpicture}[
roundnode/.style={circle, draw=green!60, fill=green!5, very thick, minimum size=7mm},
squarednode/.style={rectangle, draw=red!60, fill=red!5, very thick, minimum size=5mm},
]
\node[draw, align=left, squarednode](ceskState){
C = $\lambda x . (\lambda y . x + y)$ \\
$E$ = [] \\
$S$ = [] \\
$\kappa$ = halt
};
\node[squarednode](ceskState2)[right=of ceskState]{CESK};
%lines
\draw[->] (ceskState.east) -- (ceskState2.west);
\end{tikzpicture}
\end{frame}
\end{document}
% vim: set sw=2 :