diff options
author | Fred Drake <fdrake@acm.org> | 2002-03-05 04:04:06 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2002-03-05 04:04:06 (GMT) |
commit | 58fb23794876c6b58fc3dc75e2a2b420b458d575 (patch) | |
tree | c732ce719b8a58a1ea01a06e50225ccf7945055c /Doc | |
parent | 9479c958c517a719f98b23f435604d0fc2f83fe2 (diff) | |
download | cpython-58fb23794876c6b58fc3dc75e2a2b420b458d575.zip cpython-58fb23794876c6b58fc3dc75e2a2b420b458d575.tar.gz cpython-58fb23794876c6b58fc3dc75e2a2b420b458d575.tar.bz2 |
Add implementations for \textgreater and \textless, defined in (relatively)
recent versions of LaTeX2e but not support in LaTeX2HTML.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/perl/python.perl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl index 3b55139..8968df3 100644 --- a/Doc/perl/python.perl +++ b/Doc/perl/python.perl @@ -88,6 +88,8 @@ sub do_cmd_let{ sub do_cmd_textasciitilde{ '~' . @_[0]; } sub do_cmd_textasciicircum{ '^' . @_[0]; } sub do_cmd_textbar{ '|' . @_[0]; } +sub do_cmd_textgreater{ '>' . @_[0]; } +sub do_cmd_textless{ '<' . @_[0]; } sub do_cmd_infinity{ '∞' . @_[0]; } sub do_cmd_plusminus{ '±' . @_[0]; } sub do_cmd_menuselection{ @_[0]; } |