Skip to content

Commit

Permalink
fonts
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Jun 17, 2021
1 parent 43a7aab commit 233222f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions paper/mappings.tex
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@ \subsection{Exception Handling}

It may be translated to \eo{}:

\begin{twocols}
\begin{ffcode}
try
[]
Expand All @@ -207,6 +208,7 @@ \subsection{Exception Handling}
stdout > @
"This happens anyway"
\end{ffcode}
\end{twocols}

Now, throwing an exception is returning an object that can't be
dataized and handling the exception is checking for whether the
Expand Down
4 changes: 3 additions & 1 deletion paper/semantics.tex
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ \subsection{Object Graph}
which is also represented by the expression in the Eq.~\ref{eq:book}.
The Fig.~\ref{fig:book2} represents it as a graph.

\begin{figure}
\begin{figure}[t!]
\begin{ingraph}
\node[object] (v0) {$\Phi$};
\node[object] (v2) [below right=0.5cm and 1.8cm of v0] {$v_2$};
Expand Down Expand Up @@ -190,6 +190,7 @@ \subsection{GMI}
The object graph at the Fig.~\ref{fig:book2} may be generated with the
following ordered sequence of GMIs:

\begin{twocols}
\begin{ffcode}
ADD(|$\Phi$|)
ADD(|$v_1$|);
Expand All @@ -205,6 +206,7 @@ \subsection{GMI}
ADD(|$d_4$|);
BIND(|$v_4$|, |$d_4$|, |$\delta$|);
\end{ffcode}
\end{twocols}

\subsection{Transformation Rules}

Expand Down
2 changes: 1 addition & 1 deletion paper/syntax.tex
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
\newcommand\sntx[1]{{\bfseries\sffamily #1}}
\newcommand\sntx[1]{{\sffamily #1}}

The Fig.~\ref{fig:bnf} demonstrates the entire syntax of \eo{} language in BNF.
Similar to Python~\citep{lutz2013learning}, indentation in \eo{} is part of the syntax:
Expand Down

0 comments on commit 233222f

Please sign in to comment.