UCWTeX: Obrázky vždyu zarovnáváme na střed, popisky nejsou slanted
This commit is contained in:
parent
57e69cbee4
commit
08df4dbd78
1 changed files with 2 additions and 5 deletions
|
@ -151,10 +151,7 @@ class UCWTexGenerator(OutputGenerator):
|
|||
width = str(int(e.attributes["width"][:-1])/100) + "\\hsize"
|
||||
width = "width " + width
|
||||
|
||||
if isinstance(e.parent.parent, Figure):
|
||||
self.writeln(f'\\putimage{{{width}}}{{{url}}}')
|
||||
else:
|
||||
self.writepar(f'\\putimage{{{width}}}{{{url}}}')
|
||||
self.writeln(f'\\centerline{{\\putimage{{{width}}}{{{url}}}}}')
|
||||
|
||||
def generate_Code(self, e: Code):
|
||||
self.write(r"\verb`")
|
||||
|
@ -230,7 +227,7 @@ class UCWTexGenerator(OutputGenerator):
|
|||
self.write(r"}")
|
||||
|
||||
def generate_Caption(self, e: Caption):
|
||||
self.generate_Slanted(e)
|
||||
self.generate(e.content)
|
||||
|
||||
def generate_Math(self, e: Math):
|
||||
if e.format == "DisplayMath":
|
||||
|
|
Loading…
Reference in a new issue