-
-
Notifications
You must be signed in to change notification settings - Fork 18.8k
EHN: df.to_latex(escape=True)
also escape index names
#61307
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
mroeschke
merged 7 commits into
pandas-dev:main
from
quangngd:feat/df_to_latex_escapse_idx_names
Apr 28, 2025
Merged
Changes from 2 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
6a79ec3
use same format_index option to format_index_names
quangngd a1c6275
test
quangngd adba9ca
fix test
quangngd 292b865
add ref to issues
quangngd 0a39cf9
rm blank line
quangngd e14fd1f
Remove overwrite format_index_names when header defined
quangngd e7dac1f
add test for columns.name
quangngd File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -824,6 +824,33 @@ def test_to_latex_escape_special_chars(self): | |
) | ||
assert result == expected | ||
|
||
def test_to_latex_escape_special_chars_in_index_names(self): | ||
rhshadrach marked this conversation as resolved.
Show resolved
Hide resolved
|
||
special_characters = ["&", "%", "$", "#", "_", "{", "}", "~", "^", "\\"] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you start the first line of the test with a reference to the issue:
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. added |
||
df = DataFrame([special_characters, special_characters]).T.set_index(0) | ||
result = df.to_latex(escape=True) | ||
expected = _dedent( | ||
r""" | ||
\begin{tabular}{ll} | ||
\toprule | ||
& 1 \\ | ||
0 & \\ | ||
\midrule | ||
\& & \& \\ | ||
\% & \% \\ | ||
\$ & \$ \\ | ||
\# & \# \\ | ||
\_ & \_ \\ | ||
\{ & \{ \\ | ||
\} & \} \\ | ||
\textasciitilde & \textasciitilde \\ | ||
\textasciicircum & \textasciicircum \\ | ||
\textbackslash & \textbackslash \\ | ||
\bottomrule | ||
\end{tabular} | ||
""" | ||
) | ||
assert result == expected | ||
|
||
def test_to_latex_specified_header_special_chars_without_escape(self): | ||
# GH 7124 | ||
df = DataFrame({"a": [1, 2], "b": ["b1", "b2"]}) | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think we want to do this here. Currently:
whereas I think one would expect
\_C
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Make sense. I updated the code
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And also "_B", since it wont render in latex otherwise?
On second thought maybe this is ambiguous, and the code written already handles the alternative and expects a user to input their header override directly.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agreed, if we were to pursue a change here, it should be a separate issue.
Can you add a test for
columns.name
as well.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Test added