~alexreg/mathtexdotnet/0.1

« back to all changes in this revision

Viewing changes to TeX-Grammar.txt

  • Committer: Alex Regueiro
  • Date: 2009-08-07 23:14:32 UTC
  • Revision ID: alexreg@gmail.com-20090807231432-b4enxrxowf8ertnj
Initial commit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
expr = term , [ inline op prec 1 , epxr ] ;
 
2
term = value [ "^" expr ] [ "_" expr ] , [ inline op prec 2 , term ] ;
 
3
value = number | symbol | bracket expr ;
 
4
bracket expr = "{" , expr , "}" | "(" , expr , ")" | "[" , expr , "]" | "\{" , expr , "\}" ;