We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The following renders wrong in LaTeX:
1. First item 5. Fifth subitem 6. Sixth subitem 2. Second item
Expected / HTML rendering: visually similar to source code
Wrong / current LaTeX PDF rendering:
1. First item (a) Fifth subitem (b) Sixth subitem 5. Second item
The problem is that "Second item" was never labelled "5" in the RST source.
The generated LaTeX source for this is as follows:
\begin{enumerate} \item {} First item \begin{enumerate} \setcounter{enumi}{4} \item {} Fifth subitem \item {} Sixth subitem \end{enumerate} \item {} Second item \end{enumerate}
Expected LaTeX output: ... \setcounter{enumii}{4} (rather than enumi).
\setcounter{enumii}{4}
enumi
The text was updated successfully, but these errors were encountered:
Mildly related: #1431
Sorry, something went wrong.
Fix sphinx-doc#4577: Enumerated sublists with explicit start with wro…
61686f4
…ng number
6beab9c
Merge pull request #4639 from tk0miya/4577_nested_enumlist
f318cbe
Fix #4577: Enumerated sublists with explicit start with wrong number
Fixed by #4639. Thank you for reporting!
Thanks for fixing!
No branches or pull requests
Problem
The following renders wrong in LaTeX:
Expected / HTML rendering: visually similar to source code
Wrong / current LaTeX PDF rendering:
The problem is that "Second item" was never labelled "5" in the RST source.
The generated LaTeX source for this is as follows:
Expected LaTeX output: ...
\setcounter{enumii}{4}
(rather thanenumi
).Environment info
The text was updated successfully, but these errors were encountered: