Install
openclaw skills install latexWrite LaTeX documents with correct syntax, packages, and compilation workflow.
openclaw skills install latex\# \$ \% \& \_ \{ \} \textbackslash\textasciitilde not \~ (that's an accent)\textasciicircum not \^\textbackslash not \\ (that's line break)`` not "; closing: ''—never use straight " quotes-, en-dash -- (ranges: 1--10), em-dash --- (punctuation)$-1$ not -1 in text$...$ or \(...\); display: \[...\] or equation environment$E = mc^2 \text{ where } m \text{ is mass}$align environment, not multiple equations\left( ... \right) for auto-sizing delimiters—must be paired{} or \ : \LaTeX{} or \LaTeX\ is~ between number and unit: 5~km\, thin, \: medium, \; thick, \quad \qquad\usepackage order matters—hyperref almost always lastinputenc + fontenc for UTF-8: \usepackage[utf8]{inputenc} \usepackage[T1]{fontenc}graphicx for images, booktabs for professional tables, amsmath for advanced mathmicrotype for better typography—load early, subtle but significant improvement[htbp] suggests placement: here, top, bottom, page—not commands[H] from float package to force\centering inside float, not center environment\label—label references the last numbered element\ref and \pageref—first pass collects, second uses\label immediately after \caption or inside environment being labeledhyperref makes refs clickable—but can break with some packagestabular for inline, table float for numbered with captionbooktabs: \toprule, \midrule, \bottomrule—no vertical lines@{} removes padding: \begin{tabular}{@{}lll@{}}\multicolumn{2}{c}{Header}; multirow needs multirow package\graphicspath{{./images/}}\includegraphics[width=0.8\textwidth]{file}—no extension often better\- hyphenation hints, or allow \sloppy$: math command used in text mode\include adds page break, \input doesn't—use \input for fragments\begin{document}—all \usepackage and settings\maketitle after \begin{document} if using \title, \author, \datearticle for short docs, report for chapters without parts, book for full books