User Tools

Site Tools


tla:latex

This is an old revision of the document!


Latex Command Line Options

In order to incorporate TLA+ in LaTex sources it is best to download the JAR file for Standalone Tools.

I have done the following

alias tla2tex="java -cp /usr/local/tla-tools/tla2tools.jar tla2tex.TLA" 
alias tlaintex="java -cp /usr/local/tla-tools/tla2tools.jar tla2tex.TeX"

Convert a TLA file to TeX file

tla2tex model.tla 

This will produce tla.tex.

Convert snippets of ASCII/TLA in a TeX file to mathematical mode

tlaintex model.tex 

where

% model.tex
\documentclass[12pt]{article}
\usepackage{tlatex}
\usepackage{color}
\definecolor{boxshade}{gray}{.9}\setboolean{shading}{true}
 
\begin{document}
\begin{tla}
  Action == /\ x'   = x - y
            /\ yy'  = 123
            /\ zzz' = zzz
\end{tla}
\end{document}

Style file

The style file tlatex.sty is available here.

tla/latex.1567443106.txt.gz · Last modified: 2019/09/02 16:51 by jonathan