External Markup Source Showcase

5. Bodyless TeX statement🔗

Some imports start from TeX rather than Markdown. This node has no native Verso body and no Markdown witness, but it still gets a TeX badge, source provenance, and a Lean declaration preview.

Definition5.1
Original source
Source provenance preview
Preview
Original source
  • Documentimported-paper
    imported-paper p. 14
    • page 14; text source/imported-paper.tex:88-96; pdf source/pages/page-14.pdf; image source/pages/images/page-14.png
uses 0used by 0markupTeXL∃∀N

Rendered from external TeX source (statement): source/imported-paper.tex:88:0-96:0; no native Verso body is available.

\begin{definition}\label{def:imported-multiplication}
The imported TeX source defines the multiplication operation used by the later
results in this section.
\end{definition}
Lean code for Definition5.11 definition
  • defdefined in Init/Prelude.lean
    complete
    def Nat.mul : Nat  Nat  Nat
    def Nat.mul : Nat  Nat  Nat
    Multiplication of natural numbers, usually accessed via the `*` operator.
    
    This function is overridden in both the kernel and the compiler to efficiently evaluate using the
    arbitrary-precision arithmetic library. The definition provided here is the logical model.