{
  "schemaVersion": "1.0",
  "item": {
    "slug": "latex",
    "name": "LaTeX",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/ivangdavila/latex",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/latex",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/latex",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=latex",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/latex"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/latex",
    "agentPageUrl": "https://openagent3.xyz/skills/latex/agent",
    "manifestUrl": "https://openagent3.xyz/skills/latex/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/latex/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Special Characters",
        "body": "Reserved chars need escape: \\# \\$ \\% \\& \\_ \\{ \\} \\textbackslash\nTilde as character: \\textasciitilde not \\~ (that's an accent)\nCaret: \\textasciicircum not \\^\nBackslash in text: \\textbackslash not \\\\ (that's line break)"
      },
      {
        "title": "Quotes & Dashes",
        "body": "Opening quotes: `` not \"; closing: ''—never use straight \" quotes\nHyphen -, en-dash -- (ranges: 1--10), em-dash --- (punctuation)\nMinus in math mode: $-1$ not -1 in text"
      },
      {
        "title": "Math Mode",
        "body": "Inline: $...$ or \\(...\\); display: \\[...\\] or equation environment\nText inside math: $E = mc^2 \\text{ where } m \\text{ is mass}$\nMultiline equations: align environment, not multiple equations\n\\left( ... \\right) for auto-sizing delimiters—must be paired"
      },
      {
        "title": "Spacing",
        "body": "Command followed by text needs {} or \\ : \\LaTeX{} or \\LaTeX\\ is\nNon-breaking space: ~ between number and unit: 5~km\nForce space in math: \\, thin, \\: medium, \\; thick, \\quad \\qquad"
      },
      {
        "title": "Packages",
        "body": "\\usepackage order matters—hyperref almost always last\ninputenc + fontenc for UTF-8: \\usepackage[utf8]{inputenc} \\usepackage[T1]{fontenc}\ngraphicx for images, booktabs for professional tables, amsmath for advanced math\nmicrotype for better typography—load early, subtle but significant improvement"
      },
      {
        "title": "Floats (Figures & Tables)",
        "body": "[htbp] suggests placement: here, top, bottom, page—not commands\nLaTeX may move floats far from source—use [H] from float package to force\nAlways use \\centering inside float, not center environment\nCaption before \\label—label references the last numbered element"
      },
      {
        "title": "References",
        "body": "Compile twice to resolve \\ref and \\pageref—first pass collects, second uses\n\\label immediately after \\caption or inside environment being labeled\nFor bibliography: latex → bibtex → latex → latex (4 passes)\nhyperref makes refs clickable—but can break with some packages"
      },
      {
        "title": "Tables",
        "body": "tabular for inline, table float for numbered with caption\nUse booktabs: \\toprule, \\midrule, \\bottomrule—no vertical lines\n@{} removes padding: \\begin{tabular}{@{}lll@{}}\nMulticolumn: \\multicolumn{2}{c}{Header}; multirow needs multirow package"
      },
      {
        "title": "Images",
        "body": "Path relative to main file or set with \\graphicspath{{./images/}}\nPrefer PDF/EPS for pdflatex/latex; PNG/JPG for photos\n\\includegraphics[width=0.8\\textwidth]{file}—no extension often better"
      },
      {
        "title": "Common Errors",
        "body": "Overfull hbox: line too long—rephrase, add \\- hyphenation hints, or allow \\sloppy\nMissing $: math command used in text mode\nUndefined control sequence: typo or missing package\n\\include adds page break, \\input doesn't—use \\input for fragments"
      },
      {
        "title": "Document Structure",
        "body": "Preamble before \\begin{document}—all \\usepackage and settings\n\\maketitle after \\begin{document} if using \\title, \\author, \\date\narticle for short docs, report for chapters without parts, book for full books"
      }
    ],
    "body": "Special Characters\nReserved chars need escape: \\# \\$ \\% \\& \\_ \\{ \\} \\textbackslash\nTilde as character: \\textasciitilde not \\~ (that's an accent)\nCaret: \\textasciicircum not \\^\nBackslash in text: \\textbackslash not \\\\ (that's line break)\nQuotes & Dashes\nOpening quotes: `` not \"; closing: ''—never use straight \" quotes\nHyphen -, en-dash -- (ranges: 1--10), em-dash --- (punctuation)\nMinus in math mode: $-1$ not -1 in text\nMath Mode\nInline: $...$ or \\(...\\); display: \\[...\\] or equation environment\nText inside math: $E = mc^2 \\text{ where } m \\text{ is mass}$\nMultiline equations: align environment, not multiple equations\n\\left( ... \\right) for auto-sizing delimiters—must be paired\nSpacing\nCommand followed by text needs {} or \\ : \\LaTeX{} or \\LaTeX\\ is\nNon-breaking space: ~ between number and unit: 5~km\nForce space in math: \\, thin, \\: medium, \\; thick, \\quad \\qquad\nPackages\n\\usepackage order matters—hyperref almost always last\ninputenc + fontenc for UTF-8: \\usepackage[utf8]{inputenc} \\usepackage[T1]{fontenc}\ngraphicx for images, booktabs for professional tables, amsmath for advanced math\nmicrotype for better typography—load early, subtle but significant improvement\nFloats (Figures & Tables)\n[htbp] suggests placement: here, top, bottom, page—not commands\nLaTeX may move floats far from source—use [H] from float package to force\nAlways use \\centering inside float, not center environment\nCaption before \\label—label references the last numbered element\nReferences\nCompile twice to resolve \\ref and \\pageref—first pass collects, second uses\n\\label immediately after \\caption or inside environment being labeled\nFor bibliography: latex → bibtex → latex → latex (4 passes)\nhyperref makes refs clickable—but can break with some packages\nTables\ntabular for inline, table float for numbered with caption\nUse booktabs: \\toprule, \\midrule, \\bottomrule—no vertical lines\n@{} removes padding: \\begin{tabular}{@{}lll@{}}\nMulticolumn: \\multicolumn{2}{c}{Header}; multirow needs multirow package\nImages\nPath relative to main file or set with \\graphicspath{{./images/}}\nPrefer PDF/EPS for pdflatex/latex; PNG/JPG for photos\n\\includegraphics[width=0.8\\textwidth]{file}—no extension often better\nCommon Errors\nOverfull hbox: line too long—rephrase, add \\- hyphenation hints, or allow \\sloppy\nMissing $: math command used in text mode\nUndefined control sequence: typo or missing package\n\\include adds page break, \\input doesn't—use \\input for fragments\nDocument Structure\nPreamble before \\begin{document}—all \\usepackage and settings\n\\maketitle after \\begin{document} if using \\title, \\author, \\date\narticle for short docs, report for chapters without parts, book for full books"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ivangdavila/latex",
    "publisherUrl": "https://clawhub.ai/ivangdavila/latex",
    "owner": "ivangdavila",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/latex",
    "downloadUrl": "https://openagent3.xyz/downloads/latex",
    "agentUrl": "https://openagent3.xyz/skills/latex/agent",
    "manifestUrl": "https://openagent3.xyz/skills/latex/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/latex/agent.md"
  }
}