一键导入
word-to-tex
Word 文本转 LaTeX 工具:将从 Word 复制的内容整理为标准 LaTeX 格式并保存到文件。触发词:/wordtotex、Word转LaTeX、转换为TeX
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Word 文本转 LaTeX 工具:将从 Word 复制的内容整理为标准 LaTeX 格式并保存到文件。触发词:/wordtotex、Word转LaTeX、转换为TeX
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Technology scouting and evaluation for tools, frameworks, libraries, and technical approaches. Use when users need to evaluate technology options, compare frameworks, assess technical feasibility, scout emerging technologies, or make build-vs-buy decisions. Produces structured comparison matrices with objective criteria scoring.
使用 Semantic Scholar API 检索和验证学术论文。支持并发多关键词搜索、批量 ID/DOI 查询、引用分析、批量补全摘要、统一 Markdown 导出。覆盖 2.14 亿+ 学术论文,无需 API Key 即可使用。触发词:论文检索、论文验证、Semantic Scholar、S2 搜索、查论文、补全摘要、导出MD
中文/英文写作风格迁移与错误记忆工作流。适用于论文、学位论文、报告等场景,提供 style profile、error log、长期记忆与多智能体写作闭环。
Use when user sends /skill复盘 or /迭代清单, or asks to review skill usage and iteration suggestions from the current conversation.
汇总所有 Claude Code Skills 的目录与使用指南,支持检查 GitHub 更新。触发词:/skills、技能目录、skill列表、有哪些技能、检查更新
[由 collaborating-hub 路由] Codex CLI 后端实现。直接使用请通过 /collab 或 /codex 触发 collaborating-hub。
| name | word-to-tex |
| description | Word 文本转 LaTeX 工具:将从 Word 复制的内容整理为标准 LaTeX 格式并保存到文件。触发词:/wordtotex、Word转LaTeX、转换为TeX |
将从 Word 复制的内容转换为标准 LaTeX 格式并保存到文件。
/wordtotex <filename.tex> [待转换内容]/wordtotex <filename.tex> [待转换内容]
<filename.tex>自动识别并使用对应的 LaTeX 命令:
\section{}\subsection{}\subsubsection{}$...$equation 环境% 行内
The formula $E = mc^2$ is famous.
% 独立
\begin{equation}
E = mc^2
\end{equation}
itemizeenumerate\begin{itemize}
\item First item
\item Second item
\end{itemize}
\begin{enumerate}
\item First item
\item Second item
\end{enumerate}
必须正确转义以下字符:
| 字符 | 转义形式 |
|---|---|
| & | \& |
| % | \% |
| $ | \$ |
| _ | \_ |
| # | \# |
| { | \{ |
| } | \} |
| ~ | \textasciitilde |
| ^ | \textasciicircum |
| \ | \textbackslash |
输入:
/wordtotex intro.tex
1. Introduction
This paper presents a novel approach to distributed consensus.
The key contribution includes:
• Improved throughput
• Lower latency
• Better fault tolerance
The formula E = mc² demonstrates the relationship.
输出文件 intro.tex:
\section{Introduction}
This paper presents a novel approach to distributed consensus.
The key contribution includes:
\begin{itemize}
\item Improved throughput
\item Lower latency
\item Better fault tolerance
\end{itemize}
The formula $E = mc^2$ demonstrates the relationship.