Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

latex-writing乳胶书写

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

3,321

周安装

137

GitHub Stars

1

下载量

1,085
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:latex-writing(乳胶书写)
来源仓库:https://github.com/dbosk/claude-skills
仓库路径:skills/latex-writing
安装命令:
npx skills add https://github.com/dbosk/claude-skills --skill latex-writing
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/dbosk/claude-skills --skill latex-writing

简介

用于辅助文档、README 和内容稿件的整理与改写。

  • 适合提炼结构、补齐章节或统一术语。
  • 保留项目已有事实和路径,不写未确认的结论。
  • 对外文案需注意语气,避免过度营销或夸大能力。
  • 检查链接有效性并保持内容可读性。latex-writing 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

LaTeX Writing Best Practices

This skill guides the creation of well-structured, semantically correct LaTeX documents following established best practices.

Core Principle: Semantic Markup

Use LaTeX environments that match the semantic meaning of the content, not just the visual appearance.

List Environments: When to Use What

Use description for Term-Definition Pairs

When you have labels followed by explanations, definitions, or descriptions, use the description environment:

\begin{description}
\item[Term] Definition or explanation of the term
\item[Label] Content associated with the label
\item[Property] Description of the property
\end{description}

NEVER do this:

\begin{itemize}
\item \textbf{Term:} Definition or explanation
\item \textbf{Label:} Content associated with label
\end{itemize}

Common Use Cases for description

  • API parameters: \item[username] The user's login name
  • Configuration options: \item[timeout] Maximum wait time in seconds
  • Glossary entries: \item[LaTeX] A document preparation system
  • Passes/Fails examples: \item[Passes] Correct implementation...
  • Feature descriptions: \item[Auto-save] Automatically saves every 5 minutes

Use itemize for Simple Lists

Use itemize when items are uniform list elements without labels:

\begin{itemize}
\item First uniform item
\item Second uniform item
\item Third uniform item
\end{itemize}

Use enumerate for Numbered Steps or Rankings

Use enumerate when order matters:

\begin{enumerate}
\item First step in the process
\item Second step in the process
\item Third step in the process
\end{enumerate}

Recognition Patterns

When reviewing or writing LaTeX, look for these patterns that indicate description should be used:

  • \item \textbf{SomeLabel:} → Should use \item[SomeLabel]
  • \item \emph{SomeLabel:} → Should use \item[SomeLabel]
  • \item SomeLabel --- → Should use \item[SomeLabel]
  • Lists where every item starts with bold/emphasized text

Fixing Common Anti-Patterns

Anti-Pattern: Bold Labels in Itemize

% INCORRECT
\begin{itemize}
\item \textbf{Passes:} \verb|\documentclass{article}|
\item \textbf{Fails:} No documentclass declaration
\end{itemize}

Correct: Description Environment

% CORRECT
\begin{description}
\item[Passes] \verb|\documentclass{article}|
\item[Fails] No documentclass declaration
\end{description}

Anti-Pattern: Manual Formatting Instead of Semantic Structure

% INCORRECT
\noindent\textbf{Configuration:} Set timeout to 30 seconds.\\
\textbf{Performance:} Optimized for large datasets.

Correct: Semantic Description

% CORRECT
\begin{description}
\item[Configuration] Set timeout to 30 seconds
\item[Performance] Optimized for large datasets
\end{description}

Literate Programming (.nw files)

CRITICAL: When writing LaTeX in literate programming files (.nw), use noweb's [[code]] notation for quoting code, not \texttt with manual escaping.

Use [[code]] Notation, Not \texttt{...\_...}

The noweb literate programming system provides special notation for code references that automatically handles special characters like underscores.

Anti-pattern: Manual underscore escaping with \texttt

% INCORRECT - in .nw files
The \texttt{get\_submission()} method calls \texttt{\_\_getattribute\_\_}.
We store \texttt{\_original\_get\_submission} in the closure.
The \texttt{NOREFRESH\_GRADES} constant defines final grades.

Correct: Use [[code]] notation

% CORRECT - in .nw files
The [[get_submission()]] method calls [[__getattribute__]].
We store [[_original_get_submission]] in the closure.
The [[NOREFRESH_GRADES]] constant defines final grades.

Why this matters:

  • Automatically escapes special characters (underscores, backslashes, etc.)
  • Makes source code more readable (no manual escaping)
  • Follows literate programming conventions
  • Prevents LaTeX errors from forgotten escapes
  • Clearly distinguishes code from prose

When to Use [[code]] vs \texttt

Use [[code]] in.nw files for:

  • Function and method names: [[get_submissions()]], [[__init__]]
  • Variable names: [[_includes]], [[user_id]]
  • Class names: [[LazySubmission]], [[Assignment]]
  • Constants: [[NOREFRESH_GRADES]], [[MAX_RETRIES]]
  • Module names: [[pickle]], [[Canvas]]
  • Any identifier with underscores or special characters

Use \texttt in.nw files for:

  • Short non-code technical terms without special characters
  • File extensions: \texttt{.py}, \texttt{.nw}
  • Simple commands without underscores

In regular.tex files (not literate programs):

  • Use \texttt with proper escaping as [[...]] is not available
  • Or use packages like minted or listings for code

Recognition Pattern for Review

When reviewing.nw files, look for these anti-patterns:

  • \texttt{..._...} → Should use [[...]]
  • \texttt{...__...} → Should use [[...]]
  • \item[SOME\_CONSTANT behavior] → Should use better label + [[SOME_CONSTANT]] in text

Examples from Real Code

Documenting methods:

% INCORRECT
The \texttt{\_\_getstate\_\_} method excludes \texttt{\_original\_get\_submission}.

% CORRECT
The [[__getstate__]] method excludes [[_original_get_submission]].

Documenting constants:

% INCORRECT
\item[NOREFRESH\_GRADES behavior] Submissions with final grades...

% CORRECT
\item[Final grade policy] Submissions with final grades (A, P, P+, complete)
  are never refreshed, maintaining the [[NOREFRESH_GRADES]] policy.

Documenting attributes:

% INCORRECT
The decorator adds a \texttt{\_\_cache} dictionary and \texttt{\_\_all\_fetched} flag.

% CORRECT
The decorator adds a [[__cache]] dictionary and [[__all_fetched]] flag.

Additional Best Practices

Cross-References

  • Always use \cref{...} (cleveref package) for all cross-references
  • Never use \S\ref{...} or manually type section/figure prefixes
  • Use descriptive labels: \label{sec:introduction} not \label{s1}
  • Examples:

- Sections: \cref{sec:background} → "Section 2.1" - Figures: \cref{fig:diagram} → "Figure 3" - Tables: \cref{tab:results} → "Table 1" - Multiple: \cref{sec:intro,sec:conclusion} → "Sections 1 and 4"

Anti-pattern: Manual prefixes

% INCORRECT
Section~\ref{sec:intro} shows...
\S\ref{sec:background} discusses...
Figure~\ref{fig:plot} demonstrates...

% CORRECT
\cref{sec:intro} shows...
\cref{sec:background} discusses...
\cref{fig:plot} demonstrates...

Why: The cleveref package automatically adds the correct prefix (Section, Figure, etc.) and handles pluralization, ranges, and language-specific formatting.

Citations

  • Use proper citation commands (\cite, \citep, \citet) not manual references
  • Never write [1] or (Smith 2020) manually

Quotations (csquotes package)

  • Always use \enquote{...} for quotes, never manual quote marks
  • Handles nested quotes automatically: \enquote{outer \enquote{inner} quote}
  • Language-aware: Swedish uses »...« or "...", English uses "..." or '...'
  • For block quotes, use \begin{displayquote}...\end{displayquote}

Anti-pattern: Manual quotes

% INCORRECT
"This is a quote"
``This is a quote''
'single quotes'

Correct: Use csquotes

% CORRECT
\enquote{This is a quote}
\enquote{outer \enquote{inner} quote}

Why: Manual quote marks don't adapt to language settings and can cause typographical inconsistencies. The csquotes package handles all quote styling correctly based on document language.

Emphasis

  • Never use ALL CAPITALS for emphasis in running text
  • Use \emph{...} to emphasize words or phrases
  • For strong emphasis, use \textbf{...} or nested \emph{\emph{...}}
  • Let LaTeX handle the typographic styling

Anti-pattern: ALL CAPITALS for emphasis

% INCORRECT
This is VERY important to understand.
We must do this NOW before moving forward.
The BENEFITS of classes are clear.

Correct: Semantic emphasis

% CORRECT
This is \emph{very} important to understand.
We must do this \emph{now} before moving forward.
The \emph{benefits} of classes are clear.

Why: ALL CAPITALS in running text is considered shouting and poor typography. It's harder to read and looks unprofessional. Use \emph{...} to provide semantic emphasis, and LaTeX will render it appropriately (typically as italics, but this can be configured based on context and document style).

Exception: Acronyms and proper names that are conventionally written in capitals (e.g., NASA, USA, PDF) are fine and should not be emphasized.

Floats: Figures and Tables

Core principle: An image is not a figure, but a figure can contain an image. Use proper figure and table environments with captions and labels.

Using sidecaption (memoir class)

When using the memoir document class, prefer sidecaption over traditional \caption for better layout and accessibility:

For figures:

\begin{figure}
  \begin{sidecaption}{Clear description of image content}[fig:label]
    \includegraphics[width=0.7\textwidth]{path/to/image}
  \end{sidecaption}
\end{figure}

For tables:

\begin{table}
  \begin{sidecaption}{Description of table content}[tab:label]
    \begin{tabular}{lcc}
      \toprule
      Header1 & Header2 & Header3 \\
      \midrule
      Data1 & Data2 & Data3 \\
      \bottomrule
    \end{tabular}
  \end{sidecaption}
\end{table}

Key features of sidecaption:

  • Caption placement: Caption appears alongside the content (figure/table), not above or below
  • Space efficiency: Better use of page width, especially for narrow images/tables
  • Improved readability: Caption and content are visually connected
  • Accessibility: Clear semantic separation between caption text and content
  • Consistent labeling: Label goes in optional second argument [fig:label]

When to use sidecaption:

  • Medium-sized figures/tables that don't need full text width
  • Educational materials where caption-content proximity aids understanding
  • Documents using memoir class (Beamer presentations with memoir features)

Traditional caption alternative:

\begin{figure}
  \centering
  \includegraphics[width=0.7\textwidth]{path/to/image}
  \caption{Description of image content}
  \label{fig:label}
\end{figure}

Use traditional \caption + \label when:

  • Not using memoir class
  • Figure/table spans full text width
  • Caption naturally belongs below content (e.g., wide tables)

Referencing figures and tables

Always use \cref{fig:label} (cleveref package) to reference figures and tables:

As shown in \cref{fig:memory-hierarchy}, secondary memory is slower but non-volatile.

The results in \cref{tab:benchmark} demonstrate...

Never hard-code references like "Figure 1", "Table 3.2", or use manual prefixes like Figure~\ref{fig:label}—let cleveref handle both numbering and prefixes automatically.

Verbatim and Code

  • Use listings package for code with syntax highlighting
  • Use \verb for inline code snippets
  • Never paste code as normal text

Paths

  • Always use forward slashes in paths: figures/diagram.pdf not figures\diagram.pdf
  • Use platform-independent path specifications

Workflow for Writing LaTeX

When writing or editing LaTeX content:

  1. Check file type: Are you in a.nw literate programming file? If yes, use [[code]] notation, not \texttt{...\_...}
  2. Identify content structure: Is this a list of uniform items or term-definition pairs?
  3. Choose semantic environment: Match the environment to the content meaning
  4. Use proper commands: Leverage LaTeX's semantic commands rather than manual formatting
  5. Verify cross-references: Ensure labels and references are descriptive and correct
  6. Check for anti-patterns: Review for \textbf{Label:} in itemize, \texttt{..._...} in.nw files

When Reviewing LaTeX Code

Check for these common issues:

  • Lists using \textbf{Label:} instead of description environment
  • Hard-coded numbers instead of \ref
  • Manual cross-reference prefixes (\S\ref, Section~\ref, Figure~\ref) instead of \cref
  • Manual citation formatting instead of \cite commands
  • Manual quotes ("...", '...', ` ... ) instead of \enquote{...}`
  • Images without figure environment
  • Code without proper formatting (listings/verbatim)
  • Windows-style backslashes in paths

Additional checks for.nw literate programming files:

  • \texttt{..._...} or \texttt{...__...} → Should use [[...]] notation
  • Description labels with underscores \item[FOO\_BAR behavior] → Use better label + [[FOO_BAR]] in text
  • Any manually escaped underscores in code references → Use [[...]] instead

Beamer: Presentation vs Article Mode

When creating Beamer presentations that also generate article versions, use \mode<presentation> and \mode<article> to provide appropriate content for each format.

When to Split Content

Verbose text environments: Semantic environments (definition, remark, example, block) with more than 2-3 lines of prose are too verbose for slides.

Solution: Provide concise versions for presentations and full explanations for articles:

\begin{frame}
  \mode<presentation>{%
    \begin{remark}[Key Point]
      \begin{itemize}
        \item Concise point 1
        \item Concise point 2
        \item Concise point 3
      \end{itemize}
    \end{remark}
  }
  \mode<article>{%
    \begin{remark}[Key Point]
      Full explanatory paragraph with detailed reasoning and context
      that would overwhelm a slide but provides value in written form.

      Additional paragraphs can elaborate on nuances and implications.
    \end{remark}
  }
\end{frame}

Visual Elements

Side-by-side layouts using \textbytext:

  • Presentation: \textbytext (non-starred, column width, works in beamer frames)
  • Article: \textbytext* (starred, fullwidth, better for printed documents)
\begin{frame}
  \mode<presentation>{%
    \textbytext{Left content}{Right content}
  }
  \mode<article>{%
    \textbytext*{Left content}{Right content}
  }
\end{frame}

Principle

Slides need visual clarity and conciseness (bullets, short phrases). Articles can provide depth and explanation (full sentences, paragraphs). Design content appropriate for each medium.

Standard Preamble

For new LaTeX documents, use the standard preamble from references/preamble.tex. Copy it verbatim to your project's doc/preamble.tex and include it with \input{preamble} after \documentclass.

Document structure:

\documentclass[a4paper,oneside]{memoir}
\input{preamble}

\title{Document Title}
\author{Author Name}
\date{\today}

\begin{document}
\frontmatter
\maketitle
\tableofcontents

\mainmatter
% Content here

\backmatter
\end{document}

The standard preamble provides:

  • Language support (babel with swedish, british)
  • Bibliography (biblatex with alphabetic style)
  • Code highlighting (minted, noweb)
  • Mathematics (amsmath, amssymb, mathtools, amsthm)
  • Cross-references (cleveref with custom labels)
  • Quotations (csquotes)
  • Tables (booktabs)
  • Various utilities (enumitem, acro, siunitx, etc.)

This ensures consistent formatting across all documents and projects.

Remember

LaTeX is a document preparation system based on semantic markup, not a word processor. The goal is to describe what content *is*, not how it should *look*. Let LaTeX handle the formatting based on the semantic structure you provide.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.76%
按下载量换算410

Claude

29.6%
按下载量换算321

Cursor

20.43%
按下载量换算222

Gemini CLI

9.24%
按下载量换算100

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills