-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtemplate.tex
More file actions
40 lines (33 loc) · 891 Bytes
/
Copy pathtemplate.tex
File metadata and controls
40 lines (33 loc) · 891 Bytes
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
\\documentclass{article}
\\usepackage{graphicx}
\\newcommand{\\true}{\\mathsf{true}}
\\newcommand{\\false}{\\mathsf{false}}
\\newcommand{\\ltlG}{\\mathsf{G}}
\\newcommand{\\ltlF}{\\mathsf{F}}
\\newcommand{\\ltlU}{\\mathsf{U}}
\\newcommand{\\ltlW}{\\mathsf{W}}
\\newcommand{\\ltlX}{\\mathsf{X}}
\\newcommand{\\ltlR}{\\mathsf{R}}
\\newcommand{\\cA}{\\mathcal{A}}
\\begin{document}
\\subsection*{Pre-constructed SAs}
${foreach sas sa}
\\begin{figure*}[H]
\\centering
\\includegraphics[width=0.2\\textwidth]{${sa.value.pdf}}
\\caption{$\\cA_{${sa.value.caption}}$}
\\end{figure*}
\\begin{table}[H]
\\caption{States of $\\cA_{${sa.value.caption}}$}
\\begin{center}
\\begin{tabular}{l|l}
State & Formulae \\\\
\\hline
${foreach sa.value.states state}
${state.key} & $${state.value}$ \\\\
${end}
\\end{tabular}
\\end{center}
\\end{table}
${end}
\\end{document}