research-paper-writing

Write ML papers for NeurIPS/ICML/ICLR: design→submit.

  • Research
  • Paper Writing
  • Experiments
  • ML
  • AI
  • NeurIPS
  • ICML
  • ICLR
  • ACL
  • AAAI
  • COLM
  • LaTeX
  • Citations
  • Statistical Analysis

Declared platforms: linux · macos

Install
npx skills add 'https://github.com/NousResearch/hermes-agent/tree/main/optional-skills/research/research-paper-writing'
Download bundle ↓
main · 24fd22bScanned 2026-09-15

Contributors

GitHub-linked commit authors for this SKILL.md at the saved revision. Co-authors and history before file renames are not included.

File history ↗

templates/neurips2025/Makefile

templates/neurips2025/MakefileBrowse 56 files
View on GitHub
← Back to SKILL.md
FIGURES_FOLDER := figuresPDFS := \$(filter-out $(wildcard $(FIGURES_FOLDER)/*-crop.pdf),$(wildcard $(FIGURES_FOLDER)/*.pdf)) \$(filter-out $(wildcard $(FIGURES_FOLDER)/**/*-crop.pdf),$(wildcard $(FIGURES_FOLDER)/**/*.pdf))CROPPED_PDFS := $(PDFS:.pdf=-crop.pdf) all: main.pdf %.pdf: %.tex Makefile $(CROPPED_PDFS)	pdflatex -synctex=1 -interaction=nonstopmode $<	-bibtex $*.aux	pdflatex -synctex=1 -interaction=nonstopmode $<	pdflatex -synctex=1 -interaction=nonstopmode $< .PHONY: figuresfigures: $(CROPPED_PDFS) .PRECIOUS: $(CROPPED_PDFS)%-crop.pdf: %.pdf Makefile	pdfcrop $< .PHONY: clean upgradeclean:	find . -maxdepth 1 \		\( -name "*.aux" -o -name "*.bbl" -o -name "*.blg" -o \	           -name "*.log" -o -name "*.out" -o -name "*.pdf" -o \		   -name "*.synctex.gz" \) | xargs $(RM)	find $(FIGURES_FOLDER) -name "*-crop.pdf" | xargs $(RM) YEAR := 2025 upgrade:	curl -O https://media.neurips.cc/Conferences/NeurIPS$(YEAR)/Styles.zip	unzip -u Styles.zip	mv Styles/neurips_${YEAR}.sty neurips.sty	$(RM) -r Styles.zip Styles