latex
Write LaTeX documents with correct syntax, packages, and compilation workflow.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Write LaTeX documents with correct syntax, packages, and compilation workflow.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Sync and manage Overleaf LaTeX projects from the command line. Pull projects locally, push changes back, compile PDFs, and download compile outputs like .bbl files for arXiv submissions. Use when working with LaTeX, Overleaf, academic papers, or arXiv.
Professional LaTeX writing assistant. Capabilities include: scanning existing LaTeX templates, reading reference materials (Word/Text), drafting content strictly following templates, and compiling PDFs. Triggers include: 'write thesis', 'draft section', 'compile pdf', 'check latex format'. Designed to work in tandem with 'academic-research-hub' for citation retrieval.
Convert PDF documents to LaTeX source code using MinerU AI extraction. Designed for researchers, academics, and scientists who need to re-edit, re-typeset, or recover LaTeX markup from published papers, theses, and technical reports. Use when asked to: convert a PDF paper to LaTeX, extract LaTeX from an academic PDF, edit a PDF in LaTeX, re-typeset an arXiv paper, recover LaTeX source from PDF, turn a document into editable LaTeX, get equations out of a PDF, extract math formulas from document, convert research paper to LaTeX. Handles complex academic layouts: mathematical equations, multi-column text, tables, figures, and scientific notation. Supports local PDF files and direct URLs including arXiv links. Use --model vlm for high-accuracy extraction of math-heavy or multi-column documents; use pipeline mode for guaranteed structural fidelity. Solves problems like: I have a PDF but need the LaTeX source, I need to modify a paper but only have the PDF, I want to reuse equations from a published paper, how do I
Access Overleaf projects via CLI. Use for reading/writing LaTeX files, syncing local .tex files to Overleaf, downloading projects, managing Overleaf project structure, and accepting project invitations. Triggers on Overleaf, LaTeX sync, tex file uploads to Overleaf, or Overleaf invite acceptance.
Compile Typst and LaTeX documents to PDF via API. Send source code, get back a PDF.
Convert Markdown files to PDF with full LaTeX math formula rendering and CJK (Chinese/Japanese/Korean) support. Use when the user asks to convert markdown to PDF, render a report as PDF, export notes to PDF, or generate a printable document from markdown. Handles $...$ inline and $$...$$ display math, code blocks, tables, and mixed CJK/Latin text. Requires pandoc + texlive-xetex.
| name | LaTeX |
| description | Write LaTeX documents with correct syntax, packages, and compilation workflow. |
| metadata | {"clawdbot":{"emoji":"📐","os":["linux","darwin","win32"]}} |
\# \$ \% \& \_ \{ \} \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