Fix docs latex build and nits (#1297)

* fix docs latex build and nits

* fix stub gen and try to clean up building
This commit is contained in:
Awni Hannun
2024-07-29 11:44:06 -07:00
committed by GitHub
parent 6e06e3a904
commit aa1d6cadad
6 changed files with 36 additions and 18 deletions

View File

@@ -83,3 +83,15 @@ def setup(app):
# -- Options for LaTeX output ------------------------------------------------
latex_documents = [(main_doc, "MLX.tex", "MLX Documentation", author, "manual")]
latex_elements = {
"preamble": r"""
\usepackage{enumitem}
\setlistdepth{5}
\setlist[itemize,1]{label=$\bullet$}
\setlist[itemize,2]{label=$\bullet$}
\setlist[itemize,3]{label=$\bullet$}
\setlist[itemize,4]{label=$\bullet$}
\setlist[itemize,5]{label=$\bullet$}
\renewlist{itemize}{itemize}{5}
""",
}