skills/export-latex/SKILL.md
Export research project findings to a LaTeX manuscript draft with figures, references, and methods. Supports Nature, Cell, Lancet, and generic article formats. Use when user says "导出 LaTeX", "/export latex", "写论文初稿", "export to LaTeX", "generate manuscript", or wants a paper draft from project results. Builds on venue-templates skill.
npx skillsauth add Zaoqu-Liu/ScienceClaw export-latexInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Auto-generate a LaTeX paper draft from a ScienceClaw project's report, figures, and METHODS.md. Uses venue-templates skill for journal-specific formatting.
latex/figures/ subdirectoryreports/<project_name>_manuscript.tex| Report Section | Paper Section | |---------------|--------------| | Background / Introduction | Introduction | | METHODS.md | Methods / Materials and Methods | | Results / Findings / Analysis | Results | | Summary / Conclusions / Discussion | Discussion | | References | Bibliography (.bib) |
\documentclass[11pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage{booktabs}
\usepackage{hyperref}
\usepackage[margin=2.5cm]{geometry}
\usepackage{natbib}
\bibliographystyle{unsrtnat}
\title{TITLE_PLACEHOLDER}
\author{ScienceClaw Analysis}
\date{\today}
\begin{document}
\maketitle
\begin{abstract}
ABSTRACT_PLACEHOLDER
\end{abstract}
\section{Introduction}
INTRO_PLACEHOLDER
\section{Methods}
METHODS_PLACEHOLDER
\section{Results}
RESULTS_PLACEHOLDER
\section{Discussion}
DISCUSSION_PLACEHOLDER
\section*{Acknowledgments}
This analysis was performed using ScienceClaw with data from [list databases].
\bibliography{references}
\end{document}
Convert GB/T 7714 references from the report to BibTeX entries:
def gbt7714_to_bibtex(ref_line, key):
"""Convert a GB/T 7714 reference line to BibTeX @article entry."""
# Parse: [N] Authors. Title[J]. Journal, Year, Vol(Issue): Pages. DOI: xxx.
# Generate: @article{key, author={...}, title={...}, journal={...}, year={...}, ...}
...
For specific journals, refer to the venue-templates skill which provides full LaTeX class files and formatting requirements for:
When the user specifies a journal, load the appropriate template from venue-templates and adapt the content accordingly.
reports/<project_name>_manuscript.texreports/references.bibreports/latex/figures/ (copies of all PNG figures)Report all file paths to the user.
testing
Therapeutics Data Commons. AI-ready drug discovery datasets (ADME, toxicity, DTI), benchmarks, scaffold splits, molecular oracles, for therapeutic ML and pharmacological prediction.
tools
Genomic file toolkit. Read/write SAM/BAM/CRAM alignments, VCF/BCF variants, FASTA/FASTQ sequences, extract regions, calculate coverage, for NGS data processing pipelines.
development
Complete mass spectrometry analysis platform. Use for proteomics workflows feature detection, peptide identification, protein quantification, and complex LC-MS/MS pipelines. Supports extensive file formats and algorithms. Best for proteomics, comprehensive MS data processing. For simple spectral comparison and metabolite ID use matchms.
development
Multi-objective optimization framework. NSGA-II, NSGA-III, MOEA/D, Pareto fronts, constraint handling, benchmarks (ZDT, DTLZ), for engineering design and optimization problems.