Superscripts in HTML and LaTeX

svn: r1503
This commit is contained in:
Alex Roitman
2003-05-08 00:42:10 +00:00
parent 1e9202ac0d
commit f2e22535cc
2 changed files with 4 additions and 0 deletions

View File

@@ -381,6 +381,8 @@ class LaTeXDoc(TextDoc.TextDoc):
if text == '\n':
text = '\\newline\n'
text = string.replace(text,'#','\#')
text = text.replace('<super>','\\textsuperscript{')
text = text.replace('</super>','}')
self.f.write(text)