UCWTeX: Alternativní figures
This commit is contained in:
parent
73af3473c7
commit
5a61ea5fac
1 changed files with 9 additions and 6 deletions
|
@ -170,14 +170,17 @@ class UCWTexGenerator(OutputGenerator):
|
|||
self.writeln(r"}{")
|
||||
self.indent_more()
|
||||
if 'number' in e.attributes:
|
||||
self.writeln(f"Obrázek {e.attributes['number']}:")
|
||||
type_text = e.attributes.get("type_text", "Obrázek")
|
||||
self.writeln(f"{type_text} {e.attributes['number']}:")
|
||||
self.generate(e.caption)
|
||||
if 'number' in e.attributes:
|
||||
self.writeln(r"\addtoc\tocpicture{"+str(e.attributes['number'])+"}{}{")
|
||||
self.indent_more()
|
||||
self.generate(e.caption.content)
|
||||
self.indent_less()
|
||||
self.writeln("}")
|
||||
tocmac = e.attributes.get("tocmac", "tocpicture")
|
||||
if tocmac:
|
||||
self.writeln("\\addtoc\\"+tocmac+r"{"+str(e.attributes['number'])+"}{}{")
|
||||
self.indent_more()
|
||||
self.generate(e.caption.content)
|
||||
self.indent_less()
|
||||
self.writeln("}")
|
||||
self.indent_less()
|
||||
self.writeln(r"}{}{}")
|
||||
|
||||
|
|
Loading…
Reference in a new issue