8000 To latex position by SylvainLan · Pull Request #35284 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

To latex position #35284

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
Aug 7, 2020
Prev Previous commit
Next Next commit
reformat or statement
  • Loading branch information
Sylvain Lannuzel committed Jul 15, 2020
commit 940213ce8c174aa080115c42f0cef4592b4717ef
6 changes: 3 additions & 3 deletions pandas/io/formats/latex.py
Original file line number Diff line number Diff line change
Expand Up @@ -330,9 +330,9 @@ def _write_tabular_end(self, buf):
buf.write("\\bottomrule\n")
buf.write("\\end{tabular}\n")
if (
self.caption is not None
or self.label is not None
or self.position is not None
self.caption is not None
or self.label is not None
or self.position is not None
):
buf.write("\\end{table}\n")
else:
Expand Down
0