/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-02-17 05:41:24 UTC
  • Revision ID: distler@golem.ph.utexas.edu-20070217054124-i80nyydoqpn08bah
Add \boldsymbol, for Tony Pantev.

Show diffs side-by-side

added added

removed removed

1
 
/*             itex2MML 1.1.9
2
 
 *   itex2MML.l last modified 1/28/2007
 
1
/*             itex2MML 1.1.10
 
2
 *   itex2MML.l last modified 2/15/2007
3
3
 */
4
4
 
5
5
%{
702
702
 
703
703
"\\mathit"       {return ITALICS;}
704
704
 
 
705
"\\boldsymbol" |
705
706
"\\mathbf"       {return BOLD;}
706
707
 
707
708
"\\mathrm"       {BEGIN(ROMAN); return RM;}