/itexToMML

To download this project, use:
bzr branch http://golem.ph.utexas.edu/~distler/code/itexToMML/

« back to all changes in this revision

Viewing changes to itex-src/itex2MML.l

  • Committer: Jacques Distler
  • Date: 2010-06-09 18:23:36 UTC
  • Revision ID: distler@golem.ph.utexas.edu-20100609182336-m2ktpb1da815ubg7
Tags: 1.3.25
itex2MML 1.3.25

Support \boxed{}.
Rationalize support for \slashed{}
In Rubygem, add itex_stringsupport.rb.

Show diffs side-by-side

added added

removed removed

1
 
/*             itex2MML 1.3.23
2
 
 *   itex2MML.l last modified 4/28/2010
 
1
/*             itex2MML 1.3.25
 
2
 *   itex2MML.l last modified 6/9/2010
3
3
 */
4
4
 
5
5
%{
829
829
 
830
830
"\\slash"       {return SLASHED;}
831
831
 
 
832
"\\boxed"       {return BOXED;}
 
833
 
832
834
"\\mathcal"       {BEGIN(CALLIGRAPHIC); return CAL;}
833
835
 
834
836
"\\begin"        {BEGIN(MATHENV); return BEGINENV;}