/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: 2007-05-06 19:51:40 UTC
  • Revision ID: distler@golem.ph.utexas.edu-20070506195140-3y7cf35vg261391r
Slashed letters
New itex syntax: \slash{} produces slashed letters by overstriking.

Show diffs side-by-side

added added

removed removed

1
 
/*             itex2MML 1.2.1
2
 
 *   itex2MML.l last modified 4/30/2007
 
1
/*             itex2MML 1.2.2
 
2
 *   itex2MML.l last modified 5/6/2007
3
3
 */
4
4
 
5
5
%{
734
734
"\\mathfrak" |
735
735
"\\mathfr"       {BEGIN(FRAKTUR); return FRAK;}
736
736
 
 
737
"\\slash"       {return SLASHED;}
 
738
 
737
739
"\\mathcal"       {BEGIN(CALLIGRAPHIC); return CAL;}
738
740
 
739
741
"\\begin"        {BEGIN(MATHENV); return BEGINENV;}