@synsci/cli-darwin-x64-baseline 1.1.71 → 1.1.72
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/skills/citation-management/SKILL.md +1109 -0
- package/bin/skills/citation-management/assets/bibtex_template.bib +264 -0
- package/bin/skills/citation-management/assets/citation_checklist.md +386 -0
- package/bin/skills/citation-management/references/bibtex_formatting.md +908 -0
- package/bin/skills/citation-management/references/citation_validation.md +794 -0
- package/bin/skills/citation-management/references/google_scholar_search.md +725 -0
- package/bin/skills/citation-management/references/metadata_extraction.md +870 -0
- package/bin/skills/citation-management/references/pubmed_search.md +839 -0
- package/bin/skills/citation-management/scripts/doi_to_bibtex.py +182 -0
- package/bin/skills/citation-management/scripts/extract_metadata.py +570 -0
- package/bin/skills/citation-management/scripts/format_bibtex.py +349 -0
- package/bin/skills/citation-management/scripts/search_google_scholar.py +251 -0
- package/bin/skills/citation-management/scripts/search_pubmed.py +348 -0
- package/bin/skills/citation-management/scripts/validate_citations.py +494 -0
- package/bin/skills/clinical-decision-support/README.md +129 -0
- package/bin/skills/clinical-decision-support/SKILL.md +506 -0
- package/bin/skills/clinical-decision-support/assets/biomarker_report_template.tex +380 -0
- package/bin/skills/clinical-decision-support/assets/clinical_pathway_template.tex +222 -0
- package/bin/skills/clinical-decision-support/assets/cohort_analysis_template.tex +359 -0
- package/bin/skills/clinical-decision-support/assets/color_schemes.tex +149 -0
- package/bin/skills/clinical-decision-support/assets/example_gbm_cohort.md +208 -0
- package/bin/skills/clinical-decision-support/assets/recommendation_strength_guide.md +328 -0
- package/bin/skills/clinical-decision-support/assets/treatment_recommendation_template.tex +529 -0
- package/bin/skills/clinical-decision-support/references/biomarker_classification.md +719 -0
- package/bin/skills/clinical-decision-support/references/clinical_decision_algorithms.md +604 -0
- package/bin/skills/clinical-decision-support/references/evidence_synthesis.md +840 -0
- package/bin/skills/clinical-decision-support/references/outcome_analysis.md +640 -0
- package/bin/skills/clinical-decision-support/references/patient_cohort_analysis.md +427 -0
- package/bin/skills/clinical-decision-support/references/treatment_recommendations.md +521 -0
- package/bin/skills/clinical-decision-support/scripts/biomarker_classifier.py +383 -0
- package/bin/skills/clinical-decision-support/scripts/build_decision_tree.py +417 -0
- package/bin/skills/clinical-decision-support/scripts/create_cohort_tables.py +509 -0
- package/bin/skills/clinical-decision-support/scripts/generate_survival_analysis.py +441 -0
- package/bin/skills/clinical-decision-support/scripts/validate_cds_document.py +326 -0
- package/bin/skills/clinical-reports/IMPLEMENTATION_SUMMARY.md +641 -0
- package/bin/skills/clinical-reports/README.md +236 -0
- package/bin/skills/clinical-reports/SKILL.md +1127 -0
- package/bin/skills/clinical-reports/assets/case_report_template.md +352 -0
- package/bin/skills/clinical-reports/assets/clinical_trial_csr_template.md +353 -0
- package/bin/skills/clinical-reports/assets/clinical_trial_sae_template.md +359 -0
- package/bin/skills/clinical-reports/assets/consult_note_template.md +305 -0
- package/bin/skills/clinical-reports/assets/discharge_summary_template.md +453 -0
- package/bin/skills/clinical-reports/assets/hipaa_compliance_checklist.md +395 -0
- package/bin/skills/clinical-reports/assets/history_physical_template.md +305 -0
- package/bin/skills/clinical-reports/assets/lab_report_template.md +309 -0
- package/bin/skills/clinical-reports/assets/pathology_report_template.md +249 -0
- package/bin/skills/clinical-reports/assets/quality_checklist.md +338 -0
- package/bin/skills/clinical-reports/assets/radiology_report_template.md +318 -0
- package/bin/skills/clinical-reports/assets/soap_note_template.md +253 -0
- package/bin/skills/clinical-reports/references/case_report_guidelines.md +570 -0
- package/bin/skills/clinical-reports/references/clinical_trial_reporting.md +693 -0
- package/bin/skills/clinical-reports/references/data_presentation.md +530 -0
- package/bin/skills/clinical-reports/references/diagnostic_reports_standards.md +629 -0
- package/bin/skills/clinical-reports/references/medical_terminology.md +588 -0
- package/bin/skills/clinical-reports/references/patient_documentation.md +744 -0
- package/bin/skills/clinical-reports/references/peer_review_standards.md +585 -0
- package/bin/skills/clinical-reports/references/regulatory_compliance.md +577 -0
- package/bin/skills/clinical-reports/scripts/check_deidentification.py +332 -0
- package/bin/skills/clinical-reports/scripts/compliance_checker.py +78 -0
- package/bin/skills/clinical-reports/scripts/extract_clinical_data.py +97 -0
- package/bin/skills/clinical-reports/scripts/format_adverse_events.py +97 -0
- package/bin/skills/clinical-reports/scripts/generate_report_template.py +149 -0
- package/bin/skills/clinical-reports/scripts/terminology_validator.py +126 -0
- package/bin/skills/clinical-reports/scripts/validate_case_report.py +323 -0
- package/bin/skills/clinical-reports/scripts/validate_trial_report.py +88 -0
- package/bin/skills/fireworks-ai/SKILL.md +665 -0
- package/bin/skills/generate-image/SKILL.md +178 -0
- package/bin/skills/generate-image/scripts/generate_image.py +254 -0
- package/bin/skills/groq/SKILL.md +347 -0
- package/bin/skills/hypothesis-generation/SKILL.md +293 -0
- package/bin/skills/hypothesis-generation/assets/FORMATTING_GUIDE.md +672 -0
- package/bin/skills/hypothesis-generation/assets/hypothesis_generation.sty +307 -0
- package/bin/skills/hypothesis-generation/assets/hypothesis_report_template.tex +572 -0
- package/bin/skills/hypothesis-generation/references/experimental_design_patterns.md +329 -0
- package/bin/skills/hypothesis-generation/references/hypothesis_quality_criteria.md +198 -0
- package/bin/skills/hypothesis-generation/references/literature_search_strategies.md +622 -0
- package/bin/skills/latex-posters/README.md +417 -0
- package/bin/skills/latex-posters/SKILL.md +1602 -0
- package/bin/skills/latex-posters/assets/baposter_template.tex +257 -0
- package/bin/skills/latex-posters/assets/beamerposter_template.tex +244 -0
- package/bin/skills/latex-posters/assets/poster_quality_checklist.md +358 -0
- package/bin/skills/latex-posters/assets/tikzposter_template.tex +251 -0
- package/bin/skills/latex-posters/references/latex_poster_packages.md +745 -0
- package/bin/skills/latex-posters/references/poster_content_guide.md +748 -0
- package/bin/skills/latex-posters/references/poster_design_principles.md +806 -0
- package/bin/skills/latex-posters/references/poster_layout_design.md +900 -0
- package/bin/skills/latex-posters/scripts/review_poster.sh +214 -0
- package/bin/skills/literature-review/SKILL.md +641 -0
- package/bin/skills/literature-review/assets/review_template.md +412 -0
- package/bin/skills/literature-review/references/citation_styles.md +166 -0
- package/bin/skills/literature-review/references/database_strategies.md +455 -0
- package/bin/skills/literature-review/scripts/generate_pdf.py +184 -0
- package/bin/skills/literature-review/scripts/search_databases.py +310 -0
- package/bin/skills/literature-review/scripts/verify_citations.py +218 -0
- package/bin/skills/market-research-reports/SKILL.md +904 -0
- package/bin/skills/market-research-reports/assets/FORMATTING_GUIDE.md +428 -0
- package/bin/skills/market-research-reports/assets/market_report_template.tex +1380 -0
- package/bin/skills/market-research-reports/assets/market_research.sty +564 -0
- package/bin/skills/market-research-reports/references/data_analysis_patterns.md +548 -0
- package/bin/skills/market-research-reports/references/report_structure_guide.md +999 -0
- package/bin/skills/market-research-reports/references/visual_generation_guide.md +1077 -0
- package/bin/skills/market-research-reports/scripts/generate_market_visuals.py +472 -0
- package/bin/skills/markitdown/INSTALLATION_GUIDE.md +318 -0
- package/bin/skills/markitdown/LICENSE.txt +22 -0
- package/bin/skills/markitdown/OPENROUTER_INTEGRATION.md +359 -0
- package/bin/skills/markitdown/QUICK_REFERENCE.md +309 -0
- package/bin/skills/markitdown/README.md +184 -0
- package/bin/skills/markitdown/SKILL.md +486 -0
- package/bin/skills/markitdown/SKILL_SUMMARY.md +307 -0
- package/bin/skills/markitdown/assets/example_usage.md +463 -0
- package/bin/skills/markitdown/references/api_reference.md +399 -0
- package/bin/skills/markitdown/references/file_formats.md +542 -0
- package/bin/skills/markitdown/scripts/batch_convert.py +195 -0
- package/bin/skills/markitdown/scripts/convert_literature.py +262 -0
- package/bin/skills/markitdown/scripts/convert_with_ai.py +224 -0
- package/bin/skills/ml-paper-writing/SKILL.md +937 -0
- package/bin/skills/ml-paper-writing/references/checklists.md +361 -0
- package/bin/skills/ml-paper-writing/references/citation-workflow.md +562 -0
- package/bin/skills/ml-paper-writing/references/reviewer-guidelines.md +367 -0
- package/bin/skills/ml-paper-writing/references/sources.md +159 -0
- package/bin/skills/ml-paper-writing/references/writing-guide.md +476 -0
- package/bin/skills/ml-paper-writing/templates/README.md +251 -0
- package/bin/skills/ml-paper-writing/templates/aaai2026/README.md +534 -0
- package/bin/skills/ml-paper-writing/templates/aaai2026/aaai2026-unified-supp.tex +144 -0
- package/bin/skills/ml-paper-writing/templates/aaai2026/aaai2026-unified-template.tex +952 -0
- package/bin/skills/ml-paper-writing/templates/aaai2026/aaai2026.bib +111 -0
- package/bin/skills/ml-paper-writing/templates/aaai2026/aaai2026.bst +1493 -0
- package/bin/skills/ml-paper-writing/templates/aaai2026/aaai2026.sty +315 -0
- package/bin/skills/ml-paper-writing/templates/acl/README.md +50 -0
- package/bin/skills/ml-paper-writing/templates/acl/acl.sty +312 -0
- package/bin/skills/ml-paper-writing/templates/acl/acl_latex.tex +377 -0
- package/bin/skills/ml-paper-writing/templates/acl/acl_lualatex.tex +101 -0
- package/bin/skills/ml-paper-writing/templates/acl/acl_natbib.bst +1940 -0
- package/bin/skills/ml-paper-writing/templates/acl/anthology.bib.txt +26 -0
- package/bin/skills/ml-paper-writing/templates/acl/custom.bib +70 -0
- package/bin/skills/ml-paper-writing/templates/acl/formatting.md +326 -0
- package/bin/skills/ml-paper-writing/templates/colm2025/README.md +3 -0
- package/bin/skills/ml-paper-writing/templates/colm2025/colm2025_conference.bib +11 -0
- package/bin/skills/ml-paper-writing/templates/colm2025/colm2025_conference.bst +1440 -0
- package/bin/skills/ml-paper-writing/templates/colm2025/colm2025_conference.pdf +0 -0
- package/bin/skills/ml-paper-writing/templates/colm2025/colm2025_conference.sty +218 -0
- package/bin/skills/ml-paper-writing/templates/colm2025/colm2025_conference.tex +305 -0
- package/bin/skills/ml-paper-writing/templates/colm2025/fancyhdr.sty +485 -0
- package/bin/skills/ml-paper-writing/templates/colm2025/math_commands.tex +508 -0
- package/bin/skills/ml-paper-writing/templates/colm2025/natbib.sty +1246 -0
- package/bin/skills/ml-paper-writing/templates/iclr2026/fancyhdr.sty +485 -0
- package/bin/skills/ml-paper-writing/templates/iclr2026/iclr2026_conference.bib +24 -0
- package/bin/skills/ml-paper-writing/templates/iclr2026/iclr2026_conference.bst +1440 -0
- package/bin/skills/ml-paper-writing/templates/iclr2026/iclr2026_conference.pdf +0 -0
- package/bin/skills/ml-paper-writing/templates/iclr2026/iclr2026_conference.sty +246 -0
- package/bin/skills/ml-paper-writing/templates/iclr2026/iclr2026_conference.tex +414 -0
- package/bin/skills/ml-paper-writing/templates/iclr2026/math_commands.tex +508 -0
- package/bin/skills/ml-paper-writing/templates/iclr2026/natbib.sty +1246 -0
- package/bin/skills/ml-paper-writing/templates/icml2026/algorithm.sty +79 -0
- package/bin/skills/ml-paper-writing/templates/icml2026/algorithmic.sty +201 -0
- package/bin/skills/ml-paper-writing/templates/icml2026/example_paper.bib +75 -0
- package/bin/skills/ml-paper-writing/templates/icml2026/example_paper.pdf +0 -0
- package/bin/skills/ml-paper-writing/templates/icml2026/example_paper.tex +662 -0
- package/bin/skills/ml-paper-writing/templates/icml2026/fancyhdr.sty +864 -0
- package/bin/skills/ml-paper-writing/templates/icml2026/icml2026.bst +1443 -0
- package/bin/skills/ml-paper-writing/templates/icml2026/icml2026.sty +767 -0
- package/bin/skills/ml-paper-writing/templates/icml2026/icml_numpapers.pdf +0 -0
- package/bin/skills/ml-paper-writing/templates/neurips2025/Makefile +36 -0
- package/bin/skills/ml-paper-writing/templates/neurips2025/extra_pkgs.tex +53 -0
- package/bin/skills/ml-paper-writing/templates/neurips2025/main.tex +38 -0
- package/bin/skills/ml-paper-writing/templates/neurips2025/neurips.sty +382 -0
- package/bin/skills/paper-2-web/SKILL.md +491 -0
- package/bin/skills/paper-2-web/references/installation.md +141 -0
- package/bin/skills/paper-2-web/references/paper2poster.md +346 -0
- package/bin/skills/paper-2-web/references/paper2video.md +305 -0
- package/bin/skills/paper-2-web/references/paper2web.md +187 -0
- package/bin/skills/paper-2-web/references/usage_examples.md +436 -0
- package/bin/skills/peer-review/SKILL.md +702 -0
- package/bin/skills/peer-review/references/calibration_guidelines.md +196 -0
- package/bin/skills/peer-review/references/common_issues.md +552 -0
- package/bin/skills/peer-review/references/paper_mechanics.md +269 -0
- package/bin/skills/peer-review/references/reporting_standards.md +290 -0
- package/bin/skills/peer-review/references/scoring_rubric.md +239 -0
- package/bin/skills/pptx-posters/SKILL.md +410 -0
- package/bin/skills/pptx-posters/assets/poster_html_template.html +257 -0
- package/bin/skills/pptx-posters/assets/poster_quality_checklist.md +358 -0
- package/bin/skills/pptx-posters/references/poster_content_guide.md +748 -0
- package/bin/skills/pptx-posters/references/poster_design_principles.md +806 -0
- package/bin/skills/pptx-posters/references/poster_layout_design.md +900 -0
- package/bin/skills/research-grants/README.md +285 -0
- package/bin/skills/research-grants/SKILL.md +938 -0
- package/bin/skills/research-grants/assets/budget_justification_template.md +453 -0
- package/bin/skills/research-grants/assets/nih_specific_aims_template.md +166 -0
- package/bin/skills/research-grants/assets/nsf_project_summary_template.md +92 -0
- package/bin/skills/research-grants/references/broader_impacts.md +392 -0
- package/bin/skills/research-grants/references/darpa_guidelines.md +636 -0
- package/bin/skills/research-grants/references/doe_guidelines.md +586 -0
- package/bin/skills/research-grants/references/nih_guidelines.md +851 -0
- package/bin/skills/research-grants/references/nsf_guidelines.md +570 -0
- package/bin/skills/research-grants/references/specific_aims_guide.md +458 -0
- package/bin/skills/research-lookup/README.md +156 -0
- package/bin/skills/research-lookup/SKILL.md +606 -0
- package/bin/skills/research-lookup/examples.py +174 -0
- package/bin/skills/research-lookup/lookup.py +187 -0
- package/bin/skills/research-lookup/research_lookup.py +483 -0
- package/bin/skills/research-lookup/scripts/research_lookup.py +483 -0
- package/bin/skills/scholar-evaluation/SKILL.md +289 -0
- package/bin/skills/scholar-evaluation/references/evaluation_framework.md +663 -0
- package/bin/skills/scholar-evaluation/scripts/calculate_scores.py +366 -0
- package/bin/skills/scientific-critical-thinking/SKILL.md +566 -0
- package/bin/skills/scientific-critical-thinking/references/common_biases.md +364 -0
- package/bin/skills/scientific-critical-thinking/references/evidence_hierarchy.md +484 -0
- package/bin/skills/scientific-critical-thinking/references/experimental_design.md +496 -0
- package/bin/skills/scientific-critical-thinking/references/logical_fallacies.md +478 -0
- package/bin/skills/scientific-critical-thinking/references/scientific_method.md +169 -0
- package/bin/skills/scientific-critical-thinking/references/statistical_pitfalls.md +506 -0
- package/bin/skills/scientific-schematics/QUICK_REFERENCE.md +207 -0
- package/bin/skills/scientific-schematics/README.md +327 -0
- package/bin/skills/scientific-schematics/SKILL.md +615 -0
- package/bin/skills/scientific-schematics/example_usage.sh +89 -0
- package/bin/skills/scientific-schematics/references/best_practices.md +559 -0
- package/bin/skills/scientific-schematics/scripts/generate_schematic.py +135 -0
- package/bin/skills/scientific-schematics/scripts/generate_schematic_ai.py +807 -0
- package/bin/skills/scientific-schematics/test_ai_generation.py +243 -0
- package/bin/skills/scientific-slides/SKILL.md +942 -0
- package/bin/skills/scientific-slides/assets/timing_guidelines.md +597 -0
- package/bin/skills/scientific-slides/references/data_visualization_slides.md +708 -0
- package/bin/skills/scientific-slides/references/presentation_structure.md +642 -0
- package/bin/skills/scientific-slides/references/slide_design_principles.md +849 -0
- package/bin/skills/scientific-slides/references/talk_types_guide.md +687 -0
- package/bin/skills/scientific-slides/references/visual_review_workflow.md +775 -0
- package/bin/skills/scientific-slides/scripts/generate_slide_image.py +143 -0
- package/bin/skills/scientific-slides/scripts/generate_slide_image_ai.py +748 -0
- package/bin/skills/scientific-slides/scripts/pdf_to_images.py +201 -0
- package/bin/skills/scientific-slides/scripts/slides_to_pdf.py +220 -0
- package/bin/skills/scientific-slides/scripts/validate_presentation.py +367 -0
- package/bin/skills/scientific-writing/SKILL.md +714 -0
- package/bin/skills/scientific-writing/assets/REPORT_FORMATTING_GUIDE.md +574 -0
- package/bin/skills/scientific-writing/assets/scientific_report.sty +606 -0
- package/bin/skills/scientific-writing/assets/scientific_report_template.tex +449 -0
- package/bin/skills/scientific-writing/references/citation_styles.md +720 -0
- package/bin/skills/scientific-writing/references/figures_tables.md +806 -0
- package/bin/skills/scientific-writing/references/imrad_structure.md +686 -0
- package/bin/skills/scientific-writing/references/professional_report_formatting.md +664 -0
- package/bin/skills/scientific-writing/references/reporting_guidelines.md +748 -0
- package/bin/skills/scientific-writing/references/writing_principles.md +824 -0
- package/bin/skills/tinker/SKILL.md +2 -3
- package/bin/skills/together-ai/SKILL.md +722 -0
- package/bin/skills/treatment-plans/README.md +488 -0
- package/bin/skills/treatment-plans/SKILL.md +1579 -0
- package/bin/skills/treatment-plans/assets/STYLING_QUICK_REFERENCE.md +185 -0
- package/bin/skills/treatment-plans/assets/chronic_disease_management_plan.tex +665 -0
- package/bin/skills/treatment-plans/assets/general_medical_treatment_plan.tex +547 -0
- package/bin/skills/treatment-plans/assets/medical_treatment_plan.sty +222 -0
- package/bin/skills/treatment-plans/assets/mental_health_treatment_plan.tex +774 -0
- package/bin/skills/treatment-plans/assets/one_page_treatment_plan.tex +193 -0
- package/bin/skills/treatment-plans/assets/pain_management_plan.tex +799 -0
- package/bin/skills/treatment-plans/assets/perioperative_care_plan.tex +753 -0
- package/bin/skills/treatment-plans/assets/quality_checklist.md +471 -0
- package/bin/skills/treatment-plans/assets/rehabilitation_treatment_plan.tex +756 -0
- package/bin/skills/treatment-plans/references/goal_setting_frameworks.md +411 -0
- package/bin/skills/treatment-plans/references/intervention_guidelines.md +507 -0
- package/bin/skills/treatment-plans/references/regulatory_compliance.md +476 -0
- package/bin/skills/treatment-plans/references/specialty_specific_guidelines.md +655 -0
- package/bin/skills/treatment-plans/references/treatment_plan_standards.md +485 -0
- package/bin/skills/treatment-plans/scripts/check_completeness.py +322 -0
- package/bin/skills/treatment-plans/scripts/generate_template.py +233 -0
- package/bin/skills/treatment-plans/scripts/timeline_generator.py +385 -0
- package/bin/skills/treatment-plans/scripts/validate_treatment_plan.py +369 -0
- package/bin/skills/unsloth/SKILL.md +565 -47
- package/bin/skills/unsloth/docs/advanced-rl.md +222 -0
- package/bin/skills/unsloth/docs/chat-templates.md +141 -0
- package/bin/skills/unsloth/docs/datasets.md +489 -0
- package/bin/skills/unsloth/docs/docker-extended.md +99 -0
- package/bin/skills/unsloth/docs/dynamic-ggufs-2.0.md +116 -0
- package/bin/skills/unsloth/docs/dynamic-ggufs-aider.md +118 -0
- package/bin/skills/unsloth/docs/faq.md +91 -0
- package/bin/skills/unsloth/docs/fp16-vs-bf16.md +61 -0
- package/bin/skills/unsloth/docs/fp8-rl.md +224 -0
- package/bin/skills/unsloth/docs/glm-4.7-flash.md +997 -0
- package/bin/skills/unsloth/docs/inference-deployment-overview.md +17 -0
- package/bin/skills/unsloth/docs/inference.md +27 -0
- package/bin/skills/unsloth/docs/installation-docker.md +155 -0
- package/bin/skills/unsloth/docs/installation-pip.md +148 -0
- package/bin/skills/unsloth/docs/kernels-packing.md +190 -0
- package/bin/skills/unsloth/docs/kimi-k2.5.md +634 -0
- package/bin/skills/unsloth/docs/lm-studio.md +235 -0
- package/bin/skills/unsloth/docs/lora-hot-swapping.md +75 -0
- package/bin/skills/unsloth/docs/lora-hyperparameters.md +363 -0
- package/bin/skills/unsloth/docs/memory-efficient-rl.md +267 -0
- package/bin/skills/unsloth/docs/model-selection.md +70 -0
- package/bin/skills/unsloth/docs/models.md +532 -0
- package/bin/skills/unsloth/docs/multi-gpu-ddp.md +90 -0
- package/bin/skills/unsloth/docs/notebooks.md +223 -0
- package/bin/skills/unsloth/docs/overview.md +110 -0
- package/bin/skills/unsloth/docs/qwen3-coder-next-extended.md +900 -0
- package/bin/skills/unsloth/docs/qwen3-coder-next.md +900 -0
- package/bin/skills/unsloth/docs/requirements.md +45 -0
- package/bin/skills/unsloth/docs/reward-hacking.md +25 -0
- package/bin/skills/unsloth/docs/saving-to-gguf.md +138 -0
- package/bin/skills/unsloth/docs/saving-to-ollama.md +46 -0
- package/bin/skills/unsloth/docs/sglang-guide.md +278 -0
- package/bin/skills/unsloth/docs/speculative-decoding.md +70 -0
- package/bin/skills/unsloth/docs/tool-calling.md +334 -0
- package/bin/skills/unsloth/docs/troubleshooting-faq.md +204 -0
- package/bin/skills/unsloth/docs/troubleshooting-inference.md +26 -0
- package/bin/skills/unsloth/docs/tts-fine-tuning.md +149 -0
- package/bin/skills/unsloth/docs/tutorial-grpo.md +273 -0
- package/bin/skills/unsloth/docs/tutorial-llama3-ollama.md +356 -0
- package/bin/skills/unsloth/docs/vision-fine-tuning.md +135 -0
- package/bin/skills/unsloth/docs/vision-rl.md +170 -0
- package/bin/skills/unsloth/docs/vllm-engine-arguments.md +43 -0
- package/bin/skills/unsloth/docs/vllm-guide.md +98 -0
- package/bin/skills/venue-templates/SKILL.md +686 -0
- package/bin/skills/venue-templates/assets/examples/cell_summary_example.md +247 -0
- package/bin/skills/venue-templates/assets/examples/medical_structured_abstract.md +313 -0
- package/bin/skills/venue-templates/assets/examples/nature_abstract_examples.md +213 -0
- package/bin/skills/venue-templates/assets/examples/neurips_introduction_example.md +245 -0
- package/bin/skills/venue-templates/assets/grants/nih_specific_aims.tex +235 -0
- package/bin/skills/venue-templates/assets/grants/nsf_proposal_template.tex +375 -0
- package/bin/skills/venue-templates/assets/journals/nature_article.tex +171 -0
- package/bin/skills/venue-templates/assets/journals/neurips_article.tex +283 -0
- package/bin/skills/venue-templates/assets/journals/plos_one.tex +317 -0
- package/bin/skills/venue-templates/assets/posters/beamerposter_academic.tex +311 -0
- package/bin/skills/venue-templates/references/cell_press_style.md +483 -0
- package/bin/skills/venue-templates/references/conferences_formatting.md +564 -0
- package/bin/skills/venue-templates/references/cs_conference_style.md +463 -0
- package/bin/skills/venue-templates/references/grants_requirements.md +787 -0
- package/bin/skills/venue-templates/references/journals_formatting.md +486 -0
- package/bin/skills/venue-templates/references/medical_journal_styles.md +535 -0
- package/bin/skills/venue-templates/references/ml_conference_style.md +556 -0
- package/bin/skills/venue-templates/references/nature_science_style.md +405 -0
- package/bin/skills/venue-templates/references/posters_guidelines.md +628 -0
- package/bin/skills/venue-templates/references/reviewer_expectations.md +417 -0
- package/bin/skills/venue-templates/references/venue_writing_styles.md +321 -0
- package/bin/skills/venue-templates/scripts/customize_template.py +195 -0
- package/bin/skills/venue-templates/scripts/query_template.py +266 -0
- package/bin/skills/venue-templates/scripts/validate_format.py +250 -0
- package/bin/synsc +0 -0
- package/package.json +1 -1
- package/bin/skills/unsloth/references/index.md +0 -7
- package/bin/skills/unsloth/references/llms-full.md +0 -16799
- package/bin/skills/unsloth/references/llms-txt.md +0 -12044
- package/bin/skills/unsloth/references/llms.md +0 -82
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
FIGURES_FOLDER := figures
|
|
2
|
+
PDFS := \
|
|
3
|
+
$(filter-out $(wildcard $(FIGURES_FOLDER)/*-crop.pdf),$(wildcard $(FIGURES_FOLDER)/*.pdf)) \
|
|
4
|
+
$(filter-out $(wildcard $(FIGURES_FOLDER)/**/*-crop.pdf),$(wildcard $(FIGURES_FOLDER)/**/*.pdf))
|
|
5
|
+
CROPPED_PDFS := $(PDFS:.pdf=-crop.pdf)
|
|
6
|
+
|
|
7
|
+
all: main.pdf
|
|
8
|
+
|
|
9
|
+
%.pdf: %.tex Makefile $(CROPPED_PDFS)
|
|
10
|
+
pdflatex -synctex=1 -interaction=nonstopmode $<
|
|
11
|
+
-bibtex $*.aux
|
|
12
|
+
pdflatex -synctex=1 -interaction=nonstopmode $<
|
|
13
|
+
pdflatex -synctex=1 -interaction=nonstopmode $<
|
|
14
|
+
|
|
15
|
+
.PHONY: figures
|
|
16
|
+
figures: $(CROPPED_PDFS)
|
|
17
|
+
|
|
18
|
+
.PRECIOUS: $(CROPPED_PDFS)
|
|
19
|
+
%-crop.pdf: %.pdf Makefile
|
|
20
|
+
pdfcrop $<
|
|
21
|
+
|
|
22
|
+
.PHONY: clean upgrade
|
|
23
|
+
clean:
|
|
24
|
+
find . -maxdepth 1 \
|
|
25
|
+
\( -name "*.aux" -o -name "*.bbl" -o -name "*.blg" -o \
|
|
26
|
+
-name "*.log" -o -name "*.out" -o -name "*.pdf" -o \
|
|
27
|
+
-name "*.synctex.gz" \) | xargs $(RM)
|
|
28
|
+
find $(FIGURES_FOLDER) -name "*-crop.pdf" | xargs $(RM)
|
|
29
|
+
|
|
30
|
+
YEAR := 2025
|
|
31
|
+
|
|
32
|
+
upgrade:
|
|
33
|
+
curl -O https://media.neurips.cc/Conferences/NeurIPS$(YEAR)/Styles.zip
|
|
34
|
+
unzip -u Styles.zip
|
|
35
|
+
mv Styles/neurips_${YEAR}.sty neurips.sty
|
|
36
|
+
$(RM) -r Styles.zip Styles
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
\usepackage[export]{adjustbox}
|
|
2
|
+
\usepackage[ruled]{algorithm2e}
|
|
3
|
+
\usepackage[inline, shortlabels]{enumitem}
|
|
4
|
+
\usepackage[T1]{fontenc}
|
|
5
|
+
\usepackage{hyperref}
|
|
6
|
+
\usepackage{microtype}
|
|
7
|
+
\usepackage{pifont}
|
|
8
|
+
\usepackage{xcolor}
|
|
9
|
+
\usepackage{xurl}
|
|
10
|
+
% Figures and Tables
|
|
11
|
+
\usepackage{graphicx}
|
|
12
|
+
\usepackage{booktabs}
|
|
13
|
+
\usepackage{tabularray}
|
|
14
|
+
% Monospaced Code Blocks
|
|
15
|
+
\usepackage{listings}
|
|
16
|
+
% Math Packages
|
|
17
|
+
\usepackage{amsmath, amsfonts}
|
|
18
|
+
\usepackage{nicefrac}
|
|
19
|
+
|
|
20
|
+
\UseTblrLibrary{booktabs}
|
|
21
|
+
|
|
22
|
+
\lstset{
|
|
23
|
+
backgroundcolor=\color{white}, % choose the background color; you must add \usepackage{color} or \usepackage{xcolor}; should come as last argument
|
|
24
|
+
basicstyle=\ttfamily, % the size of the fonts that are used for the code
|
|
25
|
+
breakatwhitespace=false, % sets if automatic breaks should only happen at whitespace
|
|
26
|
+
breaklines=true, % sets automatic line breaking
|
|
27
|
+
captionpos=b, % sets the caption-position to bottom
|
|
28
|
+
columns=fullflexible, % reduce the column spacing
|
|
29
|
+
commentstyle=\color{gray}, % comment style
|
|
30
|
+
deletekeywords={}, % if you want to delete keywords from the given language
|
|
31
|
+
escapeinside={\%*}{*)}, % if you want to add LaTeX within your code
|
|
32
|
+
extendedchars=true, % lets you use non-ASCII characters; for 8-bits encodings only, does not work with UTF-8
|
|
33
|
+
frame=none, % adds no frame around the code
|
|
34
|
+
keepspaces=true, % keeps spaces in text, useful for keeping indentation of code (possibly needs columns=flexible)
|
|
35
|
+
keywordstyle=\color{blue}, % keyword style
|
|
36
|
+
language=C++, % the language of the code
|
|
37
|
+
morekeywords={}, % if you want to add more keywords to the set
|
|
38
|
+
numbers=none, % where to put the line-numbers; possible values are (none, left, right)
|
|
39
|
+
numbersep=5pt, % how far the line-numbers are from the code
|
|
40
|
+
numberstyle=\color{black}, % the style that is used for the line-numbers
|
|
41
|
+
rulecolor=\color{black}, % if not set, the frame-color may be changed on line-breaks within not-black text (e.g. comments (green here))
|
|
42
|
+
showspaces=false, % show spaces everywhere adding particular underscores; it overrides 'showstringspaces'
|
|
43
|
+
showstringspaces=false, % underline spaces within strings only
|
|
44
|
+
showtabs=false, % show tabs within strings adding particular underscores
|
|
45
|
+
stepnumber=1, % the step between two line-numbers. If it's 1, each line will be numbered
|
|
46
|
+
stringstyle=\color{red}, % string literal style
|
|
47
|
+
tabsize=4, % sets default tabsize to 4 spaces
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
\makeatletter
|
|
51
|
+
\newcommand{\ssymbol}[1]{\@fnsymbol{#1}}
|
|
52
|
+
\newcommand{\romanNumeral}[1]{\expandafter\@slowromancap\romannumeral #1@}
|
|
53
|
+
\makeatother
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
\documentclass{article}
|
|
2
|
+
|
|
3
|
+
\usepackage[nonatbib, final]{neurips}
|
|
4
|
+
\usepackage[numbers]{natbib}
|
|
5
|
+
|
|
6
|
+
\makeatletter
|
|
7
|
+
\renewcommand{\@noticestring}{
|
|
8
|
+
\centering
|
|
9
|
+
|
|
10
|
+
}
|
|
11
|
+
\makeatother
|
|
12
|
+
|
|
13
|
+
\input{extra_pkgs}
|
|
14
|
+
|
|
15
|
+
\usepackage{physics}
|
|
16
|
+
\usepackage{mathtools}
|
|
17
|
+
\DeclarePairedDelimiter\p{(}{)}
|
|
18
|
+
\DeclarePairedDelimiter\n{|}{|}
|
|
19
|
+
\DeclarePairedDelimiter\B{[}{]}
|
|
20
|
+
|
|
21
|
+
\title{}
|
|
22
|
+
|
|
23
|
+
\author{
|
|
24
|
+
Bojian Zheng \\
|
|
25
|
+
University of Toronto \\
|
|
26
|
+
\href{mailto:bojian@cs.toronto.edu}{bojian@cs.toronto.edu}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
\begin{document}
|
|
30
|
+
|
|
31
|
+
\maketitle
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
% \bibliographystyle{plainnat}
|
|
36
|
+
% \bibliography{bibliography}
|
|
37
|
+
|
|
38
|
+
\end{document}
|
|
@@ -0,0 +1,382 @@
|
|
|
1
|
+
% partial rewrite of the LaTeX2e package for submissions to the
|
|
2
|
+
% Conference on Neural Information Processing Systems (NeurIPS):
|
|
3
|
+
%
|
|
4
|
+
% - uses more LaTeX conventions
|
|
5
|
+
% - line numbers at submission time replaced with aligned numbers from
|
|
6
|
+
% lineno package
|
|
7
|
+
% - \nipsfinalcopy replaced with [final] package option
|
|
8
|
+
% - automatically loads times package for authors
|
|
9
|
+
% - loads natbib automatically; this can be suppressed with the
|
|
10
|
+
% [nonatbib] package option
|
|
11
|
+
% - adds foot line to first page identifying the conference
|
|
12
|
+
% - adds preprint option for submission to e.g. arXiv
|
|
13
|
+
% - conference acronym modified
|
|
14
|
+
%
|
|
15
|
+
% Roman Garnett (garnett@wustl.edu) and the many authors of
|
|
16
|
+
% nips15submit_e.sty, including MK and drstrip@sandia
|
|
17
|
+
%
|
|
18
|
+
% last revision: April 2025
|
|
19
|
+
|
|
20
|
+
\NeedsTeXFormat{LaTeX2e}
|
|
21
|
+
\ProvidesPackage{neurips_2025}[2025/04/02 NeurIPS 2025 submission/camera-ready style file]
|
|
22
|
+
|
|
23
|
+
% declare final option, which creates camera-ready copy
|
|
24
|
+
\newif\if@neuripsfinal\@neuripsfinalfalse
|
|
25
|
+
\DeclareOption{final}{
|
|
26
|
+
\@neuripsfinaltrue
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
% declare nonatbib option, which does not load natbib in case of
|
|
30
|
+
% package clash (users can pass options to natbib via
|
|
31
|
+
% \PassOptionsToPackage)
|
|
32
|
+
\newif\if@natbib\@natbibtrue
|
|
33
|
+
\DeclareOption{nonatbib}{
|
|
34
|
+
\@natbibfalse
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
% declare preprint option, which creates a preprint version ready for
|
|
38
|
+
% upload to, e.g., arXiv
|
|
39
|
+
\newif\if@preprint\@preprintfalse
|
|
40
|
+
\DeclareOption{preprint}{
|
|
41
|
+
\@preprinttrue
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
\ProcessOptions\relax
|
|
45
|
+
|
|
46
|
+
% determine whether this is an anonymized submission
|
|
47
|
+
\newif\if@submission\@submissiontrue
|
|
48
|
+
\if@neuripsfinal\@submissionfalse\fi
|
|
49
|
+
\if@preprint\@submissionfalse\fi
|
|
50
|
+
|
|
51
|
+
% fonts
|
|
52
|
+
\renewcommand{\rmdefault}{ptm}
|
|
53
|
+
\renewcommand{\sfdefault}{phv}
|
|
54
|
+
|
|
55
|
+
% change this every year for notice string at bottom
|
|
56
|
+
\newcommand{\@neuripsordinal}{39th}
|
|
57
|
+
\newcommand{\@neuripsyear}{2025}
|
|
58
|
+
\newcommand{\@neuripslocation}{San Diego}
|
|
59
|
+
|
|
60
|
+
% acknowledgments
|
|
61
|
+
\usepackage{environ}
|
|
62
|
+
\newcommand{\acksection}{\section*{Acknowledgments and Disclosure of Funding}}
|
|
63
|
+
\NewEnviron{ack}{%
|
|
64
|
+
\acksection
|
|
65
|
+
\BODY
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
% load natbib unless told otherwise
|
|
70
|
+
\if@natbib
|
|
71
|
+
\RequirePackage{natbib}
|
|
72
|
+
\fi
|
|
73
|
+
|
|
74
|
+
% set page geometry
|
|
75
|
+
\usepackage[verbose=true,letterpaper]{geometry}
|
|
76
|
+
\AtBeginDocument{
|
|
77
|
+
\newgeometry{
|
|
78
|
+
textheight=9in,
|
|
79
|
+
textwidth=5.5in,
|
|
80
|
+
top=1in,
|
|
81
|
+
headheight=12pt,
|
|
82
|
+
headsep=25pt,
|
|
83
|
+
footskip=30pt
|
|
84
|
+
}
|
|
85
|
+
\@ifpackageloaded{fullpage}
|
|
86
|
+
{\PackageWarning{neurips_2025}{fullpage package not allowed! Overwriting formatting.}}
|
|
87
|
+
{}
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
\widowpenalty=10000
|
|
91
|
+
\clubpenalty=10000
|
|
92
|
+
\flushbottom
|
|
93
|
+
\sloppy
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
% font sizes with reduced leading
|
|
97
|
+
\renewcommand{\normalsize}{%
|
|
98
|
+
\@setfontsize\normalsize\@xpt\@xipt
|
|
99
|
+
\abovedisplayskip 7\p@ \@plus 2\p@ \@minus 5\p@
|
|
100
|
+
\abovedisplayshortskip \z@ \@plus 3\p@
|
|
101
|
+
\belowdisplayskip \abovedisplayskip
|
|
102
|
+
\belowdisplayshortskip 4\p@ \@plus 3\p@ \@minus 3\p@
|
|
103
|
+
}
|
|
104
|
+
\normalsize
|
|
105
|
+
\renewcommand{\small}{%
|
|
106
|
+
\@setfontsize\small\@ixpt\@xpt
|
|
107
|
+
\abovedisplayskip 6\p@ \@plus 1.5\p@ \@minus 4\p@
|
|
108
|
+
\abovedisplayshortskip \z@ \@plus 2\p@
|
|
109
|
+
\belowdisplayskip \abovedisplayskip
|
|
110
|
+
\belowdisplayshortskip 3\p@ \@plus 2\p@ \@minus 2\p@
|
|
111
|
+
}
|
|
112
|
+
\renewcommand{\footnotesize}{\@setfontsize\footnotesize\@ixpt\@xpt}
|
|
113
|
+
\renewcommand{\scriptsize}{\@setfontsize\scriptsize\@viipt\@viiipt}
|
|
114
|
+
\renewcommand{\tiny}{\@setfontsize\tiny\@vipt\@viipt}
|
|
115
|
+
\renewcommand{\large}{\@setfontsize\large\@xiipt{14}}
|
|
116
|
+
\renewcommand{\Large}{\@setfontsize\Large\@xivpt{16}}
|
|
117
|
+
\renewcommand{\LARGE}{\@setfontsize\LARGE\@xviipt{20}}
|
|
118
|
+
\renewcommand{\huge}{\@setfontsize\huge\@xxpt{23}}
|
|
119
|
+
\renewcommand{\Huge}{\@setfontsize\Huge\@xxvpt{28}}
|
|
120
|
+
|
|
121
|
+
% sections with less space
|
|
122
|
+
\providecommand{\section}{}
|
|
123
|
+
\renewcommand{\section}{%
|
|
124
|
+
\@startsection{section}{1}{\z@}%
|
|
125
|
+
{-2.0ex \@plus -0.5ex \@minus -0.2ex}%
|
|
126
|
+
{ 1.5ex \@plus 0.3ex \@minus 0.2ex}%
|
|
127
|
+
{\large\bf\raggedright}%
|
|
128
|
+
}
|
|
129
|
+
\providecommand{\subsection}{}
|
|
130
|
+
\renewcommand{\subsection}{%
|
|
131
|
+
\@startsection{subsection}{2}{\z@}%
|
|
132
|
+
{-1.8ex \@plus -0.5ex \@minus -0.2ex}%
|
|
133
|
+
{ 0.8ex \@plus 0.2ex}%
|
|
134
|
+
{\normalsize\bf\raggedright}%
|
|
135
|
+
}
|
|
136
|
+
\providecommand{\subsubsection}{}
|
|
137
|
+
\renewcommand{\subsubsection}{%
|
|
138
|
+
\@startsection{subsubsection}{3}{\z@}%
|
|
139
|
+
{-1.5ex \@plus -0.5ex \@minus -0.2ex}%
|
|
140
|
+
{ 0.5ex \@plus 0.2ex}%
|
|
141
|
+
{\normalsize\bf\raggedright}%
|
|
142
|
+
}
|
|
143
|
+
\providecommand{\paragraph}{}
|
|
144
|
+
\renewcommand{\paragraph}{%
|
|
145
|
+
\@startsection{paragraph}{4}{\z@}%
|
|
146
|
+
{1.5ex \@plus 0.5ex \@minus 0.2ex}%
|
|
147
|
+
{-1em}%
|
|
148
|
+
{\normalsize\bf}%
|
|
149
|
+
}
|
|
150
|
+
\providecommand{\subparagraph}{}
|
|
151
|
+
\renewcommand{\subparagraph}{%
|
|
152
|
+
\@startsection{subparagraph}{5}{\z@}%
|
|
153
|
+
{1.5ex \@plus 0.5ex \@minus 0.2ex}%
|
|
154
|
+
{-1em}%
|
|
155
|
+
{\normalsize\bf}%
|
|
156
|
+
}
|
|
157
|
+
\providecommand{\subsubsubsection}{}
|
|
158
|
+
\renewcommand{\subsubsubsection}{%
|
|
159
|
+
\vskip5pt{\noindent\normalsize\rm\raggedright}%
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
% float placement
|
|
163
|
+
\renewcommand{\topfraction }{0.85}
|
|
164
|
+
\renewcommand{\bottomfraction }{0.4}
|
|
165
|
+
\renewcommand{\textfraction }{0.1}
|
|
166
|
+
\renewcommand{\floatpagefraction}{0.7}
|
|
167
|
+
|
|
168
|
+
\newlength{\@neuripsabovecaptionskip}\setlength{\@neuripsabovecaptionskip}{7\p@}
|
|
169
|
+
\newlength{\@neuripsbelowcaptionskip}\setlength{\@neuripsbelowcaptionskip}{\z@}
|
|
170
|
+
|
|
171
|
+
\setlength{\abovecaptionskip}{\@neuripsabovecaptionskip}
|
|
172
|
+
\setlength{\belowcaptionskip}{\@neuripsbelowcaptionskip}
|
|
173
|
+
|
|
174
|
+
% swap above/belowcaptionskip lengths for tables
|
|
175
|
+
\renewenvironment{table}
|
|
176
|
+
{\setlength{\abovecaptionskip}{\@neuripsbelowcaptionskip}%
|
|
177
|
+
\setlength{\belowcaptionskip}{\@neuripsabovecaptionskip}%
|
|
178
|
+
\@float{table}}
|
|
179
|
+
{\end@float}
|
|
180
|
+
|
|
181
|
+
% footnote formatting
|
|
182
|
+
\setlength{\footnotesep }{6.65\p@}
|
|
183
|
+
\setlength{\skip\footins}{9\p@ \@plus 4\p@ \@minus 2\p@}
|
|
184
|
+
\renewcommand{\footnoterule}{\kern-3\p@ \hrule width 12pc \kern 2.6\p@}
|
|
185
|
+
\setcounter{footnote}{0}
|
|
186
|
+
|
|
187
|
+
% paragraph formatting
|
|
188
|
+
\setlength{\parindent}{\z@}
|
|
189
|
+
\setlength{\parskip }{5.5\p@}
|
|
190
|
+
|
|
191
|
+
% list formatting
|
|
192
|
+
\setlength{\topsep }{4\p@ \@plus 1\p@ \@minus 2\p@}
|
|
193
|
+
\setlength{\partopsep }{1\p@ \@plus 0.5\p@ \@minus 0.5\p@}
|
|
194
|
+
\setlength{\itemsep }{2\p@ \@plus 1\p@ \@minus 0.5\p@}
|
|
195
|
+
\setlength{\parsep }{2\p@ \@plus 1\p@ \@minus 0.5\p@}
|
|
196
|
+
\setlength{\leftmargin }{3pc}
|
|
197
|
+
\setlength{\leftmargini }{\leftmargin}
|
|
198
|
+
\setlength{\leftmarginii }{2em}
|
|
199
|
+
\setlength{\leftmarginiii}{1.5em}
|
|
200
|
+
\setlength{\leftmarginiv }{1.0em}
|
|
201
|
+
\setlength{\leftmarginv }{0.5em}
|
|
202
|
+
\def\@listi {\leftmargin\leftmargini}
|
|
203
|
+
\def\@listii {\leftmargin\leftmarginii
|
|
204
|
+
\labelwidth\leftmarginii
|
|
205
|
+
\advance\labelwidth-\labelsep
|
|
206
|
+
\topsep 2\p@ \@plus 1\p@ \@minus 0.5\p@
|
|
207
|
+
\parsep 1\p@ \@plus 0.5\p@ \@minus 0.5\p@
|
|
208
|
+
\itemsep \parsep}
|
|
209
|
+
\def\@listiii{\leftmargin\leftmarginiii
|
|
210
|
+
\labelwidth\leftmarginiii
|
|
211
|
+
\advance\labelwidth-\labelsep
|
|
212
|
+
\topsep 1\p@ \@plus 0.5\p@ \@minus 0.5\p@
|
|
213
|
+
\parsep \z@
|
|
214
|
+
\partopsep 0.5\p@ \@plus 0\p@ \@minus 0.5\p@
|
|
215
|
+
\itemsep \topsep}
|
|
216
|
+
\def\@listiv {\leftmargin\leftmarginiv
|
|
217
|
+
\labelwidth\leftmarginiv
|
|
218
|
+
\advance\labelwidth-\labelsep}
|
|
219
|
+
\def\@listv {\leftmargin\leftmarginv
|
|
220
|
+
\labelwidth\leftmarginv
|
|
221
|
+
\advance\labelwidth-\labelsep}
|
|
222
|
+
\def\@listvi {\leftmargin\leftmarginvi
|
|
223
|
+
\labelwidth\leftmarginvi
|
|
224
|
+
\advance\labelwidth-\labelsep}
|
|
225
|
+
|
|
226
|
+
% create title
|
|
227
|
+
\providecommand{\maketitle}{}
|
|
228
|
+
\renewcommand{\maketitle}{%
|
|
229
|
+
\par
|
|
230
|
+
\begingroup
|
|
231
|
+
\renewcommand{\thefootnote}{\fnsymbol{footnote}}
|
|
232
|
+
% for perfect author name centering
|
|
233
|
+
\renewcommand{\@makefnmark}{\hbox to \z@{$^{\@thefnmark}$\hss}}
|
|
234
|
+
% The footnote-mark was overlapping the footnote-text,
|
|
235
|
+
% added the following to fix this problem (MK)
|
|
236
|
+
\long\def\@makefntext##1{%
|
|
237
|
+
\parindent 1em\noindent
|
|
238
|
+
\hbox to 1.8em{\hss $\m@th ^{\@thefnmark}$}##1
|
|
239
|
+
}
|
|
240
|
+
\thispagestyle{empty}
|
|
241
|
+
\@maketitle
|
|
242
|
+
\@thanks
|
|
243
|
+
\@notice
|
|
244
|
+
\endgroup
|
|
245
|
+
\let\maketitle\relax
|
|
246
|
+
\let\thanks\relax
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
% rules for title box at top of first page
|
|
250
|
+
\newcommand{\@toptitlebar}{
|
|
251
|
+
\hrule height 4\p@
|
|
252
|
+
\vskip 0.25in
|
|
253
|
+
\vskip -\parskip%
|
|
254
|
+
}
|
|
255
|
+
\newcommand{\@bottomtitlebar}{
|
|
256
|
+
\vskip 0.29in
|
|
257
|
+
\vskip -\parskip
|
|
258
|
+
\hrule height 1\p@
|
|
259
|
+
\vskip 0.09in%
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
% create title (includes both anonymized and non-anonymized versions)
|
|
263
|
+
\providecommand{\@maketitle}{}
|
|
264
|
+
\renewcommand{\@maketitle}{%
|
|
265
|
+
\vbox{%
|
|
266
|
+
\hsize\textwidth
|
|
267
|
+
\linewidth\hsize
|
|
268
|
+
\vskip 0.1in
|
|
269
|
+
\@toptitlebar
|
|
270
|
+
\centering
|
|
271
|
+
{\LARGE\bf \@title\par}
|
|
272
|
+
\@bottomtitlebar
|
|
273
|
+
\if@submission
|
|
274
|
+
\begin{tabular}[t]{c}\bf\rule{\z@}{24\p@}
|
|
275
|
+
Anonymous Author(s) \\
|
|
276
|
+
Affiliation \\
|
|
277
|
+
Address \\
|
|
278
|
+
\texttt{email} \\
|
|
279
|
+
\end{tabular}%
|
|
280
|
+
\else
|
|
281
|
+
\def\And{%
|
|
282
|
+
\end{tabular}\hfil\linebreak[0]\hfil%
|
|
283
|
+
\begin{tabular}[t]{c}\bf\rule{\z@}{24\p@}\ignorespaces%
|
|
284
|
+
}
|
|
285
|
+
\def\AND{%
|
|
286
|
+
\end{tabular}\hfil\linebreak[4]\hfil%
|
|
287
|
+
\begin{tabular}[t]{c}\bf\rule{\z@}{24\p@}\ignorespaces%
|
|
288
|
+
}
|
|
289
|
+
\begin{tabular}[t]{c}\bf\rule{\z@}{24\p@}\@author\end{tabular}%
|
|
290
|
+
\fi
|
|
291
|
+
\vskip 0.3in \@minus 0.1in
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
% add conference notice to bottom of first page
|
|
296
|
+
\newcommand{\ftype@noticebox}{8}
|
|
297
|
+
\newcommand{\@notice}{%
|
|
298
|
+
% give a bit of extra room back to authors on first page
|
|
299
|
+
\enlargethispage{2\baselineskip}%
|
|
300
|
+
\@float{noticebox}[b]%
|
|
301
|
+
\footnotesize\@noticestring%
|
|
302
|
+
\end@float%
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
% abstract styling
|
|
306
|
+
\renewenvironment{abstract}%
|
|
307
|
+
{%
|
|
308
|
+
\vskip 0.075in%
|
|
309
|
+
\centerline%
|
|
310
|
+
{\large\bf Abstract}%
|
|
311
|
+
\vspace{0.5ex}%
|
|
312
|
+
\begin{quote}%
|
|
313
|
+
}
|
|
314
|
+
{
|
|
315
|
+
\par%
|
|
316
|
+
\end{quote}%
|
|
317
|
+
\vskip 1ex%
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
% For the paper checklist
|
|
321
|
+
\newcommand{\answerYes}[1][]{\textcolor{blue}{[Yes] #1}}
|
|
322
|
+
\newcommand{\answerNo}[1][]{\textcolor{orange}{[No] #1}}
|
|
323
|
+
\newcommand{\answerNA}[1][]{\textcolor{gray}{[NA] #1}}
|
|
324
|
+
\newcommand{\answerTODO}[1][]{\textcolor{red}{\bf [TODO]}}
|
|
325
|
+
\newcommand{\justificationTODO}[1][]{\textcolor{red}{\bf [TODO]}}
|
|
326
|
+
|
|
327
|
+
% handle tweaks for camera-ready copy vs. submission copy
|
|
328
|
+
\if@preprint
|
|
329
|
+
\newcommand{\@noticestring}{%
|
|
330
|
+
Preprint. Under review.%
|
|
331
|
+
}
|
|
332
|
+
\else
|
|
333
|
+
\if@neuripsfinal
|
|
334
|
+
\newcommand{\@noticestring}{%
|
|
335
|
+
\@neuripsordinal\/ Conference on Neural Information Processing Systems
|
|
336
|
+
(NeurIPS \@neuripsyear).%, \@neuripslocation.%
|
|
337
|
+
}
|
|
338
|
+
\else
|
|
339
|
+
\newcommand{\@noticestring}{%
|
|
340
|
+
Submitted to \@neuripsordinal\/ Conference on Neural Information
|
|
341
|
+
Processing Systems (NeurIPS \@neuripsyear). Do not distribute.%
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
% hide the acknowledgements
|
|
345
|
+
\NewEnviron{hide}{}
|
|
346
|
+
\let\ack\hide
|
|
347
|
+
\let\endack\endhide
|
|
348
|
+
|
|
349
|
+
% line numbers for submission
|
|
350
|
+
\RequirePackage{lineno}
|
|
351
|
+
\linenumbers
|
|
352
|
+
|
|
353
|
+
% fix incompatibilities between lineno and amsmath, if required, by
|
|
354
|
+
% transparently wrapping linenomath environments around amsmath
|
|
355
|
+
% environments
|
|
356
|
+
\AtBeginDocument{%
|
|
357
|
+
\@ifpackageloaded{amsmath}{%
|
|
358
|
+
\newcommand*\patchAmsMathEnvironmentForLineno[1]{%
|
|
359
|
+
\expandafter\let\csname old#1\expandafter\endcsname\csname #1\endcsname
|
|
360
|
+
\expandafter\let\csname oldend#1\expandafter\endcsname\csname end#1\endcsname
|
|
361
|
+
\renewenvironment{#1}%
|
|
362
|
+
{\linenomath\csname old#1\endcsname}%
|
|
363
|
+
{\csname oldend#1\endcsname\endlinenomath}%
|
|
364
|
+
}%
|
|
365
|
+
\newcommand*\patchBothAmsMathEnvironmentsForLineno[1]{%
|
|
366
|
+
\patchAmsMathEnvironmentForLineno{#1}%
|
|
367
|
+
\patchAmsMathEnvironmentForLineno{#1*}%
|
|
368
|
+
}%
|
|
369
|
+
\patchBothAmsMathEnvironmentsForLineno{equation}%
|
|
370
|
+
\patchBothAmsMathEnvironmentsForLineno{align}%
|
|
371
|
+
\patchBothAmsMathEnvironmentsForLineno{flalign}%
|
|
372
|
+
\patchBothAmsMathEnvironmentsForLineno{alignat}%
|
|
373
|
+
\patchBothAmsMathEnvironmentsForLineno{gather}%
|
|
374
|
+
\patchBothAmsMathEnvironmentsForLineno{multline}%
|
|
375
|
+
}
|
|
376
|
+
{}
|
|
377
|
+
}
|
|
378
|
+
\fi
|
|
379
|
+
\fi
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
\endinput
|