JelteF / PyLaTeX

A Python library for creating LaTeX files

Home Page:https://jeltef.github.io/PyLaTeX/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

add_row() should be add_column()

petaflot opened this issue · comments

look at the "Complex report" example:

line 63 says

footer_table.add_row([branch_address, branch_address,

when it should be

footer_table.add_column([branch_address, branch_address,

This is confusing.

No, it's not. The same address is 3 times in the same row. You can see this in the outputted picture of the document.

my bad here :-/