Browse Source

UCWTex: SmallCaps

Jiří Kalvoda 2 months ago
parent
commit
8594335bca
  1. 5
      src/formatitko/tex_generator.py

5
src/formatitko/tex_generator.py

@ -381,3 +381,8 @@ class UCWTexGenerator(OutputGenerator):
def generate_Strikeout(self, e: Strikeout):
self.writeln("% FIXME: Strikeouts not implemented")
def generate_SmallCaps(self, e: Strikeout):
self.write(r"{\csc{}")
self.generate(e.content)
self.write(r"}")

Loading…
Cancel
Save