diff options
author | chris.sutcliffe <ctd.sutcliffe@gmail.com> | 2021-11-08 13:05:33 +0000 |
---|---|---|
committer | chris.sutcliffe <ctd.sutcliffe@gmail.com> | 2021-11-08 13:05:33 +0000 |
commit | ba4f071b308604db0bce9c095b38f5629ec0cf77 (patch) | |
tree | 2ecb74907deb2274f2b85752bcd435e08d2f6c3e | |
parent | 975fb6f000918085d1f5ba4ac6eb95c60411dae9 (diff) | |
download | esotericFORTRAN-ba4f071b308604db0bce9c095b38f5629ec0cf77.tar.gz esotericFORTRAN-ba4f071b308604db0bce9c095b38f5629ec0cf77.zip |
add reference to bib for bnf form, add to table
-rw-r--r-- | report/References.bib | 9 | ||||
-rw-r--r-- | report/esoteric_project_report.tex | 9 |
2 files changed, 17 insertions, 1 deletions
diff --git a/report/References.bib b/report/References.bib index 9b6ea82..a6c8964 100644 --- a/report/References.bib +++ b/report/References.bib @@ -126,5 +126,14 @@ keywords = {Fetal head molding, Delivery, Photographic method}, year = {1983} } + +@book{davie1982recursive, + title={Recursive descent compiling}, + author={Davie, JT and Morrison, Ronald}, + year={1982}, + publisher={John Wiley \& Sons, Inc.} +} + +
\ No newline at end of file diff --git a/report/esoteric_project_report.tex b/report/esoteric_project_report.tex index a6f0079..e4b208d 100644 --- a/report/esoteric_project_report.tex +++ b/report/esoteric_project_report.tex @@ -10,6 +10,8 @@ \newcommand{\la}{\leftarrow} \usepackage{algorithm} \usepackage{algorithmic} +\usepackage{amsmath} +\usepackage{mathtools} \topmargin = 0pt \voffset = -80pt \oddsidemargin = 15pt @@ -211,6 +213,8 @@ asdf \clearpage \chapter{BNF form} +\cite{davie1982recursive} talk about bnf form here + \begin{table}[h!] \begin{center} @@ -230,8 +234,11 @@ asdf & DO $<$expression$>$ $<$expression$>$ = $<$expression$>$, \\ & $<$expression$>$, $<$expression$>$ $<$statement$>$ continue \\ \hline - + CHARACTER ::= & any character in ascii table\\ + \hline + INTEGER ::= & 0\textbar1\textbar2\textbar3\textbar4\textbar5\textbar6\textbar7\textbar8\textbar9 \\ + \hline \end{tabular} \label{tab:table1} \caption{Grammar table for Fortran} |