Spaces:
Paused
Paused
File size: 30,919 Bytes
f66643d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 | from __future__ import annotations
import re
# ---------------------------------------------------------------------------
# Regex patterns
# ---------------------------------------------------------------------------
# Display math: <math display="block">X</math>
_MATH_DISPLAY = re.compile(
r'<math\s+display=["\']block["\'][^>]*>(.*?)</math>', re.DOTALL | re.IGNORECASE
)
# Inline math: <math>X</math> (no display attribute, or display="inline")
_MATH_INLINE = re.compile(
r'<math(?:\s+display=["\']inline["\'])?[^>]*>(.*?)</math>',
re.DOTALL | re.IGNORECASE,
)
_BOLD = re.compile(r"<(?:b|strong)>(.*?)</(?:b|strong)>", re.DOTALL | re.IGNORECASE)
_ITALIC = re.compile(r"<(?:i|em)>(.*?)</(?:i|em)>", re.DOTALL | re.IGNORECASE)
_SUP = re.compile(r"<sup>(.*?)</sup>", re.DOTALL | re.IGNORECASE)
_SUB = re.compile(r"<sub>(.*?)</sub>", re.DOTALL | re.IGNORECASE)
_ANY_TAG = re.compile(r"<[^>]+>")
# Bare LaTeX command sequences (outside $ markers): \cmd{...} or \cmd
_BARE_LATEX = re.compile(
r"(?<!\$)" # not already inside $
r"((?:\\[a-zA-Z]+(?:\{[^}]*\}|\[[^\]]*\])*\s*)+)" # one or more \cmd{...}
)
# Typst special chars in plain text (outside math)
_TYPST_ESCAPE = re.compile(r"([#@\\])")
# Literal < > after all tags stripped
_LT = re.compile(r"<(?![a-zA-Z/])")
_GT = re.compile(r'(?<![a-zA-Z0-9"])\s*>')
def escape_typst_string(text: str) -> str:
"""Escape for embedding inside a Typst double-quoted string literal."""
return text.replace("\\", "\\\\").replace('"', '\\"').replace("\n", "\\n")
def to_typst_markup(text: str, *, is_equation: bool = False) -> str:
"""Convert hybrid HTML/LaTeX text to cmarker-friendly markdown with mitex math.
Args:
text: The translated_text field value (may contain HTML tags and LaTeX).
is_equation: True for EQUATION category elements β bare LaTeX gets wrapped.
Returns:
String safe for cmarker.render(..., math: mitex) in Typst.
"""
if not text:
return ""
# If not in equation mode, escape literal dollar signs that are outside of <math> tags
if not is_equation:
_MATH_TAG = re.compile(r"<math\b[^>]*>.*?</math>", re.DOTALL | re.IGNORECASE)
math_blocks = []
def _stash_math(m: re.Match) -> str:
math_blocks.append(m.group(0))
return f"\x02MATH{len(math_blocks) - 1}\x03"
result = _MATH_TAG.sub(_stash_math, text)
result = result.replace("$", "\\$")
result = re.sub(
r"\x02MATH(\d+)\x03",
lambda m: math_blocks[int(m.group(1))],
result,
)
else:
result = text
# 1. Display math β $$ ... $$ (double-dollar block math for mitex)
result = _MATH_DISPLAY.sub(lambda m: f"$${m.group(1).strip()}$$", result)
# 2. Inline math β $ ... $
result = _MATH_INLINE.sub(lambda m: f"${m.group(1).strip()}$", result)
# 3. Bold / italic
result = _BOLD.sub(lambda m: f"**{m.group(1)}**", result)
result = _ITALIC.sub(lambda m: f"_{m.group(1)}_", result)
# 4. Superscript / subscript
# Inside existing $...$ context: leave as LaTeX (^{X}, _{X} handled by mitex)
# Outside math: use markdown superscript ^X^ / subscript ~X~
result = _convert_sup_sub(result)
# 5. For EQUATION elements, wrap bare LaTeX command runs in $...$
if is_equation:
result = _wrap_bare_latex(result)
# 6. Strip any remaining unknown HTML tags (preserving < > inside $...$)
result = _strip_tags_outside_math(result)
# 7 & 8. Escape Typst-special chars and literal < > in plain text segments (outside $...$)
result = _escape_typst_outside_math(result, clean_math=False, escape_lt_gt=True)
# 9. Preserve explicit line breaks: a lone '\n' in translated_text is a
# deliberate break (address/signature blocks), but CommonMark renders a
# single newline as a space. Convert it to a hard break so cmarker keeps it.
result = _hardbreak_newlines(result)
return result
def _hardbreak_newlines(text: str) -> str:
"""Turn a lone ``\\n`` into a CommonMark hard line break (backslash + newline).
Paragraph breaks (``\\n\\n``) are left as-is; ``$...$`` math is never touched.
"""
parts = _split_math(text)
out = []
for kind, chunk in parts:
if kind == "math":
out.append(chunk)
else:
out.append(re.sub(r"(?<!\n)\n(?!\n)", lambda _m: "\\\n", chunk))
return "".join(out)
# ---------------------------------------------------------------------------
# Internal helpers
# ---------------------------------------------------------------------------
def _strip_tags_outside_math(text: str) -> str:
"""Strip HTML-like tags but preserve $...$ math regions.
Naive `_ANY_TAG.sub` would treat math relations like ``< b $ ... $ c >``
as an HTML tag and erase the whole span; splitting on math first keeps
the operators intact.
"""
parts = _split_math(text)
out = []
for kind, chunk in parts:
if kind == "math":
out.append(chunk)
else:
out.append(_ANY_TAG.sub("", chunk))
return "".join(out)
def _convert_sup_sub(text: str) -> str:
"""Replace <sup>X</sup> and <sub>X</sub> preserving $ contexts."""
parts = _split_math(text)
out = []
for kind, chunk in parts:
if kind == "math":
out.append(chunk)
else:
chunk = _SUP.sub(lambda m: f"^{m.group(1)}^", chunk)
chunk = _SUB.sub(lambda m: f"~{m.group(1)}~", chunk)
out.append(chunk)
return "".join(out)
def _wrap_bare_latex(text: str) -> str:
"""Wrap bare LaTeX command sequences in $...$ (for EQUATION elements)."""
parts = _split_math(text)
out = []
for kind, chunk in parts:
if kind == "math":
out.append(chunk)
else:
# Wrap runs of LaTeX commands that are not yet in math
out.append(_BARE_LATEX.sub(lambda m: f"${m.group(1).strip()}$", chunk))
return "".join(out)
def _escape_typst_outside_math(
text: str, *, clean_math: bool = False, escape_lt_gt: bool = False
) -> str:
"""Escape # and @ outside math delimiters; clean up LaTeX inside math if clean_math is True."""
parts = _split_math(text)
out = []
for kind, chunk in parts:
if kind == "math":
if clean_math:
out.append(_clean_math_chunk(chunk))
else:
out.append(chunk)
else:
chunk = chunk.replace("#", "\\#").replace("@", "\\@")
if escape_lt_gt:
chunk = chunk.replace("\\<", "\x00LT\x00").replace("\\>", "\x00GT\x00")
chunk = re.sub(r"<", r"\\<", chunk)
chunk = re.sub(r">", r"\\>", chunk)
chunk = chunk.replace("\x00LT\x00", "\\<").replace("\x00GT\x00", "\\>")
out.append(chunk)
return "".join(out)
def _clean_math_chunk(chunk: str) -> str:
"""Best-effort LaTeX β Typst conversion inside $...$ / $$...$$ regions.
Handles common cases that the math-fixer LLM may have missed:
\\frac{a}{b} β frac(a, b)
\\binom{a}{b} β binom(a, b)
\\cmd{x} β cmd(x)
\\cmd β cmd (bare backslash command)
Also runs identifier splitting (bh β b h).
"""
m = re.match(r"^(\$+)(.*?)(\$+)$", chunk, re.DOTALL)
if not m:
return chunk
open_d, content, close_d = m.group(1), m.group(2), m.group(3)
# \limits and \nolimits are handled by Typst natively on operators, but raw \limits breaks Typst syntax. Strip them.
content = re.sub(r"\\(?:no)?limits(?![a-zA-Z])", "", content)
# \sqrt[n]{x} -> root(n, x)
content = re.sub(
r"\\sqrt\s*\[([^\[\]]+)\]\s*\{([^{}]*)\}", r"root(\1, \2)", content
)
# Two-arg LaTeX commands (frac/binom variants) β convert before single-arg pass
content = re.sub(
r"\\(?:frac|dfrac|tfrac|cfrac)\s*\{([^{}]*)\}\s*\{([^{}]*)\}",
r"frac(\1, \2)",
content,
)
content = re.sub(
r"\\(?:binom|dbinom|tbinom)\s*\{([^{}]*)\}\s*\{([^{}]*)\}",
r"binom(\1, \2)",
content,
)
# Single-arg LaTeX command: \cmd{x} or \cmd*{x} β cmd(x)
content = re.sub(r"\\([a-zA-Z]+)\*?\s*\{([^{}]*)\}", r"\1(\2)", content)
# Bare backslash command: \cmd β cmd
content = re.sub(r"\\([a-zA-Z]+)", r"\1", content)
# Drop \left / \right artefacts (already stripped above as 'left'/'right')
content = re.sub(r"\b(left|right)\s*([({[\])])", r"\2", content)
content = _split_math_vars(content)
return f"{open_d}{content}{close_d}"
def _split_math(text: str) -> list[tuple[str, str]]:
"""Split text into alternating (kind, chunk) where kind is 'text' or 'math'.
Handles $...$ and $$...$$ delimiters.
"""
result: list[tuple[str, str]] = []
i = 0
n = len(text)
buf = []
while i < n:
if text[i] == "$":
# Flush text buffer
if buf:
result.append(("text", "".join(buf)))
buf = []
# Determine if $$ or $
if i + 1 < n and text[i + 1] == "$":
delim = "$$"
i += 2
else:
delim = "$"
i += 1
# Find closing delimiter
end = text.find(delim, i)
if end == -1:
# No closing delimiter β treat rest as text
result.append(("text", delim + text[i:]))
break
math_content = text[i:end]
result.append(("math", f"{delim}{math_content}{delim}"))
i = end + len(delim)
else:
buf.append(text[i])
i += 1
if buf:
result.append(("text", "".join(buf)))
return result
# ---------------------------------------------------------------------------
# Typst native markup converter (for text with <math>Typst syntax</math>)
# ---------------------------------------------------------------------------
_MATH_TYPST_DISPLAY = re.compile(
r'<math\s+display=["\']block["\'][^>]*>(.*?)</math>', re.DOTALL | re.IGNORECASE
)
_MATH_TYPST_INLINE = re.compile(
r'<math(?:\s+display=["\']inline["\'])?[^>]*>(.*?)</math>',
re.DOTALL | re.IGNORECASE,
)
# Raw Typst blocks emitted by the math-fix pass (e.g. #grid for layouts)
_TYPST_BLOCK = re.compile(r"<typst>(.*?)</typst>", re.DOTALL | re.IGNORECASE)
# Detect translatable prose: word run after stripping math/tags. Anything left
# means there's real text to render; otherwise the element is pure math and we
# should preserve the original PDF text layer.
_PROSE_LETTER_RUN = re.compile(
r"[A-Za-zΓ-ΙαΈ-α»Ώ" # Latin + Latin Extended Additional (Vietnamese)
r"Ν°-ΟΏΠ-ΣΏΨ-ΫΏΰ€-ΰ₯ΏΰΈ-ΰΉΏβΊ-ιΏΏ]{2,}"
)
_DOLLAR_BLOCK_RE = re.compile(r"\$\$.*?\$\$", re.DOTALL)
_DOLLAR_INLINE_RE = re.compile(r"\$[^$\n]*\$")
_LATEX_CMD_RE = re.compile(r"\\[a-zA-Z]+(?:\s*\{[^{}]*\})*")
_EQ_LABEL_RE = re.compile(r"\(\d+(?:\.\d+)*[a-z]?\)")
_HTML_ANY_RE = re.compile(r"<[^>]+>")
def has_unbalanced_math_tags(text: str) -> bool:
"""Detect malformed <math>/<typst> with unmatched open/close counts.
LLM outputs are sometimes truncated mid-stream; rendering such content as
Typst markup produces 'unclosed delimiter' errors. Flag and skip them.
"""
if not text:
return False
for tag in ("math", "typst"):
opens = len(re.findall(rf"<{tag}\b", text, re.IGNORECASE))
closes = len(re.findall(rf"</{tag}\b", text, re.IGNORECASE))
if opens != closes:
return True
return False
# frac() with empty second arg: frac(x, ) β Typst math crash
_EMPTY_FRAC_RE = re.compile(r"frac\([^)]*,\s*\)")
# Letter-digit-letter inside math regions β unknown variable in Typst (e.g. t2c).
# Signals garbled LLM output (e.g. \cdot2\cdot converted incorrectly).
_MATH_REGION = re.compile(
r"\$([^$]+)\$|<math\b[^>]*>(.*?)</math>", re.DOTALL | re.IGNORECASE
)
_ALPHA_DIGIT_ALPHA = re.compile(r"[a-zA-Z][0-9][a-zA-Z]")
# Bare letter(s)+digit(s) token inside math regions β e.g. "F1", "R2" (an F1-score
# or similar abbreviation dropped straight into $...$). mitex/Typst reads this as
# a single unknown identifier and errors out. Underscored forms (x_1) are safe β
# "_" is a word char, so it breaks the adjacency this pattern requires.
_BARE_ALNUM_TOKEN = re.compile(r"\b[a-zA-Z]+[0-9]+\b")
def has_malformed_typst_math(text: str) -> bool:
"""True if text contains Typst math constructs that will cause a compile error.
Detects:
- frac() with empty denominator: frac(x, )
- letter-digit-letter identifiers inside math regions: t2c (garbled LLM output)
- bare letter+digit tokens inside math regions: F1, R2 (unknown Typst variable)
"""
if _EMPTY_FRAC_RE.search(text):
return True
for m in _MATH_REGION.finditer(text):
content = m.group(1) or m.group(2) or ""
if _ALPHA_DIGIT_ALPHA.search(content) or _BARE_ALNUM_TOKEN.search(content):
return True
return False
def has_bare_latex(text: str) -> bool:
"""True if text contains LaTeX \\X commands OUTSIDE <math>/<typst>/$...$ regions.
Such commands can't be reliably converted at render time β preserve the
original PDF text layer instead of producing broken output.
"""
if not text:
return False
s = _MATH_TYPST_DISPLAY.sub("", text)
s = _MATH_TYPST_INLINE.sub("", s)
s = _TYPST_BLOCK.sub("", s)
s = _DOLLAR_BLOCK_RE.sub("", s)
s = _DOLLAR_INLINE_RE.sub("", s)
return bool(re.search(r"\\[a-zA-Z]+", s))
def is_pure_math_text(text: str) -> bool:
"""True if `text` has only math content (no translatable words).
Strips <math>, <typst>, $...$, LaTeX commands, eq labels, HTML tags,
then checks for any word-like letter run.
"""
if not text:
return False
s = _MATH_TYPST_DISPLAY.sub("", text)
s = _MATH_TYPST_INLINE.sub("", s)
# Do NOT strip <typst>...</typst> blocks β those are renderable layouts.
s = _DOLLAR_BLOCK_RE.sub("", s)
s = _DOLLAR_INLINE_RE.sub("", s)
s = _LATEX_CMD_RE.sub("", s)
s = _EQ_LABEL_RE.sub("", s)
s = _HTML_ANY_RE.sub("", s)
return not _PROSE_LETTER_RUN.search(s)
# Known Typst math identifiers that must NOT be split into separate letters.
_TYPST_MATH_IDENTIFIERS: set[str] = {
# Greek letters (lowercase + uppercase)
"alpha",
"beta",
"gamma",
"delta",
"epsilon",
"zeta",
"eta",
"theta",
"iota",
"kappa",
"lambda",
"mu",
"nu",
"xi",
"omicron",
"pi",
"rho",
"sigma",
"tau",
"upsilon",
"phi",
"chi",
"psi",
"omega",
"Alpha",
"Beta",
"Gamma",
"Delta",
"Epsilon",
"Zeta",
"Eta",
"Theta",
"Iota",
"Kappa",
"Lambda",
"Mu",
"Nu",
"Xi",
"Omicron",
"Pi",
"Rho",
"Sigma",
"Tau",
"Upsilon",
"Phi",
"Chi",
"Psi",
"Omega",
# Variant Greek
"varepsilon",
"varphi",
"vartheta",
"varrho",
"varsigma",
# Common math functions
"frac",
"sqrt",
"root",
"abs",
"norm",
"floor",
"ceil",
"round",
"sin",
"cos",
"tan",
"cot",
"sec",
"csc",
"arcsin",
"arccos",
"arctan",
"arccot",
"arcsec",
"arccsc",
"sinh",
"cosh",
"tanh",
"coth",
"sech",
"csch",
"log",
"ln",
"exp",
"det",
"dim",
"ker",
"gcd",
"lcm",
"max",
"min",
"sum",
"prod",
"lim",
"inf",
"sup",
"mod",
"deg",
"arg",
# Typst math layout/style
"vec",
"mat",
"cases",
"binom",
"display",
"inline",
"script",
"limits",
"scripts",
"attach",
"accent",
"overline",
"underline",
"overbrace",
"underbrace",
"cancel",
"upright",
"bold",
"italic",
"serif",
"sans",
"mono",
"bb",
"cal",
"frak",
# Operator words used in dotted Typst identifiers (plus.minus, minus.plus, etc.)
# Must be kept intact so the dot-notation survives _split_math_vars.
"plus",
"minus",
"times",
"div",
"arrow",
"tilde",
"hat",
"grave",
"acute",
"breve",
"caron",
"diaer",
"macron",
# Unit names β keep intact; LLM should quote them ("rad", "kg") but if bare,
# splitting into letters is worse than leaving as a multi-letter identifier.
"rad",
"radian",
"radians",
"rpm",
"rps",
"kg",
"mg",
"km",
"cm",
"mm",
"ms",
"ns",
"hz",
"khz",
"mhz",
"ghz",
# Relational / logical
"not",
"and",
"or",
"in",
"gt",
"lt",
"eq",
"approx",
"equiv",
"subset",
"supset",
"union",
"inter",
"forall",
"exists",
"therefore",
"because",
# Dots & special symbols (Typst names)
"dots",
"dots.c",
"dots.b",
"dots.v",
"dots.down",
"infty",
"iint",
"iiint",
"oint",
"int",
"partial",
"nabla",
"ell",
"hbar",
"planck",
"nothing",
"space",
"thin",
"med",
"thick",
"circle",
"ast",
"star",
"compose",
"bullet",
"without",
"wr",
"asymp",
"prop",
"models",
"perp",
"parallel",
"bowtie",
"smile",
"frown",
"aleph",
"wp",
"Re",
"Im",
"empty",
"surd",
"top",
"bot",
"angle",
"triangle",
"backslash",
"flat",
"natural",
"sharp",
"club",
"diamond",
"heart",
"spade",
"quad",
"wide",
"degree",
"dot",
"slash",
"bar",
"harpoon",
"brace",
"bracket",
"op",
"lr",
"dif",
}
# Also build a pattern that matches a known identifier anchored at the start
# of a word β used for greedy left-to-right tokenisation.
_IDENT_ALPHA = re.compile(r"[a-zA-Z]+(?:\.[a-zA-Z]+)+|[a-zA-Z]{2,}")
_MATH_UNDERSCORE_IDENT = re.compile(r"\b[a-zA-Z][a-zA-Z0-9]*(?:_[a-zA-Z0-9]+)+\b")
_LATEX_IDENT_RENAME: dict[str, str] = {
# Dots
"cdot": "dot.op",
"cdots": "dots.c",
"ldots": "dots",
"vdots": "dots.v",
"ddots": "dots.down",
# Fonts
"mathbf": "bold",
"mathrm": "upright",
"mathit": "italic",
"mathsf": "sans",
"mathtt": "mono",
"mathcal": "cal",
"mathbb": "bb",
"mathfrak": "frak",
"boldsymbol": "bold",
"text": "upright",
"textbf": "bold",
"textit": "italic",
"textrm": "upright",
"rm": "upright",
"bf": "bold",
"it": "italic",
"operatorname": "upright",
# Accents
"vec": "arrow",
"bar": "macron",
"check": "caron",
"ddot": "dot.double",
"dddot": "dot.triple",
"ddddot": "dot.quad",
"mathring": "circle",
# Operators & Symbols
"pm": "plus.minus",
"mp": "minus.plus",
"times": "times",
"div": "div",
"ast": "ast",
"star": "star",
"circ": "compose",
"bullet": "bullet",
"oplus": "plus.circle",
"ominus": "minus.circle",
"otimes": "times.circle",
"oslash": "div.circle",
"odot": "dot.circle",
"cup": "union",
"cap": "inter",
"uplus": "union.plus",
"sqcap": "inter.sq",
"sqcup": "union.sq",
"vee": "or",
"wedge": "and",
"setminus": "without",
"wr": "wr",
# Relations
"liminf": "liminf",
"limsup": "limsup",
"varliminf": "liminf",
"varlimsup": "limsup",
"varnothing": "empty",
"leq": "lt.eq",
"geq": "gt.eq",
"neq": "eq.not",
"le": "lt.eq",
"ge": "gt.eq",
"ne": "eq.not",
"ll": "lt.double",
"gg": "gt.double",
"equiv": "equiv",
"sim": "tilde.op",
"simeq": "tilde.eq",
"asymp": "asymp",
"approx": "approx",
"cong": "tilde.equiv",
"doteq": "eq.est",
"propto": "prop",
"models": "models",
"perp": "perp",
"mid": "bar.v",
"parallel": "parallel",
"bowtie": "bowtie",
"ltimes": "times.l",
"rtimes": "times.r",
"smile": "smile",
"frown": "frown",
"in": "in",
"notin": "in.not",
"ni": "in.rev",
"subset": "subset",
"supset": "supset",
"subseteq": "subset.eq",
"supseteq": "supset.eq",
# Arrows
"leftarrow": "arrow.l",
"rightarrow": "arrow.r",
"leftrightarrow": "arrow.l.r",
"Leftarrow": "arrow.l.double",
"Rightarrow": "arrow.r.double",
"Leftrightarrow": "arrow.l.r.double",
"mapsto": "arrow.r.bar",
"to": "arrow.r",
"implies": "arrow.r.double",
"iff": "arrow.l.r.double",
"gets": "arrow.l",
"hookleftarrow": "arrow.l.hook",
"hookrightarrow": "arrow.r.hook",
"rightharpoonup": "harpoon.rt",
"leftharpoonup": "harpoon.lt",
"rightharpoondown": "harpoon.rb",
"leftharpoondown": "harpoon.lb",
"rightleftharpoons": "harpoons.rtlb",
# Misc
"aleph": "aleph",
"wp": "wp",
"Re": "Re",
"Im": "Im",
"emptyset": "empty",
"nabla": "nabla",
"surd": "surd",
"top": "top",
"bot": "bot",
"angle": "angle",
"triangle": "triangle",
"backslash": "backslash",
"forall": "forall",
"exists": "exists",
"nexists": "exists.not",
"neg": "not",
"lnot": "not",
"flat": "flat",
"natural": "natural",
"sharp": "sharp",
"clubsuit": "club",
"diamondsuit": "diamond",
"heartsuit": "heart",
"spadesuit": "spade",
"infty": "infty",
"partial": "partial",
"quad": "quad",
"qquad": "wide",
"O": "O",
"degree": "degree",
# Brackets
"langle": "angle.l",
"rangle": "angle.r",
"lbrace": "brace.l",
"rbrace": "brace.r",
"lceil": "ceil.l",
"rceil": "ceil.r",
"lfloor": "floor.l",
"rfloor": "floor.r",
"lbrack": "bracket.l",
"rbrack": "bracket.r",
}
_TYPST_SYMBOL_IDENTIFIERS = frozenset(
value for value in _LATEX_IDENT_RENAME.values() if "." in value
) | {
"dots.c",
"dots.b",
"dots.v",
"dots.down",
}
def _split_math_vars(math_content: str) -> str:
"""Insert spaces between consecutive-letter variable products in Typst math.
In Typst math, ``bh`` is one identifier. We need ``b h`` (two separate
variables multiplied implicitly). Known identifiers like ``frac``, ``sin``,
``theta`` etc. are kept intact, as are any word immediately followed by ``(``
(function-call syntax).
Idempotent: quoted strings and escape sequences are protected up front, so
content that already went through this function (e.g. ``upright("page_index")``)
is never re-wrapped or letter-split on a second pass.
"""
protected: list[str] = []
def _stash_protected(m: re.Match) -> str:
protected.append(m.group(0))
return f"\x06{len(protected) - 1}\x07"
# Protect "..." string literals and \<char> escapes from every pass below.
math_content = re.sub(
r'"(?:[^"\\]|\\.)*"|\\[^a-zA-Z]', _stash_protected, math_content
)
# Bare # starts a code expression in Typst math; a remaining (unmatched)
# quote opens a string that swallows the rest of the source. Escape both.
math_content = math_content.replace("#", "\\#").replace('"', '\\"')
# An attach with no base/script ($_(x)$, $x_$, $x^$) is a parse error β
# give it an empty "" operand.
math_content = re.sub(r"^(\s*)([_^])", r'\1""\2', math_content)
math_content = re.sub(r"([_^])(\s*)$", r'\1""\2', math_content)
quoted_idents: list[str] = []
def _stash_underscore_ident(m: re.Match) -> str:
word = m.group(0)
parts = word.split("_")
# Keep valid Typst subscript chains: every segment is a single letter,
# a number, or a known identifier (sigma_x, sum_i, a_1, x_i_j).
if all(
len(part) == 1 or part.isdigit() or part in _TYPST_MATH_IDENTIFIERS
for part in parts
):
return word
quoted_idents.append(f'upright("{word}")')
return f"\x04{len(quoted_idents) - 1}\x05"
math_content = _MATH_UNDERSCORE_IDENT.sub(_stash_underscore_ident, math_content)
def _replace(m: re.Match) -> str:
word = m.group(0)
if "." in word:
if word in _TYPST_SYMBOL_IDENTIFIERS:
return word
return word.replace(".", " ")
# LaTeX identifier with a different Typst name β rename
if word in _LATEX_IDENT_RENAME:
return _LATEX_IDENT_RENAME[word]
# Known Typst math identifier β keep as-is
if word in _TYPST_MATH_IDENTIFIERS:
return word
# Function call (followed by open paren) β an unknown name would be an
# 'unknown variable' compile error, so quote it: TP(t) β upright("TP")(t)
if m.end() < len(math_content) and math_content[m.end()] == "(":
return f'upright("{word}")'
# Try greedy left-to-right: peel off known identifiers, then single chars
result_parts: list[str] = []
i = 0
while i < len(word):
matched = False
# Try longest known identifier starting at position i
for length in range(min(len(word) - i, 12), 1, -1):
candidate = word[i : i + length]
if candidate in _TYPST_MATH_IDENTIFIERS:
result_parts.append(candidate)
i += length
matched = True
break
if not matched:
result_parts.append(word[i])
i += 1
return " ".join(result_parts)
math_content = _IDENT_ALPHA.sub(_replace, math_content)
if quoted_idents:
math_content = re.sub(
r"\x04(\d+)\x05",
lambda m: quoted_idents[int(m.group(1))],
math_content,
)
if protected:
math_content = re.sub(
r"\x06(\d+)\x07",
lambda m: protected[int(m.group(1))],
math_content,
)
return math_content
def to_typst_native(text: str) -> str:
"""Convert hybrid HTML/Typst-math text to raw Typst markup string.
Expects <math> tags to contain Typst math syntax (no backslash LaTeX).
Output is a Typst markup fragment suitable for embedding in Typst content.
"""
if not text:
return ""
# Placeholder for # in our generated function calls β keeps them safe
# through the user-content escape step (which would otherwise turn # into \#).
PH = "\x00"
# Placeholder for raw <typst> blocks β pass through untouched.
TS_OPEN, TS_CLOSE = "\x02", "\x03"
result = text
# 0. Stash raw Typst blocks; restore at the very end to bypass all escaping.
raw_typst: list[str] = []
def _stash_typst(m: re.Match) -> str:
raw_typst.append(m.group(1))
return f"{TS_OPEN}{len(raw_typst) - 1}{TS_CLOSE}"
result = _TYPST_BLOCK.sub(_stash_typst, result)
# 1. Display math β $ content $ (spaces = display/block in Typst).
# Inline math β $content$ (no spaces = inline in Typst, stays in text flow).
# Also split multi-letter variable products (e.g. bh β b h) inside math.
result = _MATH_TYPST_DISPLAY.sub(
lambda m: f"$ {_split_math_vars(m.group(1).strip())} $", result
)
result = _MATH_TYPST_INLINE.sub(
lambda m: f"${_split_math_vars(m.group(1).strip())}$", result
)
# 2. Bold / italic / sup / sub β function-call syntax.
# Function calls avoid word-boundary issues that break `_x_ΞΈ`-style emphasis.
result = _BOLD.sub(lambda m: f"{PH}strong[{m.group(1)}]", result)
result = _ITALIC.sub(lambda m: f"{PH}emph[{m.group(1)}]", result)
result = _SUP.sub(lambda m: f"{PH}super[{m.group(1)}]", result)
result = _SUB.sub(lambda m: f"{PH}sub[{m.group(1)}]", result)
# 3. Strip remaining unknown HTML tags (preserving < > inside $...$)
result = _strip_tags_outside_math(result)
# 4. Escape Typst-special chars in user content (outside math)
result = _escape_typst_outside_math(result, clean_math=True)
# 5. Restore # for our generated function calls
result = result.replace(PH, "#")
# 6. Restore raw Typst blocks; clean LLM mistakes inside $...$ math regions.
if raw_typst:
def _restore(m: re.Match) -> str:
content = raw_typst[int(m.group(1))]
content = content.replace("\\/", "/") # legacy prompt artifact
# Inside each inline $...$, run full math cleanup (LaTeX β Typst, var split).
return re.sub(
r"\$([^$]+?)\$",
lambda mm: _clean_math_chunk(f"${mm.group(1)}$"),
content,
flags=re.DOTALL,
)
result = re.sub(f"{TS_OPEN}(\\d+){TS_CLOSE}", _restore, result)
return result
# ---------------------------------------------------------------------------
# TOC parser
# ---------------------------------------------------------------------------
# Matches: title (non-greedy) + optional dot leaders + page_number
# Lookahead: followed by whitespace+digit (next entry) or end of string.
# Page numbers limited to 1-3 digits to avoid matching years like 2023.
_TOC_BLOB_RE = re.compile(
r"(.+?)\s*(?:(?:\.\s*){2,})?\s*(\d{1,3})(?=\s+\d|\s*$)",
re.DOTALL,
)
_DOT_SEQ_RE = re.compile(r"\s*(?:\.\s*){2,}")
def parse_toc_line(line: str) -> tuple[str, str] | None:
"""Extract (title, page_number) from a single TOC line, or None."""
line = line.strip()
if not line:
return None
m = re.match(r"^(.*?)\s+(\d+)\s*$", line)
if m:
return m.group(1).strip(), m.group(2)
return None
def parse_toc_entries(text: str) -> list[tuple[str, str | None]]:
"""Parse TOC text into (title, page_num) pairs.
Handles both newline-separated lines and single-line blob format
(entries concatenated with dot leaders or bare spaces).
page_num is None for entries where no page number could be found.
"""
lines = [line.strip() for line in text.split("\n") if line.strip()]
if len(lines) > 1:
result = []
for line in lines:
parsed = parse_toc_line(line)
result.append(parsed if parsed else (line, None))
return result
# Single-line blob: extract via regex, preserving gap text between matches
entries: list[tuple[str, str | None]] = []
prev_end = 0
for m in _TOC_BLOB_RE.finditer(text):
gap = text[prev_end : m.start()].strip()
if gap:
clean = _DOT_SEQ_RE.sub(" ", gap).strip()
if clean:
entries.append((clean, None))
title = m.group(1).strip()
if title:
entries.append((title, m.group(2)))
prev_end = m.end()
tail = _DOT_SEQ_RE.sub(" ", text[prev_end:]).strip()
if tail:
entries.append((tail, None))
return entries if entries else [(text.strip(), None)]
|