Start new project
This commit is contained in:
commit
1ff3f37eb8
3 changed files with 45 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
*.pdf
|
2
Justfile
Normal file
2
Justfile
Normal file
|
@ -0,0 +1,2 @@
|
|||
watch:
|
||||
watchexec -e tex -- tectonic main.tex
|
42
main.tex
Normal file
42
main.tex
Normal 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 :
|
Loading…
Reference in a new issue