Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

This page tracks corrections made in this MyST edition relative to the LibreTexts source that was crawled and converted to Markdown (see scripts/html_to_myst.py and scripts/build_book.py). Two kinds of defects are recorded separately below: issues introduced purely by the HTML → Markdown conversion, and issues that were already present in the underlying LibreTexts/PDF text and have been corrected here for readability and correctness.

Conversion defects (fixed)

These were artifacts of the automated HTML → MyST conversion, not the underlying textbook content. The _table() method in scripts/html_to_myst.py originally built table cells with self._inline(td), which converts <br> to a literal newline, and the page-level normalize_inline_math() pass converted any \[...\] display math to a multi-line $$ block wherever it occurred — including inside table cells. Markdown pipe tables require one physical line per row, so any cell containing a <br> or block math broke the table into malformed extra rows. _table() has since been rewritten to force inline math and collapse multi-line cell content onto one physical line, rendering as a pipe table when every cell fits on one line and as a list-table directive (which tolerates richer cell content) otherwise, so this does not recur on the next npm run convert.

Broken cross-references

An audit of the original equation cross-reference macros found five citations that did not resolve to a defined target, from LibreTexts end-of-chapter “review” sections that restate results using the original PDF’s equation numbering without re-attaching a label to the restated equations. One was fixed here directly: the citation to equation 7.37 (used in chapters/ch-09-hamiltons-action-principle.md for “Jacobi’s Generalized Energy ... was defined in Equation 7.37”) pointed at an equation in chapters/ch-07-symmetries-invariance-and-the-hamiltonian.md that had lost its label; the definition of h(q,q˙,t)h(\mathbf{q},\dot{\mathbf{q}},t) in §7.7 is the only equation in the book matching that description, so the label was restored there.

The book’s subsequent full renumbering pass (which replaced the old cross-reference macros throughout with resolved MyST links) independently reconstructed the three other citations this pass had left unresolved — equation 13.103 (chapters/ch-13-rigid-body-rotation.md), equation 7.38 (chapters/ch-07-symmetries-invariance-and-the-hamiltonian.md), and equation 9.2 (chapters/ch-09-hamiltons-action-principle.md) all now link correctly.

One case remains unresolved:

Original-text corrections (fixed, tracked here)

These appear to be errors in the underlying textbook content itself (not introduced by the Markdown conversion), corrected in this edition:

Notes / not changed