一键导入
latex-report
Write LaTeX research reports. Use when asked to write, compile, or publish a report and save it to the dedicated reports repository.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Write LaTeX research reports. Use when asked to write, compile, or publish a report and save it to the dedicated reports repository.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
View, add, update, or cancel scheduled tasks. Use when asked about schedules, cron jobs, reminders, or recurring tasks.
Set up internbot for development. Use when setting up the project for the first time.
Review today's HuggingFace daily papers, pick the most relevant one, write a LaTeX summary report with follow-up research directions. Use when asked to check daily papers, do a paper review, or triggered by the scheduler.
Add a Slack channel to internbot's whitelist. Use when the user wants the bot to listen to a new channel.
Search and summarize arxiv papers. Use when asked about papers, research topics, or specific arxiv IDs.
Explain and review code. Use when code is shared in conversation or a review is requested.
| name | latex-report |
| description | Write LaTeX research reports. Use when asked to write, compile, or publish a report and save it to the dedicated reports repository. |
reports-repo/reports/YYYY-MM-DD-<topic>.tex and matching .pdfClarify scope: what topic, how detailed, who's the audience?
Write the .tex file using \documentclass{article} with these sections:
\begin{abstract} — 3-5 sentence summary\section{Introduction} — context, motivation, what this report covers\section{Related Work} — key prior work, how it connects\section{Analysis} or \section{Method} — the main content\section{Discussion} — implications, open questions\section{Conclusion} — key takeaways, next steps\bibliography — use BibTeX for citationsUse proper LaTeX conventions:
\cite{} for references, not inline text citations\ref{} for cross-references to figures/tables/sections\begin{figure}, \begin{table} for floats\usepackage{amsmath} for equations\usepackage{graphicx} for figures\usepackage{hyperref} for clickable referencesSave to reports-repo/reports/ with a descriptive filename
Compile:
pdflatex -interaction=nonstopmode -output-directory=<dir> <file>.tex
bibtex <file> # if bibliography used
pdflatex -interaction=nonstopmode -output-directory=<dir> <file>.tex
pdflatex -interaction=nonstopmode -output-directory=<dir> <file>.tex
Run pdflatex twice (three times with bibtex) to resolve references.
From reports-repo, commit and push the .tex and .pdf files
internbot repo unless user explicitly asksPost to Slack: a brief plain-text summary (not the full LaTeX) with the direct GitHub link to the PDF
\end{}, unescaped _ or %, missing packagesreports-repo/ git subdir (separate repo with its own remote)git -C reports-repo remote get-url origin<repo-url>/blob/main/reports/<filename>.pdf (strip any .git suffix and auth prefix)