-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.tex
92 lines (73 loc) · 2.26 KB
/
example.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
\documentclass{article}
\usepackage{amsfonts}
\usepackage{pl-syntax}
\title{Example Usage of \texttt{pl-syntax} Package}
\author{Andrew Hirsch \and Josh Acay}
\begin{document}
\maketitle
\section{The Simply Typed Lambda Calculus}
Read the comments in the \texttt{.tex} source for an explanation of how
the following is generated.
\begin{figure}[h]
\begin{syntax}
% Define a syntactic category with no right-hand side.
\abstractCategory[Variables]{x, y, z}
% Define a syntactic category from a set.
\categoryFromSet[Naturals]{n}{\mathbb{N}}
% Start a category definition. Optional input is the category
% description, the other declares the meta variable(s) you will
% use to refer to this category.
\category[Expressions]{e}
% Each alternative is introduced on its own line.
\alternative{x}
\alternative{n}
\alternative{\lambda x . e}
\alternative{e_1 e_2}
\category[Values]{v}
\alternative{\lambda x . e}
% You can add vertical spacing between categories to visually group them.
\separate
% You can pass the amount of space explicitly if you want to manually control it:
% \separate[5ex]
\category[Types]{\tau}
\alternative{\mathbf{Nat}}
% You can place alternatives on a new line.
\\
\alternative{\tau_1 \rightarrow \tau_2}
\category[Contexts]{\Gamma}
\alternative{x_1 : \tau_1, \ldots, x_n : \tau_n}
% You can use words to describe more complicated properties of
% definitions if you don't want to use BNF.
\note{no repeats}
\note{unordered}
% Alternative layout if you want more space.
\category[Expressions]{e}
\groupleft{
\alternative{x}
\alternative{n}
}
\groupleft{
\alternative{\lambda x . e}
\alternative{e_1 e_2}
}
\end{syntax}
\caption{Terms and Types of the Simply Typed Lambda Calculus}
\label{fig:abstract-syntax}
\end{figure}
It is possible to group multiple definition on one line:
\begin{syntax}
\groupleft{
\abstractCategory[Variables]{x, y, z}
\hfill
\quad
\categoryFromSet[Naturals]{n}{\mathbb{N}}
\quad
\hfill
\category[Expressions]{e}
\alternative{x}
\alternative{n}
\alternative{\lambda x . e}
\alternative{e_1 e_2}
}
\end{syntax}
\end{document}