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
Take a typical 'book.cls' document structure, as the following MWE.tex:
MWE.tex
\documentclass{book} \usepackage[english]{babel} \begin{document} \frontmatter \chapter{Preface} \mainmatter \chapter{First Chapter} \appendix \chapter{First Appendix} \backmatter % References \end{document}
The result is that the chapters in the the frontmatter are not numbered, while the actual numbering starts in the mainmatter:
frontmatter
mainmatter
Preface Chapter 1 - First Chapter Appendix A - First Appendix
It seems that LaTeXML does not get it right. A simple conversion
latexmlc MWE.tex --verbose --format=html5 --destination=MWE.html
gives the following document structure:
Chapter 1 - Preface Chapter 2 - First Chapter Appendix A - First Appendix
The text was updated successfully, but these errors were encountered:
Indeed; fixed now; thanks for the report!
Sorry, something went wrong.
No branches or pull requests
Take a typical 'book.cls' document structure, as the following
MWE.tex
:The result is that the chapters in the the
frontmatter
are not numbered, while the actual numbering starts in themainmatter
:It seems that LaTeXML does not get it right. A simple conversion
gives the following document structure:
The text was updated successfully, but these errors were encountered: