@synsci/cli-darwin-x64 1.1.70 → 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.
Files changed (339) hide show
  1. package/bin/skills/citation-management/SKILL.md +1109 -0
  2. package/bin/skills/citation-management/assets/bibtex_template.bib +264 -0
  3. package/bin/skills/citation-management/assets/citation_checklist.md +386 -0
  4. package/bin/skills/citation-management/references/bibtex_formatting.md +908 -0
  5. package/bin/skills/citation-management/references/citation_validation.md +794 -0
  6. package/bin/skills/citation-management/references/google_scholar_search.md +725 -0
  7. package/bin/skills/citation-management/references/metadata_extraction.md +870 -0
  8. package/bin/skills/citation-management/references/pubmed_search.md +839 -0
  9. package/bin/skills/citation-management/scripts/doi_to_bibtex.py +182 -0
  10. package/bin/skills/citation-management/scripts/extract_metadata.py +570 -0
  11. package/bin/skills/citation-management/scripts/format_bibtex.py +349 -0
  12. package/bin/skills/citation-management/scripts/search_google_scholar.py +251 -0
  13. package/bin/skills/citation-management/scripts/search_pubmed.py +348 -0
  14. package/bin/skills/citation-management/scripts/validate_citations.py +494 -0
  15. package/bin/skills/clinical-decision-support/README.md +129 -0
  16. package/bin/skills/clinical-decision-support/SKILL.md +506 -0
  17. package/bin/skills/clinical-decision-support/assets/biomarker_report_template.tex +380 -0
  18. package/bin/skills/clinical-decision-support/assets/clinical_pathway_template.tex +222 -0
  19. package/bin/skills/clinical-decision-support/assets/cohort_analysis_template.tex +359 -0
  20. package/bin/skills/clinical-decision-support/assets/color_schemes.tex +149 -0
  21. package/bin/skills/clinical-decision-support/assets/example_gbm_cohort.md +208 -0
  22. package/bin/skills/clinical-decision-support/assets/recommendation_strength_guide.md +328 -0
  23. package/bin/skills/clinical-decision-support/assets/treatment_recommendation_template.tex +529 -0
  24. package/bin/skills/clinical-decision-support/references/biomarker_classification.md +719 -0
  25. package/bin/skills/clinical-decision-support/references/clinical_decision_algorithms.md +604 -0
  26. package/bin/skills/clinical-decision-support/references/evidence_synthesis.md +840 -0
  27. package/bin/skills/clinical-decision-support/references/outcome_analysis.md +640 -0
  28. package/bin/skills/clinical-decision-support/references/patient_cohort_analysis.md +427 -0
  29. package/bin/skills/clinical-decision-support/references/treatment_recommendations.md +521 -0
  30. package/bin/skills/clinical-decision-support/scripts/biomarker_classifier.py +383 -0
  31. package/bin/skills/clinical-decision-support/scripts/build_decision_tree.py +417 -0
  32. package/bin/skills/clinical-decision-support/scripts/create_cohort_tables.py +509 -0
  33. package/bin/skills/clinical-decision-support/scripts/generate_survival_analysis.py +441 -0
  34. package/bin/skills/clinical-decision-support/scripts/validate_cds_document.py +326 -0
  35. package/bin/skills/clinical-reports/IMPLEMENTATION_SUMMARY.md +641 -0
  36. package/bin/skills/clinical-reports/README.md +236 -0
  37. package/bin/skills/clinical-reports/SKILL.md +1127 -0
  38. package/bin/skills/clinical-reports/assets/case_report_template.md +352 -0
  39. package/bin/skills/clinical-reports/assets/clinical_trial_csr_template.md +353 -0
  40. package/bin/skills/clinical-reports/assets/clinical_trial_sae_template.md +359 -0
  41. package/bin/skills/clinical-reports/assets/consult_note_template.md +305 -0
  42. package/bin/skills/clinical-reports/assets/discharge_summary_template.md +453 -0
  43. package/bin/skills/clinical-reports/assets/hipaa_compliance_checklist.md +395 -0
  44. package/bin/skills/clinical-reports/assets/history_physical_template.md +305 -0
  45. package/bin/skills/clinical-reports/assets/lab_report_template.md +309 -0
  46. package/bin/skills/clinical-reports/assets/pathology_report_template.md +249 -0
  47. package/bin/skills/clinical-reports/assets/quality_checklist.md +338 -0
  48. package/bin/skills/clinical-reports/assets/radiology_report_template.md +318 -0
  49. package/bin/skills/clinical-reports/assets/soap_note_template.md +253 -0
  50. package/bin/skills/clinical-reports/references/case_report_guidelines.md +570 -0
  51. package/bin/skills/clinical-reports/references/clinical_trial_reporting.md +693 -0
  52. package/bin/skills/clinical-reports/references/data_presentation.md +530 -0
  53. package/bin/skills/clinical-reports/references/diagnostic_reports_standards.md +629 -0
  54. package/bin/skills/clinical-reports/references/medical_terminology.md +588 -0
  55. package/bin/skills/clinical-reports/references/patient_documentation.md +744 -0
  56. package/bin/skills/clinical-reports/references/peer_review_standards.md +585 -0
  57. package/bin/skills/clinical-reports/references/regulatory_compliance.md +577 -0
  58. package/bin/skills/clinical-reports/scripts/check_deidentification.py +332 -0
  59. package/bin/skills/clinical-reports/scripts/compliance_checker.py +78 -0
  60. package/bin/skills/clinical-reports/scripts/extract_clinical_data.py +97 -0
  61. package/bin/skills/clinical-reports/scripts/format_adverse_events.py +97 -0
  62. package/bin/skills/clinical-reports/scripts/generate_report_template.py +149 -0
  63. package/bin/skills/clinical-reports/scripts/terminology_validator.py +126 -0
  64. package/bin/skills/clinical-reports/scripts/validate_case_report.py +323 -0
  65. package/bin/skills/clinical-reports/scripts/validate_trial_report.py +88 -0
  66. package/bin/skills/fireworks-ai/SKILL.md +665 -0
  67. package/bin/skills/generate-image/SKILL.md +178 -0
  68. package/bin/skills/generate-image/scripts/generate_image.py +254 -0
  69. package/bin/skills/groq/SKILL.md +347 -0
  70. package/bin/skills/hypothesis-generation/SKILL.md +293 -0
  71. package/bin/skills/hypothesis-generation/assets/FORMATTING_GUIDE.md +672 -0
  72. package/bin/skills/hypothesis-generation/assets/hypothesis_generation.sty +307 -0
  73. package/bin/skills/hypothesis-generation/assets/hypothesis_report_template.tex +572 -0
  74. package/bin/skills/hypothesis-generation/references/experimental_design_patterns.md +329 -0
  75. package/bin/skills/hypothesis-generation/references/hypothesis_quality_criteria.md +198 -0
  76. package/bin/skills/hypothesis-generation/references/literature_search_strategies.md +622 -0
  77. package/bin/skills/latex-posters/README.md +417 -0
  78. package/bin/skills/latex-posters/SKILL.md +1602 -0
  79. package/bin/skills/latex-posters/assets/baposter_template.tex +257 -0
  80. package/bin/skills/latex-posters/assets/beamerposter_template.tex +244 -0
  81. package/bin/skills/latex-posters/assets/poster_quality_checklist.md +358 -0
  82. package/bin/skills/latex-posters/assets/tikzposter_template.tex +251 -0
  83. package/bin/skills/latex-posters/references/latex_poster_packages.md +745 -0
  84. package/bin/skills/latex-posters/references/poster_content_guide.md +748 -0
  85. package/bin/skills/latex-posters/references/poster_design_principles.md +806 -0
  86. package/bin/skills/latex-posters/references/poster_layout_design.md +900 -0
  87. package/bin/skills/latex-posters/scripts/review_poster.sh +214 -0
  88. package/bin/skills/literature-review/SKILL.md +641 -0
  89. package/bin/skills/literature-review/assets/review_template.md +412 -0
  90. package/bin/skills/literature-review/references/citation_styles.md +166 -0
  91. package/bin/skills/literature-review/references/database_strategies.md +455 -0
  92. package/bin/skills/literature-review/scripts/generate_pdf.py +184 -0
  93. package/bin/skills/literature-review/scripts/search_databases.py +310 -0
  94. package/bin/skills/literature-review/scripts/verify_citations.py +218 -0
  95. package/bin/skills/market-research-reports/SKILL.md +904 -0
  96. package/bin/skills/market-research-reports/assets/FORMATTING_GUIDE.md +428 -0
  97. package/bin/skills/market-research-reports/assets/market_report_template.tex +1380 -0
  98. package/bin/skills/market-research-reports/assets/market_research.sty +564 -0
  99. package/bin/skills/market-research-reports/references/data_analysis_patterns.md +548 -0
  100. package/bin/skills/market-research-reports/references/report_structure_guide.md +999 -0
  101. package/bin/skills/market-research-reports/references/visual_generation_guide.md +1077 -0
  102. package/bin/skills/market-research-reports/scripts/generate_market_visuals.py +472 -0
  103. package/bin/skills/markitdown/INSTALLATION_GUIDE.md +318 -0
  104. package/bin/skills/markitdown/LICENSE.txt +22 -0
  105. package/bin/skills/markitdown/OPENROUTER_INTEGRATION.md +359 -0
  106. package/bin/skills/markitdown/QUICK_REFERENCE.md +309 -0
  107. package/bin/skills/markitdown/README.md +184 -0
  108. package/bin/skills/markitdown/SKILL.md +486 -0
  109. package/bin/skills/markitdown/SKILL_SUMMARY.md +307 -0
  110. package/bin/skills/markitdown/assets/example_usage.md +463 -0
  111. package/bin/skills/markitdown/references/api_reference.md +399 -0
  112. package/bin/skills/markitdown/references/file_formats.md +542 -0
  113. package/bin/skills/markitdown/scripts/batch_convert.py +195 -0
  114. package/bin/skills/markitdown/scripts/convert_literature.py +262 -0
  115. package/bin/skills/markitdown/scripts/convert_with_ai.py +224 -0
  116. package/bin/skills/ml-paper-writing/SKILL.md +937 -0
  117. package/bin/skills/ml-paper-writing/references/checklists.md +361 -0
  118. package/bin/skills/ml-paper-writing/references/citation-workflow.md +562 -0
  119. package/bin/skills/ml-paper-writing/references/reviewer-guidelines.md +367 -0
  120. package/bin/skills/ml-paper-writing/references/sources.md +159 -0
  121. package/bin/skills/ml-paper-writing/references/writing-guide.md +476 -0
  122. package/bin/skills/ml-paper-writing/templates/README.md +251 -0
  123. package/bin/skills/ml-paper-writing/templates/aaai2026/README.md +534 -0
  124. package/bin/skills/ml-paper-writing/templates/aaai2026/aaai2026-unified-supp.tex +144 -0
  125. package/bin/skills/ml-paper-writing/templates/aaai2026/aaai2026-unified-template.tex +952 -0
  126. package/bin/skills/ml-paper-writing/templates/aaai2026/aaai2026.bib +111 -0
  127. package/bin/skills/ml-paper-writing/templates/aaai2026/aaai2026.bst +1493 -0
  128. package/bin/skills/ml-paper-writing/templates/aaai2026/aaai2026.sty +315 -0
  129. package/bin/skills/ml-paper-writing/templates/acl/README.md +50 -0
  130. package/bin/skills/ml-paper-writing/templates/acl/acl.sty +312 -0
  131. package/bin/skills/ml-paper-writing/templates/acl/acl_latex.tex +377 -0
  132. package/bin/skills/ml-paper-writing/templates/acl/acl_lualatex.tex +101 -0
  133. package/bin/skills/ml-paper-writing/templates/acl/acl_natbib.bst +1940 -0
  134. package/bin/skills/ml-paper-writing/templates/acl/anthology.bib.txt +26 -0
  135. package/bin/skills/ml-paper-writing/templates/acl/custom.bib +70 -0
  136. package/bin/skills/ml-paper-writing/templates/acl/formatting.md +326 -0
  137. package/bin/skills/ml-paper-writing/templates/colm2025/README.md +3 -0
  138. package/bin/skills/ml-paper-writing/templates/colm2025/colm2025_conference.bib +11 -0
  139. package/bin/skills/ml-paper-writing/templates/colm2025/colm2025_conference.bst +1440 -0
  140. package/bin/skills/ml-paper-writing/templates/colm2025/colm2025_conference.pdf +0 -0
  141. package/bin/skills/ml-paper-writing/templates/colm2025/colm2025_conference.sty +218 -0
  142. package/bin/skills/ml-paper-writing/templates/colm2025/colm2025_conference.tex +305 -0
  143. package/bin/skills/ml-paper-writing/templates/colm2025/fancyhdr.sty +485 -0
  144. package/bin/skills/ml-paper-writing/templates/colm2025/math_commands.tex +508 -0
  145. package/bin/skills/ml-paper-writing/templates/colm2025/natbib.sty +1246 -0
  146. package/bin/skills/ml-paper-writing/templates/iclr2026/fancyhdr.sty +485 -0
  147. package/bin/skills/ml-paper-writing/templates/iclr2026/iclr2026_conference.bib +24 -0
  148. package/bin/skills/ml-paper-writing/templates/iclr2026/iclr2026_conference.bst +1440 -0
  149. package/bin/skills/ml-paper-writing/templates/iclr2026/iclr2026_conference.pdf +0 -0
  150. package/bin/skills/ml-paper-writing/templates/iclr2026/iclr2026_conference.sty +246 -0
  151. package/bin/skills/ml-paper-writing/templates/iclr2026/iclr2026_conference.tex +414 -0
  152. package/bin/skills/ml-paper-writing/templates/iclr2026/math_commands.tex +508 -0
  153. package/bin/skills/ml-paper-writing/templates/iclr2026/natbib.sty +1246 -0
  154. package/bin/skills/ml-paper-writing/templates/icml2026/algorithm.sty +79 -0
  155. package/bin/skills/ml-paper-writing/templates/icml2026/algorithmic.sty +201 -0
  156. package/bin/skills/ml-paper-writing/templates/icml2026/example_paper.bib +75 -0
  157. package/bin/skills/ml-paper-writing/templates/icml2026/example_paper.pdf +0 -0
  158. package/bin/skills/ml-paper-writing/templates/icml2026/example_paper.tex +662 -0
  159. package/bin/skills/ml-paper-writing/templates/icml2026/fancyhdr.sty +864 -0
  160. package/bin/skills/ml-paper-writing/templates/icml2026/icml2026.bst +1443 -0
  161. package/bin/skills/ml-paper-writing/templates/icml2026/icml2026.sty +767 -0
  162. package/bin/skills/ml-paper-writing/templates/icml2026/icml_numpapers.pdf +0 -0
  163. package/bin/skills/ml-paper-writing/templates/neurips2025/Makefile +36 -0
  164. package/bin/skills/ml-paper-writing/templates/neurips2025/extra_pkgs.tex +53 -0
  165. package/bin/skills/ml-paper-writing/templates/neurips2025/main.tex +38 -0
  166. package/bin/skills/ml-paper-writing/templates/neurips2025/neurips.sty +382 -0
  167. package/bin/skills/paper-2-web/SKILL.md +491 -0
  168. package/bin/skills/paper-2-web/references/installation.md +141 -0
  169. package/bin/skills/paper-2-web/references/paper2poster.md +346 -0
  170. package/bin/skills/paper-2-web/references/paper2video.md +305 -0
  171. package/bin/skills/paper-2-web/references/paper2web.md +187 -0
  172. package/bin/skills/paper-2-web/references/usage_examples.md +436 -0
  173. package/bin/skills/peer-review/SKILL.md +702 -0
  174. package/bin/skills/peer-review/references/calibration_guidelines.md +196 -0
  175. package/bin/skills/peer-review/references/common_issues.md +552 -0
  176. package/bin/skills/peer-review/references/paper_mechanics.md +269 -0
  177. package/bin/skills/peer-review/references/reporting_standards.md +290 -0
  178. package/bin/skills/peer-review/references/scoring_rubric.md +239 -0
  179. package/bin/skills/pptx-posters/SKILL.md +410 -0
  180. package/bin/skills/pptx-posters/assets/poster_html_template.html +257 -0
  181. package/bin/skills/pptx-posters/assets/poster_quality_checklist.md +358 -0
  182. package/bin/skills/pptx-posters/references/poster_content_guide.md +748 -0
  183. package/bin/skills/pptx-posters/references/poster_design_principles.md +806 -0
  184. package/bin/skills/pptx-posters/references/poster_layout_design.md +900 -0
  185. package/bin/skills/research-grants/README.md +285 -0
  186. package/bin/skills/research-grants/SKILL.md +938 -0
  187. package/bin/skills/research-grants/assets/budget_justification_template.md +453 -0
  188. package/bin/skills/research-grants/assets/nih_specific_aims_template.md +166 -0
  189. package/bin/skills/research-grants/assets/nsf_project_summary_template.md +92 -0
  190. package/bin/skills/research-grants/references/broader_impacts.md +392 -0
  191. package/bin/skills/research-grants/references/darpa_guidelines.md +636 -0
  192. package/bin/skills/research-grants/references/doe_guidelines.md +586 -0
  193. package/bin/skills/research-grants/references/nih_guidelines.md +851 -0
  194. package/bin/skills/research-grants/references/nsf_guidelines.md +570 -0
  195. package/bin/skills/research-grants/references/specific_aims_guide.md +458 -0
  196. package/bin/skills/research-lookup/README.md +156 -0
  197. package/bin/skills/research-lookup/SKILL.md +606 -0
  198. package/bin/skills/research-lookup/examples.py +174 -0
  199. package/bin/skills/research-lookup/lookup.py +187 -0
  200. package/bin/skills/research-lookup/research_lookup.py +483 -0
  201. package/bin/skills/research-lookup/scripts/research_lookup.py +483 -0
  202. package/bin/skills/scholar-evaluation/SKILL.md +289 -0
  203. package/bin/skills/scholar-evaluation/references/evaluation_framework.md +663 -0
  204. package/bin/skills/scholar-evaluation/scripts/calculate_scores.py +366 -0
  205. package/bin/skills/scientific-critical-thinking/SKILL.md +566 -0
  206. package/bin/skills/scientific-critical-thinking/references/common_biases.md +364 -0
  207. package/bin/skills/scientific-critical-thinking/references/evidence_hierarchy.md +484 -0
  208. package/bin/skills/scientific-critical-thinking/references/experimental_design.md +496 -0
  209. package/bin/skills/scientific-critical-thinking/references/logical_fallacies.md +478 -0
  210. package/bin/skills/scientific-critical-thinking/references/scientific_method.md +169 -0
  211. package/bin/skills/scientific-critical-thinking/references/statistical_pitfalls.md +506 -0
  212. package/bin/skills/scientific-schematics/QUICK_REFERENCE.md +207 -0
  213. package/bin/skills/scientific-schematics/README.md +327 -0
  214. package/bin/skills/scientific-schematics/SKILL.md +615 -0
  215. package/bin/skills/scientific-schematics/example_usage.sh +89 -0
  216. package/bin/skills/scientific-schematics/references/best_practices.md +559 -0
  217. package/bin/skills/scientific-schematics/scripts/generate_schematic.py +135 -0
  218. package/bin/skills/scientific-schematics/scripts/generate_schematic_ai.py +807 -0
  219. package/bin/skills/scientific-schematics/test_ai_generation.py +243 -0
  220. package/bin/skills/scientific-slides/SKILL.md +942 -0
  221. package/bin/skills/scientific-slides/assets/timing_guidelines.md +597 -0
  222. package/bin/skills/scientific-slides/references/data_visualization_slides.md +708 -0
  223. package/bin/skills/scientific-slides/references/presentation_structure.md +642 -0
  224. package/bin/skills/scientific-slides/references/slide_design_principles.md +849 -0
  225. package/bin/skills/scientific-slides/references/talk_types_guide.md +687 -0
  226. package/bin/skills/scientific-slides/references/visual_review_workflow.md +775 -0
  227. package/bin/skills/scientific-slides/scripts/generate_slide_image.py +143 -0
  228. package/bin/skills/scientific-slides/scripts/generate_slide_image_ai.py +748 -0
  229. package/bin/skills/scientific-slides/scripts/pdf_to_images.py +201 -0
  230. package/bin/skills/scientific-slides/scripts/slides_to_pdf.py +220 -0
  231. package/bin/skills/scientific-slides/scripts/validate_presentation.py +367 -0
  232. package/bin/skills/scientific-writing/SKILL.md +714 -0
  233. package/bin/skills/scientific-writing/assets/REPORT_FORMATTING_GUIDE.md +574 -0
  234. package/bin/skills/scientific-writing/assets/scientific_report.sty +606 -0
  235. package/bin/skills/scientific-writing/assets/scientific_report_template.tex +449 -0
  236. package/bin/skills/scientific-writing/references/citation_styles.md +720 -0
  237. package/bin/skills/scientific-writing/references/figures_tables.md +806 -0
  238. package/bin/skills/scientific-writing/references/imrad_structure.md +686 -0
  239. package/bin/skills/scientific-writing/references/professional_report_formatting.md +664 -0
  240. package/bin/skills/scientific-writing/references/reporting_guidelines.md +748 -0
  241. package/bin/skills/scientific-writing/references/writing_principles.md +824 -0
  242. package/bin/skills/tinker/SKILL.md +2 -3
  243. package/bin/skills/together-ai/SKILL.md +722 -0
  244. package/bin/skills/treatment-plans/README.md +488 -0
  245. package/bin/skills/treatment-plans/SKILL.md +1579 -0
  246. package/bin/skills/treatment-plans/assets/STYLING_QUICK_REFERENCE.md +185 -0
  247. package/bin/skills/treatment-plans/assets/chronic_disease_management_plan.tex +665 -0
  248. package/bin/skills/treatment-plans/assets/general_medical_treatment_plan.tex +547 -0
  249. package/bin/skills/treatment-plans/assets/medical_treatment_plan.sty +222 -0
  250. package/bin/skills/treatment-plans/assets/mental_health_treatment_plan.tex +774 -0
  251. package/bin/skills/treatment-plans/assets/one_page_treatment_plan.tex +193 -0
  252. package/bin/skills/treatment-plans/assets/pain_management_plan.tex +799 -0
  253. package/bin/skills/treatment-plans/assets/perioperative_care_plan.tex +753 -0
  254. package/bin/skills/treatment-plans/assets/quality_checklist.md +471 -0
  255. package/bin/skills/treatment-plans/assets/rehabilitation_treatment_plan.tex +756 -0
  256. package/bin/skills/treatment-plans/references/goal_setting_frameworks.md +411 -0
  257. package/bin/skills/treatment-plans/references/intervention_guidelines.md +507 -0
  258. package/bin/skills/treatment-plans/references/regulatory_compliance.md +476 -0
  259. package/bin/skills/treatment-plans/references/specialty_specific_guidelines.md +655 -0
  260. package/bin/skills/treatment-plans/references/treatment_plan_standards.md +485 -0
  261. package/bin/skills/treatment-plans/scripts/check_completeness.py +322 -0
  262. package/bin/skills/treatment-plans/scripts/generate_template.py +233 -0
  263. package/bin/skills/treatment-plans/scripts/timeline_generator.py +385 -0
  264. package/bin/skills/treatment-plans/scripts/validate_treatment_plan.py +369 -0
  265. package/bin/skills/unsloth/SKILL.md +565 -47
  266. package/bin/skills/unsloth/docs/advanced-rl.md +222 -0
  267. package/bin/skills/unsloth/docs/chat-templates.md +141 -0
  268. package/bin/skills/unsloth/docs/datasets.md +489 -0
  269. package/bin/skills/unsloth/docs/docker-extended.md +99 -0
  270. package/bin/skills/unsloth/docs/dynamic-ggufs-2.0.md +116 -0
  271. package/bin/skills/unsloth/docs/dynamic-ggufs-aider.md +118 -0
  272. package/bin/skills/unsloth/docs/faq.md +91 -0
  273. package/bin/skills/unsloth/docs/fp16-vs-bf16.md +61 -0
  274. package/bin/skills/unsloth/docs/fp8-rl.md +224 -0
  275. package/bin/skills/unsloth/docs/glm-4.7-flash.md +997 -0
  276. package/bin/skills/unsloth/docs/inference-deployment-overview.md +17 -0
  277. package/bin/skills/unsloth/docs/inference.md +27 -0
  278. package/bin/skills/unsloth/docs/installation-docker.md +155 -0
  279. package/bin/skills/unsloth/docs/installation-pip.md +148 -0
  280. package/bin/skills/unsloth/docs/kernels-packing.md +190 -0
  281. package/bin/skills/unsloth/docs/kimi-k2.5.md +634 -0
  282. package/bin/skills/unsloth/docs/lm-studio.md +235 -0
  283. package/bin/skills/unsloth/docs/lora-hot-swapping.md +75 -0
  284. package/bin/skills/unsloth/docs/lora-hyperparameters.md +363 -0
  285. package/bin/skills/unsloth/docs/memory-efficient-rl.md +267 -0
  286. package/bin/skills/unsloth/docs/model-selection.md +70 -0
  287. package/bin/skills/unsloth/docs/models.md +532 -0
  288. package/bin/skills/unsloth/docs/multi-gpu-ddp.md +90 -0
  289. package/bin/skills/unsloth/docs/notebooks.md +223 -0
  290. package/bin/skills/unsloth/docs/overview.md +110 -0
  291. package/bin/skills/unsloth/docs/qwen3-coder-next-extended.md +900 -0
  292. package/bin/skills/unsloth/docs/qwen3-coder-next.md +900 -0
  293. package/bin/skills/unsloth/docs/requirements.md +45 -0
  294. package/bin/skills/unsloth/docs/reward-hacking.md +25 -0
  295. package/bin/skills/unsloth/docs/saving-to-gguf.md +138 -0
  296. package/bin/skills/unsloth/docs/saving-to-ollama.md +46 -0
  297. package/bin/skills/unsloth/docs/sglang-guide.md +278 -0
  298. package/bin/skills/unsloth/docs/speculative-decoding.md +70 -0
  299. package/bin/skills/unsloth/docs/tool-calling.md +334 -0
  300. package/bin/skills/unsloth/docs/troubleshooting-faq.md +204 -0
  301. package/bin/skills/unsloth/docs/troubleshooting-inference.md +26 -0
  302. package/bin/skills/unsloth/docs/tts-fine-tuning.md +149 -0
  303. package/bin/skills/unsloth/docs/tutorial-grpo.md +273 -0
  304. package/bin/skills/unsloth/docs/tutorial-llama3-ollama.md +356 -0
  305. package/bin/skills/unsloth/docs/vision-fine-tuning.md +135 -0
  306. package/bin/skills/unsloth/docs/vision-rl.md +170 -0
  307. package/bin/skills/unsloth/docs/vllm-engine-arguments.md +43 -0
  308. package/bin/skills/unsloth/docs/vllm-guide.md +98 -0
  309. package/bin/skills/venue-templates/SKILL.md +686 -0
  310. package/bin/skills/venue-templates/assets/examples/cell_summary_example.md +247 -0
  311. package/bin/skills/venue-templates/assets/examples/medical_structured_abstract.md +313 -0
  312. package/bin/skills/venue-templates/assets/examples/nature_abstract_examples.md +213 -0
  313. package/bin/skills/venue-templates/assets/examples/neurips_introduction_example.md +245 -0
  314. package/bin/skills/venue-templates/assets/grants/nih_specific_aims.tex +235 -0
  315. package/bin/skills/venue-templates/assets/grants/nsf_proposal_template.tex +375 -0
  316. package/bin/skills/venue-templates/assets/journals/nature_article.tex +171 -0
  317. package/bin/skills/venue-templates/assets/journals/neurips_article.tex +283 -0
  318. package/bin/skills/venue-templates/assets/journals/plos_one.tex +317 -0
  319. package/bin/skills/venue-templates/assets/posters/beamerposter_academic.tex +311 -0
  320. package/bin/skills/venue-templates/references/cell_press_style.md +483 -0
  321. package/bin/skills/venue-templates/references/conferences_formatting.md +564 -0
  322. package/bin/skills/venue-templates/references/cs_conference_style.md +463 -0
  323. package/bin/skills/venue-templates/references/grants_requirements.md +787 -0
  324. package/bin/skills/venue-templates/references/journals_formatting.md +486 -0
  325. package/bin/skills/venue-templates/references/medical_journal_styles.md +535 -0
  326. package/bin/skills/venue-templates/references/ml_conference_style.md +556 -0
  327. package/bin/skills/venue-templates/references/nature_science_style.md +405 -0
  328. package/bin/skills/venue-templates/references/posters_guidelines.md +628 -0
  329. package/bin/skills/venue-templates/references/reviewer_expectations.md +417 -0
  330. package/bin/skills/venue-templates/references/venue_writing_styles.md +321 -0
  331. package/bin/skills/venue-templates/scripts/customize_template.py +195 -0
  332. package/bin/skills/venue-templates/scripts/query_template.py +266 -0
  333. package/bin/skills/venue-templates/scripts/validate_format.py +250 -0
  334. package/bin/synsc +0 -0
  335. package/package.json +1 -1
  336. package/bin/skills/unsloth/references/index.md +0 -7
  337. package/bin/skills/unsloth/references/llms-full.md +0 -16799
  338. package/bin/skills/unsloth/references/llms-txt.md +0 -12044
  339. package/bin/skills/unsloth/references/llms.md +0 -82
@@ -0,0 +1,864 @@
1
+ %%
2
+ %% This is file `fancyhdr.sty',
3
+ %% generated with the docstrip utility.
4
+ %%
5
+ %% The original source files were:
6
+ %%
7
+ %% fancyhdr.dtx (with options: `fancyhdr')
8
+ %%
9
+ %% This is a generated file.
10
+ %%
11
+ %% This file may be distributed and/or modified under the conditions of
12
+ %% the LaTeX Project Public License, either version 1.3 of this license
13
+ %% or (at your option) any later version. The latest version of this
14
+ %% license is in:
15
+ %%
16
+ %% http://www.latex-project.org/lppl.txt
17
+ %%
18
+ %% and version 1.3 or later is part of all distributions of LaTeX version
19
+ %% 2005/12/01 or later.
20
+ %%
21
+ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
22
+ \NeedsTeXFormat{LaTeX2e}[2018-04-01]
23
+ \ProvidesPackage{fancyhdr}%
24
+ [2025/02/07 v5.2
25
+ Extensive control of page headers and footers]%
26
+ % Copyright (C) 1994-2025 by Pieter van Oostrum <pieter@vanoostrum.org>
27
+ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
28
+ \ifdefined\NewDocumentCommand\else\RequirePackage{xparse}\fi
29
+ \newif\iff@nch@check
30
+ \f@nch@checktrue
31
+ \DeclareOption{nocheck}{%
32
+ \f@nch@checkfalse
33
+ }
34
+ \let\f@nch@gbl\relax
35
+ \newif\iff@nch@compatViii
36
+ \DeclareOption{compatV3}{%
37
+ \PackageWarningNoLine{fancyhdr}{The `compatV3' option is deprecated.\MessageBreak
38
+ It will disappear in one of the following releases.\MessageBreak
39
+ Please change your document to work\MessageBreak
40
+ without this option}
41
+ \let\f@nch@gbl\global
42
+ \f@nch@compatViiitrue
43
+ }
44
+ \newif\iff@nch@twoside
45
+ \f@nch@twosidefalse
46
+ \DeclareOption{twoside}{%
47
+ \if@twoside\else\f@nch@twosidetrue\fi
48
+ }
49
+ \newcommand\f@nch@def[2]{%
50
+ \def\temp@a{#2}\ifx\temp@a\@empty\f@nch@gbl\def#1{}%
51
+ \else\f@nch@gbl\def#1{#2\strut}\fi}
52
+ \DeclareOption{myheadings}{%
53
+ \@ifundefined{chapter}{%
54
+ \def\ps@myheadings{\ps@f@nch@fancyproto \let\@mkboth\@gobbletwo
55
+ \fancyhf{}
56
+ \fancyhead[LE,RO]{\thepage}%
57
+ \fancyhead[RE]{\slshape\leftmark}%
58
+ \fancyhead[LO]{\slshape\rightmark}%
59
+ \let\sectionmark\@gobble
60
+ \let\subsectionmark\@gobble
61
+ }%
62
+ }%
63
+ {\def\ps@myheadings{\ps@f@nch@fancyproto \let\@mkboth\@gobbletwo
64
+ \fancyhf{}
65
+ \fancyhead[LE,RO]{\thepage}%
66
+ \fancyhead[RE]{\slshape\leftmark}%
67
+ \fancyhead[LO]{\slshape\rightmark}%
68
+ \let\chaptermark\@gobble
69
+ \let\sectionmark\@gobble
70
+ }%
71
+ }%
72
+ }
73
+ \DeclareOption{headings}{%
74
+ \@ifundefined{chapter}{%
75
+ \if@twoside
76
+ \def\ps@headings{\ps@f@nch@fancyproto \def\@mkboth{\protect\markboth}
77
+ \fancyhf{}
78
+ \fancyhead[LE,RO]{\thepage}%
79
+ \fancyhead[RE]{\slshape\leftmark}%
80
+ \fancyhead[LO]{\slshape\rightmark}%
81
+ \def\sectionmark##1{%
82
+ \markboth{\MakeUppercase{%
83
+ \ifnum \c@secnumdepth >\z@ \thesection\quad \fi##1}}{}}%
84
+ \def\subsectionmark##1{%
85
+ \markright{%
86
+ \ifnum \c@secnumdepth >\@ne \thesubsection\quad \fi##1}}%
87
+ }%
88
+ \else
89
+ \def\ps@headings{\ps@f@nch@fancyproto \def\@mkboth{\protect\markboth}
90
+ \fancyhf{}
91
+ \fancyhead[LE,RO]{\thepage}%
92
+ \fancyhead[RE]{\slshape\leftmark}%
93
+ \fancyhead[LO]{\slshape\rightmark}%
94
+ \def\sectionmark##1{%
95
+ \markright {\MakeUppercase{%
96
+ \ifnum \c@secnumdepth >\z@ \thesection\quad \fi##1}}}%
97
+ \let\subsectionmark\@gobble % Not needed but inserted for safety
98
+ }%
99
+ \fi
100
+ }{\if@twoside
101
+ \def\ps@headings{\ps@f@nch@fancyproto \def\@mkboth{\protect\markboth}
102
+ \fancyhf{}
103
+ \fancyhead[LE,RO]{\thepage}%
104
+ \fancyhead[RE]{\slshape\leftmark}%
105
+ \fancyhead[LO]{\slshape\rightmark}%
106
+ \def\chaptermark##1{%
107
+ \markboth{\MakeUppercase{%
108
+ \ifnum \c@secnumdepth >\m@ne \if@mainmatter
109
+ \@chapapp\ \thechapter. \ \fi\fi##1}}{}}%
110
+ \def\sectionmark##1{%
111
+ \markright {\MakeUppercase{%
112
+ \ifnum \c@secnumdepth >\z@ \thesection. \ \fi##1}}}%
113
+ }%
114
+ \else
115
+ \def\ps@headings{\ps@f@nch@fancyproto \def\@mkboth{\protect\markboth}
116
+ \fancyhf{}
117
+ \fancyhead[LE,RO]{\thepage}%
118
+ \fancyhead[RE]{\slshape\leftmark}%
119
+ \fancyhead[LO]{\slshape\rightmark}%
120
+ \def\chaptermark##1{%
121
+ \markright{\MakeUppercase{%
122
+ \ifnum \c@secnumdepth >\m@ne \if@mainmatter
123
+ \@chapapp\ \thechapter. \ \fi\fi##1}}}%
124
+ \let\sectionmark\@gobble % Not needed but inserted for safety
125
+ }%
126
+ \fi
127
+ }%
128
+ }
129
+ \ProcessOptions*
130
+ \newcommand{\f@nch@forc}[3]{\expandafter\f@nchf@rc\expandafter#1\expandafter{#2}{#3}}
131
+ \newcommand{\f@nchf@rc}[3]{\def\temp@ty{#2}\ifx\@empty\temp@ty\else
132
+ \f@nch@rc#1#2\f@nch@rc{#3}\fi}
133
+ \long\def\f@nch@rc#1#2#3\f@nch@rc#4{\def#1{#2}#4\f@nchf@rc#1{#3}{#4}}
134
+ \newcommand{\f@nch@for}[3]{\edef\@fortmp{#2}%
135
+ \expandafter\@forloop#2,\@nil,\@nil\@@#1{#3}}
136
+ \newcommand\f@nch@default[3]{%
137
+ \edef\temp@a{\lowercase{\edef\noexpand\temp@a{#3}}}\temp@a \def#1{}%
138
+ \f@nch@forc\tmpf@ra{#2}%
139
+ {\expandafter\f@nch@ifin\tmpf@ra\temp@a{\edef#1{#1\tmpf@ra}}{}}%
140
+ \ifx\@empty#1\def#1{#2}\fi}
141
+ \newcommand{\f@nch@ifin}[4]{%
142
+ \edef\temp@a{#2}\def\temp@b##1#1##2\temp@b{\def\temp@b{##1}}%
143
+ \expandafter\temp@b#2#1\temp@b\ifx\temp@a\temp@b #4\else #3\fi}
144
+ \newcommand{\fancyhead}[2][]{\f@nch@fancyhf\fancyhead h[#1]{#2}}%
145
+ \newcommand{\fancyfoot}[2][]{\f@nch@fancyhf\fancyfoot f[#1]{#2}}%
146
+ \newcommand{\fancyhf}[2][]{\f@nch@fancyhf\fancyhf {}[#1]{#2}}%
147
+ \newcommand{\fancyheadoffset}[2][]{\f@nch@fancyhfoffs\fancyheadoffset h[#1]{#2}}%
148
+ \newcommand{\fancyfootoffset}[2][]{\f@nch@fancyhfoffs\fancyfootoffset f[#1]{#2}}%
149
+ \newcommand{\fancyhfoffset}[2][]{\f@nch@fancyhfoffs\fancyhfoffset {}[#1]{#2}}%
150
+ \def\f@nch@fancyhf@Echeck#1{%
151
+ \if@twoside\else
152
+ \iff@nch@twoside\else
153
+ \if\f@nch@@eo e%
154
+ \PackageWarning{fancyhdr} {\string#1's `E' option without twoside option is useless.\MessageBreak
155
+ Please consider using the `twoside' option}%
156
+ \fi\fi\fi
157
+ }
158
+ \long\def\f@nch@fancyhf#1#2[#3]#4{%
159
+ \def\temp@c{}%
160
+ \f@nch@forc\tmpf@ra{#3}%
161
+ {\expandafter\f@nch@ifin\tmpf@ra{eolcrhf,EOLCRHF}%
162
+ {}{\edef\temp@c{\temp@c\tmpf@ra}}}%
163
+ \ifx\@empty\temp@c\else \PackageError{fancyhdr}{Illegal char `\temp@c' in
164
+ \string#1 argument: [#3]}{}%
165
+ \fi \f@nch@for\temp@c{#3}%
166
+ {\f@nch@default\f@nch@@eo{eo}\temp@c
167
+ \f@nch@fancyhf@Echeck{#1}%
168
+ \f@nch@default\f@nch@@lcr{lcr}\temp@c
169
+ \f@nch@default\f@nch@@hf{hf}{#2\temp@c}%
170
+ \f@nch@forc\f@nch@eo\f@nch@@eo
171
+ {\f@nch@forc\f@nch@lcr\f@nch@@lcr
172
+ {\f@nch@forc\f@nch@hf\f@nch@@hf
173
+ {\expandafter\f@nch@def\csname
174
+ f@nch@\f@nch@eo\f@nch@lcr\f@nch@hf\endcsname {#4}}}}}}
175
+ \def\f@nch@fancyhfoffs#1#2[#3]#4{%
176
+ \def\temp@c{}%
177
+ \f@nch@forc\tmpf@ra{#3}%
178
+ {\expandafter\f@nch@ifin\tmpf@ra{eolrhf,EOLRHF}%
179
+ {}{\edef\temp@c{\temp@c\tmpf@ra}}}%
180
+ \ifx\@empty\temp@c\else \PackageError{fancyhdr}{Illegal char `\temp@c' in
181
+ \string#1 argument: [#3]}{}%
182
+ \fi \f@nch@for\temp@c{#3}%
183
+ {\f@nch@default\f@nch@@eo{eo}\temp@c
184
+ \f@nch@fancyhf@Echeck{#1}%
185
+ \f@nch@default\f@nch@@lcr{lr}\temp@c
186
+ \f@nch@default\f@nch@@hf{hf}{#2\temp@c}%
187
+ \f@nch@forc\f@nch@eo\f@nch@@eo
188
+ {\f@nch@forc\f@nch@lcr\f@nch@@lcr
189
+ {\f@nch@forc\f@nch@hf\f@nch@@hf
190
+ {\expandafter\setlength\csname
191
+ f@nch@offset@\f@nch@eo\f@nch@lcr\f@nch@hf\endcsname {#4}}}}}%
192
+ \f@nch@setoffs}
193
+ \NewDocumentCommand {\fancyheadwidth}{ s O{} O{} m }
194
+ {\f@nch@fancyhfwidth{#1}\fancyheadwidth h[#2][#3]{#4}}%
195
+ \NewDocumentCommand {\fancyfootwidth}{ s O{} O{} m }
196
+ {\f@nch@fancyhfwidth{#1}\fancyfootwidth f[#2][#3]{#4}}%
197
+ \NewDocumentCommand {\fancyhfwidth} { s O{} O{} m }
198
+ {\f@nch@fancyhfwidth{#1}\fancyhfwidth {}[#2][#3]{#4}}%
199
+ \def\f@nch@fancyhfwidth#1#2#3[#4][#5]#6{%
200
+ \setlength\@tempdima{#6}%
201
+ \def\temp@c{}%
202
+ \f@nch@forc\tmpf@ra{#4}%
203
+ {\expandafter\f@nch@ifin\tmpf@ra{eolcrhf,EOLCRHF}%
204
+ {}{\edef\temp@c{\temp@c\tmpf@ra}}}%
205
+ \ifx\@empty\temp@c\else \PackageError{fancyhdr}{Illegal char `\temp@c' in
206
+ \string#2 argument: [#4]}{}%
207
+ \fi
208
+ \f@nch@for\temp@c{#4}%
209
+ {\f@nch@default\f@nch@@eo{eo}\temp@c
210
+ \f@nch@fancyhf@Echeck{#2}%
211
+ \f@nch@default\f@nch@@lcr{lcr}\temp@c
212
+ \f@nch@default\f@nch@@hf{hf}{#3\temp@c}%
213
+ \f@nch@forc\f@nch@eo\f@nch@@eo
214
+ {\f@nch@forc\f@nch@lcr\f@nch@@lcr
215
+ {\f@nch@forc\f@nch@hf\f@nch@@hf
216
+ {%
217
+ \IfBooleanTF{#1}{%
218
+ \expandafter\edef\csname
219
+ f@nch@width@\f@nch@eo\f@nch@lcr\f@nch@hf\endcsname{\the\@tempdima}%
220
+ }%
221
+ {%
222
+ \expandafter\def\csname
223
+ f@nch@width@\f@nch@eo\f@nch@lcr\f@nch@hf\endcsname{#6}%
224
+ }%
225
+ \csname f@nchdrwdt@align@v@\f@nch@hf\endcsname
226
+ \edef\f@nch@align@@h{\f@nch@lcr}%
227
+ \def\temp@a{#5}%
228
+ \ifx\temp@a\@empty \else \f@nchdrwdt@align#5\@nil{#2}\fi
229
+ \expandafter\edef\csname
230
+ f@nch@align@\f@nch@eo\f@nch@lcr\f@nch@hf\endcsname
231
+ {\f@nch@align@@v\f@nch@align@@h}}}}}}
232
+ \def\f@nch@width@elh{\headwidth}
233
+ \def\f@nch@width@ech{\headwidth}
234
+ \def\f@nch@width@erh{\headwidth}
235
+ \def\f@nch@width@olh{\headwidth}
236
+ \def\f@nch@width@och{\headwidth}
237
+ \def\f@nch@width@orh{\headwidth}
238
+ \def\f@nch@width@elf{\headwidth}
239
+ \def\f@nch@width@ecf{\headwidth}
240
+ \def\f@nch@width@erf{\headwidth}
241
+ \def\f@nch@width@olf{\headwidth}
242
+ \def\f@nch@width@ocf{\headwidth}
243
+ \def\f@nch@width@orf{\headwidth}
244
+ \def\f@nch@align@elh{bl}
245
+ \def\f@nch@align@ech{bc}
246
+ \def\f@nch@align@erh{br}
247
+ \def\f@nch@align@olh{bl}
248
+ \def\f@nch@align@och{bc}
249
+ \def\f@nch@align@orh{br}
250
+ \def\f@nch@align@elf{tl}
251
+ \def\f@nch@align@ecf{tc}
252
+ \def\f@nch@align@erf{tr}
253
+ \def\f@nch@align@olf{tl}
254
+ \def\f@nch@align@ocf{tc}
255
+ \def\f@nch@align@orf{tr}
256
+ \def\f@nchdrwdt@align@v@h{\def\f@nch@align@@v{b}}%
257
+ \def\f@nchdrwdt@align@v@f{\def\f@nch@align@@v{t}}%
258
+ \long\def\f@nchdrwdt@align#1#2\@nil#3{%
259
+ \f@nch@ifin{#1}{TtcbB-}{%
260
+ \f@nch@ifin{#1}{-}{}{\def\f@nch@align@@v{#1}}%
261
+ \def\@tempa{#2}%
262
+ \ifx\@tempa\@empty \else \def\f@nch@align@@h{#2}\fi
263
+ }%
264
+ {\def\f@nch@align@@h{#1}}%
265
+ \expandafter\f@nch@ifin\expandafter{\f@nch@align@@h}{lcrj}{}%
266
+ {\PackageError{fancyhdr}
267
+ {\string#3: Illegal char `\f@nch@align@@h'\MessageBreak
268
+ in alignment argument}{}}%
269
+ }
270
+ \newcommand{\lhead}[2][\f@nch@olh]%
271
+ {\f@nch@def\f@nch@olh{#2}\f@nch@def\f@nch@elh{#1}}
272
+ \newcommand{\chead}[2][\f@nch@och]%
273
+ {\f@nch@def\f@nch@och{#2}\f@nch@def\f@nch@ech{#1}}
274
+ \newcommand{\rhead}[2][\f@nch@orh]%
275
+ {\f@nch@def\f@nch@orh{#2}\f@nch@def\f@nch@erh{#1}}
276
+ \newcommand{\lfoot}[2][\f@nch@olf]%
277
+ {\f@nch@def\f@nch@olf{#2}\f@nch@def\f@nch@elf{#1}}
278
+ \newcommand{\cfoot}[2][\f@nch@ocf]%
279
+ {\f@nch@def\f@nch@ocf{#2}\f@nch@def\f@nch@ecf{#1}}
280
+ \newcommand{\rfoot}[2][\f@nch@orf]%
281
+ {\f@nch@def\f@nch@orf{#2}\f@nch@def\f@nch@erf{#1}}
282
+ \newlength{\f@nch@headwidth} \let\headwidth\f@nch@headwidth
283
+ \newlength{\f@nch@offset@elh}
284
+ \newlength{\f@nch@offset@erh}
285
+ \newlength{\f@nch@offset@olh}
286
+ \newlength{\f@nch@offset@orh}
287
+ \newlength{\f@nch@offset@elf}
288
+ \newlength{\f@nch@offset@erf}
289
+ \newlength{\f@nch@offset@olf}
290
+ \newlength{\f@nch@offset@orf}
291
+ \newcommand{\headrulewidth}{0.4pt}
292
+ \newcommand{\footrulewidth}{0pt}
293
+ \@ifundefined{headruleskip}%
294
+ {\newcommand{\headruleskip}{0pt}}{}
295
+ \@ifundefined{footruleskip}%
296
+ {\newcommand{\footruleskip}{.3\normalbaselineskip}}{}
297
+ \newcommand{\plainheadrulewidth}{0pt}
298
+ \newcommand{\plainfootrulewidth}{0pt}
299
+ \newif\if@fancyplain \@fancyplainfalse
300
+ \def\fancyplain#1#2{\if@fancyplain#1\else#2\fi}
301
+ \headwidth=-123456789sp
302
+ \let\f@nch@raggedleft\raggedleft
303
+ \let\f@nch@raggedright\raggedright
304
+ \let\f@nch@centering\centering
305
+ \let\f@nch@everypar\everypar
306
+ \ifdefined\ExplSyntaxOn
307
+ \ExplSyntaxOn
308
+ \providecommand\IfFormatAtLeastTF{\@ifl@t@r\fmtversion}
309
+ \IfFormatAtLeastTF{2021-06-01}{
310
+ \def\f@nch@saveclr@parhook #1{
311
+ \expandafter\let\csname f@nch@__hook~#1\expandafter\endcsname
312
+ \csname __hook~#1\endcsname
313
+ \expandafter\let\csname f@nch@__hook_toplevel~#1\expandafter\endcsname
314
+ \csname __hook_toplevel~#1\endcsname
315
+ \expandafter\let\csname f@nch@__hook_next~#1\expandafter\endcsname
316
+ \csname __hook_next~#1\endcsname
317
+ \expandafter\let\csname f@nch@g__hook_#1_code_prop\expandafter\endcsname
318
+ \csname g__hook_#1_code_prop\endcsname
319
+ \RemoveFromHook{#1}[*]
320
+ \ClearHookNext{#1}
321
+ }
322
+ \def\f@nch@restore@parhook #1{
323
+ \global\expandafter\let\csname __hook~#1\expandafter\endcsname
324
+ \csname f@nch@__hook~#1\endcsname
325
+ \global\expandafter\let\csname __hook_toplevel~#1\expandafter\endcsname
326
+ \csname f@nch@__hook_toplevel~#1\endcsname
327
+ \global\expandafter\let\csname __hook_next~#1\expandafter\endcsname
328
+ \csname f@nch@__hook_next~#1\endcsname
329
+ \global\expandafter\let\csname g__hook_#1_code_prop\expandafter\endcsname
330
+ \csname f@nch@g__hook_#1_code_prop\endcsname
331
+ }
332
+ \def\f@nch@resetpar{
333
+ \f@nch@everypar{}
334
+ \f@nch@saveclr@parhook{para/before}
335
+ \f@nch@saveclr@parhook{para/begin}
336
+ \f@nch@saveclr@parhook{para/end}
337
+ \f@nch@saveclr@parhook{para/after}
338
+ }
339
+ \def\f@nch@restorepar{
340
+ \f@nch@restore@parhook{para/before}
341
+ \f@nch@restore@parhook{para/begin}
342
+ \f@nch@restore@parhook{para/end}
343
+ \f@nch@restore@parhook{para/after}
344
+ }
345
+ }{
346
+ \def\f@nch@resetpar{
347
+ \f@nch@everypar{}
348
+ }
349
+ \def\f@nch@restorepar{}
350
+ }
351
+ \ExplSyntaxOff
352
+ \else
353
+ \def\f@nch@resetpar{%
354
+ \f@nch@everypar{}%
355
+ }
356
+ \def\f@nch@restorepar{}
357
+ \fi
358
+ \newcommand\f@nch@noUppercase[2][]{#2}
359
+ \def\f@nch@reset{\f@nch@resetpar\restorecr\endlinechar=13
360
+ \catcode`\\=0\catcode`\{=1\catcode`\}=2\catcode`\$=3\catcode`\&=4
361
+ \catcode`\#=6\catcode`\^=7\catcode`\_=8\catcode`\ =10\catcode`\@=11
362
+ \catcode`\:=11\catcode`\~=13\catcode`\%=14
363
+ \catcode0=15 %NULL
364
+ \catcode9=10 %TAB
365
+ \let\\\@normalcr \let\raggedleft\f@nch@raggedleft
366
+ \let\raggedright\f@nch@raggedright \let\centering\f@nch@centering
367
+ \def\baselinestretch{1}%
368
+ \hsize=\headwidth
369
+ \def\nouppercase##1{{%
370
+ \let\uppercase\relax\let\MakeUppercase\f@nch@noUppercase
371
+ \expandafter\let\csname MakeUppercase \endcsname\relax
372
+ \expandafter\def\csname MakeUppercase\space\space\space\endcsname
373
+ [####1]####2{####2}%
374
+ ##1}}%
375
+ \@ifundefined{@normalsize} {\normalsize} % for ucthesis.cls
376
+ {\@normalsize}%
377
+ }
378
+ \newcommand*{\fancycenter}[1][1em]{%
379
+ \@ifnextchar[{\f@nch@center{#1}}{\f@nch@center{#1}[3]}%
380
+ }
381
+ \def\f@nch@center#1[#2]#3#4#5{%
382
+ \def\@tempa{#4}\ifx\@tempa\@empty
383
+ \hbox to\linewidth{\color@begingroup{#3}\hfil {#5}\color@endgroup}%
384
+ \else
385
+ \setlength\@tempdima{#1}%
386
+ \setlength{\@tempdimb}{#2\@tempdima}%
387
+ \@tempdimc \@tempdimb \advance\@tempdimc -\@tempdima
388
+ \setlength\@tempskipa{\@tempdimb \@plus 1fil \@minus \@tempdimc}%
389
+ \@tempskipb\@tempskipa
390
+ \def\@tempa{#3}\ifx\@tempa\@empty
391
+ \addtolength\@tempskipa{\z@ \@minus \@tempdima}%
392
+ \fi
393
+ \def\@tempa{#5}\ifx\@tempa\@empty % empty right
394
+ \addtolength\@tempskipb{\z@ \@minus \@tempdima}%
395
+ \fi
396
+ \settowidth{\@tempdimb}{#3}%
397
+ \settowidth{\@tempdimc}{#5}%
398
+ \ifdim\@tempdimb>\@tempdimc
399
+ \advance\@tempdimb -\@tempdimc
400
+ \addtolength\@tempskipb{\@tempdimb \@minus \@tempdimb}%
401
+ \else
402
+ \advance\@tempdimc -\@tempdimb
403
+ \addtolength\@tempskipa{\@tempdimc \@minus \@tempdimc}%
404
+ \fi
405
+ \hbox to\linewidth{\color@begingroup{#3}\hskip \@tempskipa
406
+ {#4}\hskip \@tempskipb {#5}\color@endgroup}%
407
+ \fi
408
+ }
409
+ \newcommand{\f@nch@headinit}{}
410
+ \newcommand{\fancyheadinit}[1]{%
411
+ \def\f@nch@headinit{#1}%
412
+ }
413
+ \newcommand{\f@nch@footinit}{}
414
+ \newcommand{\fancyfootinit}[1]{%
415
+ \def\f@nch@footinit{#1}%
416
+ }
417
+ \newcommand{\fancyhfinit}[1]{%
418
+ \def\f@nch@headinit{#1}%
419
+ \def\f@nch@footinit{#1}%
420
+ }
421
+ \ifdefined\NewMirroredHookPair
422
+ \NewMirroredHookPair{fancyhdr/before}{fancyhdr/after}
423
+ \NewMirroredHookPair{fancyhdr/head/begin}{fancyhdr/head/end}
424
+ \NewMirroredHookPair{fancyhdr/foot/begin}{fancyhdr/foot/end}
425
+ \fi
426
+ \newlength\f@nch@height
427
+ \newlength\f@nch@footalignment
428
+ \newif\iff@nch@footalign\f@nch@footalignfalse
429
+ \newcommand{\fancyfootalign}[1]{%
430
+ \def\temp@a{#1}%
431
+ \ifx\temp@a\@empty
432
+ \f@nch@footalignfalse
433
+ \else
434
+ \f@nch@footaligntrue
435
+ \setlength\f@nch@footalignment{#1}%
436
+ \fi
437
+ }
438
+ \newcommand\fancyhdrsettoheight[2]{%
439
+ \expandafter\ifx\csname f@nch@#2\endcsname\fancyhdrsettoheight
440
+ \else\PackageError{fancyhdr}{Unknown parameter #2 in \string\fancyhdrsettoheight}{}\fi
441
+ \setbox\@tempboxa\hbox{{\f@nch@checkfalse\csname @#2\endcsname}}%
442
+ \setlength{#1}\f@nch@height
443
+ \setbox\@tempboxa\box\voidb@x
444
+ }
445
+ \let\f@nch@oddhead\fancyhdrsettoheight
446
+ \let\f@nch@evenhead\fancyhdrsettoheight
447
+ \let\f@nch@oddfoot\fancyhdrsettoheight
448
+ \let\f@nch@evenfoot\fancyhdrsettoheight
449
+ \newcommand\f@nch@vbox[2]{%
450
+ \setbox0\vbox{#2}%
451
+ \global\f@nch@height=\ht0
452
+ \ifdim\ht0>#1\relax
453
+ \iff@nch@check
454
+ \dimen0=#1\advance\dimen0-\ht0
455
+ \PackageWarning{fancyhdr}{%
456
+ \string#1 is too small (\the#1): \MessageBreak
457
+ Make it at least \the\ht0, for example:\MessageBreak
458
+ \string\setlength{\string#1}{\the\ht0}%
459
+ \iff@nch@compatViii .\MessageBreak
460
+ We now make it that large for the rest of the document.\MessageBreak
461
+ This may cause the page layout to be inconsistent, however
462
+ \fi
463
+ \ifx#1\headheight .\MessageBreak
464
+ You might also make \topmargin smaller:\MessageBreak
465
+ \string\addtolength{\string\topmargin}{\the\dimen0}%
466
+ \fi
467
+ \@gobble
468
+ }%
469
+ \iff@nch@compatViii
470
+ \dimen0=#1\relax
471
+ \global#1=\ht0\relax
472
+ \ht0=\dimen0 %
473
+ \else
474
+ \ht0=#1\relax
475
+ \fi
476
+ \else
477
+ \ht0=#1\relax
478
+ \fi
479
+ \fi
480
+ \box0}
481
+ \newcommand\f@nch@head[6]{%
482
+ \f@nch@reset
483
+ \ifdefined\UseHook\UseHook{fancyhdr/before}\UseHook{fancyhdr/head/begin}\fi
484
+ \f@nch@headinit\relax
485
+ #1%
486
+ \hbox to\headwidth{%
487
+ \f@nch@vbox\headheight{%
488
+ \f@nch@hfbox{#2}{#3}{#4}{#6}{h}%
489
+ \vskip\headruleskip\relax
490
+ \headrule
491
+ }%
492
+ }%
493
+ #5%
494
+ \ifdefined\UseHook\UseHook{fancyhdr/head/end}\UseHook{fancyhdr/after}\fi
495
+ \f@nch@restorepar
496
+ }
497
+ \newcommand\f@nch@foot[6]{%
498
+ \f@nch@reset
499
+ \ifdefined\UseHook\UseHook{fancyhdr/before}\UseHook{fancyhdr/foot/begin}\fi
500
+ \f@nch@footinit\relax
501
+ #1%
502
+ \hbox to\headwidth{%
503
+ \f@nch@vbox\footskip{%
504
+ \setbox0=\vbox{\footrule}\unvbox0
505
+ \vskip\footruleskip
506
+ \f@nch@hfbox{#2}{#3}{#4}{#6}{f}%
507
+ \iff@nch@footalign \vskip\f@nch@footalignment \fi
508
+ }%
509
+ }%
510
+ #5%
511
+ \ifdefined\UseHook\UseHook{fancyhdr/foot/end}\UseHook{fancyhdr/after}\fi
512
+ \f@nch@restorepar
513
+ }
514
+ \newlength\f@nch@widthL
515
+ \newlength\f@nch@widthC
516
+ \newlength\f@nch@widthR
517
+ \newcommand\f@nch@hfbox[5]{%
518
+ \setlength\f@nch@widthL{\csname f@nch@width@#4l#5\endcsname}%
519
+ \setlength\f@nch@widthC{\csname f@nch@width@#4c#5\endcsname}%
520
+ \setlength\f@nch@widthR{\csname f@nch@width@#4r#5\endcsname}%
521
+ \let\@tempa\f@nch@hfbox@center
522
+ \ifdim \dimexpr \f@nch@widthL+\f@nch@widthC+\f@nch@widthR>\headwidth
523
+ \else
524
+ \ifdim \dimexpr \f@nch@widthL+0.5\f@nch@widthC>0.5\headwidth
525
+ \let \@tempa\f@nch@hfbox@fit
526
+ \fi
527
+ \ifdim \dimexpr \f@nch@widthR+0.5\f@nch@widthC>0.5\headwidth
528
+ \let \@tempa\f@nch@hfbox@fit
529
+ \fi
530
+ \fi
531
+ \@tempa{#1}{#2}{#3}#4#5%
532
+ }
533
+ \newcommand\f@nch@hfbox@center[5]{%
534
+ \hbox to \headwidth{%
535
+ \rlap{\f@nch@parbox{#1}\f@nch@widthL{#4}l{#5}}%
536
+ \hfill
537
+ \f@nch@parbox{#2}\f@nch@widthC{#4}c{#5}%
538
+ \hfill
539
+ \llap{\f@nch@parbox{#3}\f@nch@widthR{#4}r{#5}}%
540
+ }%
541
+ }
542
+ \newcommand\f@nch@hfbox@fit[5]{%
543
+ \hbox to \headwidth{%
544
+ \f@nch@parbox{#1}\f@nch@widthL{#4}l{#5}%
545
+ \hfill
546
+ \f@nch@parbox{#2}\f@nch@widthC{#4}c{#5}%
547
+ \hfill
548
+ \f@nch@parbox{#3}\f@nch@widthR{#4}r{#5}%
549
+ }%
550
+ }%
551
+ \newcommand\f@nch@parbox[5]{%
552
+ \expandafter\expandafter\expandafter\f@nch@parbox@align
553
+ \csname f@nch@align@#3#4#5\endcsname
554
+ \parbox[\f@nch@align@@v]{#2}%
555
+ {%
556
+ \f@nch@align@@pre
557
+ \f@nch@align@@h\leavevmode\ignorespaces#1%
558
+ \f@nch@align@@post
559
+ }%
560
+ }
561
+ \newcommand\f@nch@parbox@align[2]{%
562
+ \def\f@nch@align@@pre{}%
563
+ \def\f@nch@align@@post{}%
564
+ \csname f@nch@parbox@align@v#1\endcsname
565
+ \csname f@nch@parbox@align@h#2\endcsname
566
+ }
567
+ \def\f@nch@parbox@align@vT{\def\f@nch@align@@v{t}\def\f@nch@align@@pre{\vspace{0pt}}}
568
+ \def\f@nch@parbox@align@vt{\def\f@nch@align@@v{t}}
569
+ \def\f@nch@parbox@align@vc{\def\f@nch@align@@v{c}}
570
+ \def\f@nch@parbox@align@vb{\def\f@nch@align@@v{b}}
571
+ \def\f@nch@parbox@align@vB{\def\f@nch@align@@v{b}\def\f@nch@align@@post{\vspace{0pt}}}
572
+ \def\f@nch@parbox@align@hl{\def\f@nch@align@@h{\raggedright}}
573
+ \def\f@nch@parbox@align@hc{\def\f@nch@align@@h{\centering}}
574
+ \def\f@nch@parbox@align@hr{\def\f@nch@align@@h{\raggedleft}}
575
+ \def\f@nch@parbox@align@hj{\def\f@nch@align@@h{}}
576
+ \@ifundefined{@chapapp}{\let\@chapapp\chaptername}{}%
577
+ \def\f@nch@initialise{%
578
+ \@ifundefined{chapter}%
579
+ {\def\sectionmark##1{\markboth{\MakeUppercase{\ifnum \c@secnumdepth>\z@
580
+ \thesection\hskip 1em\relax
581
+ \fi ##1}}{}}%
582
+ \def\subsectionmark##1{\markright {\ifnum \c@secnumdepth >\@ne
583
+ \thesubsection\hskip 1em\relax \fi ##1}}}%
584
+ {\def\chaptermark##1{\markboth {\MakeUppercase{\ifnum
585
+ \c@secnumdepth>\m@ne \@chapapp\ \thechapter. \ \fi ##1}}{}}%
586
+ \def\sectionmark##1{\markright{\MakeUppercase{\ifnum \c@secnumdepth >\z@
587
+ \thesection. \ \fi ##1}}}%
588
+ }%
589
+ \def\headrule{{\if@fancyplain\let\headrulewidth\plainheadrulewidth\fi
590
+ \hrule\@height\headrulewidth\@width\headwidth
591
+ \vskip-\headrulewidth}}%
592
+ \def\footrule{{\if@fancyplain\let\footrulewidth\plainfootrulewidth\fi
593
+ \hrule\@width\headwidth\@height\footrulewidth}}%
594
+ \def\headrulewidth{0.4pt}%
595
+ \def\footrulewidth{0pt}%
596
+ \def\headruleskip{0pt}%
597
+ \def\footruleskip{0.3\normalbaselineskip}%
598
+ \fancyhf{}%
599
+ \if@twoside
600
+ \fancyhead[el,or]{\fancyplain{}{\slshape\rightmark}}%
601
+ \fancyhead[er,ol]{\fancyplain{}{\slshape\leftmark}}%
602
+ \else
603
+ \fancyhead[l]{\fancyplain{}{\slshape\rightmark}}%
604
+ \fancyhead[r]{\fancyplain{}{\slshape\leftmark}}%
605
+ \fi
606
+ \fancyfoot[c]{\rmfamily\thepage}% page number
607
+ }
608
+ \f@nch@initialise
609
+ \def\ps@f@nch@fancyproto{%
610
+ \ifdim\headwidth<0sp
611
+ \global\advance\headwidth123456789sp\global\advance\headwidth\textwidth
612
+ \fi
613
+ \gdef\ps@f@nch@fancyproto{\@fancyplainfalse\ps@f@nch@fancycore}%
614
+ \@fancyplainfalse\ps@f@nch@fancycore
615
+ }%
616
+ \@namedef{f@nch@ps@f@nch@fancyproto-is-fancyhdr}{}
617
+ \def\ps@fancy{\ps@f@nch@fancyproto}
618
+ \@namedef{f@nch@ps@fancy-is-fancyhdr}{}
619
+ \def\ps@fancyplain{\ps@f@nch@fancyproto \let\ps@plain\ps@plain@fancy}
620
+ \def\ps@plain@fancy{\@fancyplaintrue\ps@f@nch@fancycore}
621
+ \let\f@nch@ps@empty\ps@empty
622
+ \def\ps@f@nch@fancycore{%
623
+ \f@nch@ps@empty
624
+ \def\@mkboth{\protect\markboth}%
625
+ \def\f@nch@oddhead{\f@nch@head\f@nch@Oolh\f@nch@olh\f@nch@och\f@nch@orh\f@nch@Oorh{o}}%
626
+ \def\@oddhead{%
627
+ \iff@nch@twoside
628
+ \ifodd\c@page
629
+ \f@nch@oddhead
630
+ \else
631
+ \@evenhead
632
+ \fi
633
+ \else
634
+ \f@nch@oddhead
635
+ \fi
636
+ }
637
+ \def\f@nch@oddfoot{\f@nch@foot\f@nch@Oolf\f@nch@olf\f@nch@ocf\f@nch@orf\f@nch@Oorf{o}}%
638
+ \def\@oddfoot{%
639
+ \iff@nch@twoside
640
+ \ifodd\c@page
641
+ \f@nch@oddfoot
642
+ \else
643
+ \@evenfoot
644
+ \fi
645
+ \else
646
+ \f@nch@oddfoot
647
+ \fi
648
+ }
649
+ \def\@evenhead{\f@nch@head\f@nch@Oelh\f@nch@elh\f@nch@ech\f@nch@erh\f@nch@Oerh{e}}%
650
+ \def\@evenfoot{\f@nch@foot\f@nch@Oelf\f@nch@elf\f@nch@ecf\f@nch@erf\f@nch@Oerf{e}}%
651
+ }
652
+ \def\f@nch@Oolh{\if@reversemargin\hss\else\relax\fi}
653
+ \def\f@nch@Oorh{\if@reversemargin\relax\else\hss\fi}
654
+ \let\f@nch@Oelh\f@nch@Oorh
655
+ \let\f@nch@Oerh\f@nch@Oolh
656
+ \let\f@nch@Oolf\f@nch@Oolh
657
+ \let\f@nch@Oorf\f@nch@Oorh
658
+ \let\f@nch@Oelf\f@nch@Oelh
659
+ \let\f@nch@Oerf\f@nch@Oerh
660
+ \def\f@nch@offsolh{\headwidth=\textwidth\advance\headwidth\f@nch@offset@olh
661
+ \advance\headwidth\f@nch@offset@orh\hskip-\f@nch@offset@olh}
662
+ \def\f@nch@offselh{\headwidth=\textwidth\advance\headwidth\f@nch@offset@elh
663
+ \advance\headwidth\f@nch@offset@erh\hskip-\f@nch@offset@elh}
664
+ \def\f@nch@offsolf{\headwidth=\textwidth\advance\headwidth\f@nch@offset@olf
665
+ \advance\headwidth\f@nch@offset@orf\hskip-\f@nch@offset@olf}
666
+ \def\f@nch@offself{\headwidth=\textwidth\advance\headwidth\f@nch@offset@elf
667
+ \advance\headwidth\f@nch@offset@erf\hskip-\f@nch@offset@elf}
668
+ \def\f@nch@setoffs{%
669
+ \f@nch@gbl\let\headwidth\f@nch@headwidth
670
+ \f@nch@gbl\def\f@nch@Oolh{\f@nch@offsolh}%
671
+ \f@nch@gbl\def\f@nch@Oelh{\f@nch@offselh}%
672
+ \f@nch@gbl\def\f@nch@Oorh{\hss}%
673
+ \f@nch@gbl\def\f@nch@Oerh{\hss}%
674
+ \f@nch@gbl\def\f@nch@Oolf{\f@nch@offsolf}%
675
+ \f@nch@gbl\def\f@nch@Oelf{\f@nch@offself}%
676
+ \f@nch@gbl\def\f@nch@Oorf{\hss}%
677
+ \f@nch@gbl\def\f@nch@Oerf{\hss}%
678
+ }
679
+ \newif\iff@nch@footnote
680
+ \AtBeginDocument{%
681
+ \let\latex@makecol\@makecol
682
+ \def\@makecol{\ifvoid\footins\f@nch@footnotefalse\else\f@nch@footnotetrue\fi
683
+ \let\f@nch@topfloat\@toplist\let\f@nch@botfloat\@botlist\latex@makecol}%
684
+ }
685
+ \newcommand\iftopfloat[2]{\ifx\f@nch@topfloat\@empty #2\else #1\fi}%
686
+ \newcommand\ifbotfloat[2]{\ifx\f@nch@botfloat\@empty #2\else #1\fi}%
687
+ \newcommand\iffloatpage[2]{\if@fcolmade #1\else #2\fi}%
688
+ \newcommand\iffootnote[2]{\iff@nch@footnote #1\else #2\fi}%
689
+ \ifx\@temptokenb\undefined \csname newtoks\endcsname\@temptokenb\fi
690
+ \newif\iff@nch@pagestyle@star
691
+ \newcommand\fancypagestyle{%
692
+ \@ifstar{\f@nch@pagestyle@startrue\f@nch@pagestyle}%
693
+ {\f@nch@pagestyle@starfalse\f@nch@pagestyle}%
694
+ }
695
+ \newcommand\f@nch@pagestyle[1]{%
696
+ \@ifnextchar[{\f@nch@@pagestyle{#1}}{\f@nch@@pagestyle{#1}[f@nch@fancyproto]}%
697
+ }
698
+ \long\def\f@nch@@pagestyle#1[#2]#3{%
699
+ \@ifundefined{ps@#2}{%
700
+ \PackageError{fancyhdr}{\string\fancypagestyle: Unknown base page style `#2'}{}%
701
+ }{%
702
+ \@ifundefined{f@nch@ps@#2-is-fancyhdr}{%
703
+ \PackageError{fancyhdr}{\string\fancypagestyle: Base page style `#2' is not fancyhdr-based}{}%
704
+ }%
705
+ {%
706
+ \f@nch@pagestyle@setup
707
+ \def\temp@b{\@namedef{ps@#1}}%
708
+ \expandafter\temp@b\expandafter{\the\@temptokenb
709
+ \let\f@nch@gbl\relax\@nameuse{ps@#2}#3\relax}%
710
+ \@namedef{f@nch@ps@#1-is-fancyhdr}{}%
711
+ }%
712
+ }%
713
+ }
714
+ \newcommand\f@nch@pagestyle@setup{%
715
+ \iff@nch@pagestyle@star
716
+ \iff@nch@check\@temptokenb={\f@nch@checktrue}\else\@temptokenb={\f@nch@checkfalse}\fi
717
+ \@tfor\temp@a:=
718
+ \f@nch@olh\f@nch@och\f@nch@orh\f@nch@elh\f@nch@ech\f@nch@erh
719
+ \f@nch@olf\f@nch@ocf\f@nch@orf\f@nch@elf\f@nch@ecf\f@nch@erf
720
+ \f@nch@width@elh\f@nch@width@ech\f@nch@width@erh\f@nch@width@olh
721
+ \f@nch@width@och\f@nch@width@orh\f@nch@width@elf\f@nch@width@ecf
722
+ \f@nch@width@erf\f@nch@width@olf\f@nch@width@ocf\f@nch@width@orf
723
+ \f@nch@align@elh\f@nch@align@ech\f@nch@align@erh\f@nch@align@olh
724
+ \f@nch@align@och\f@nch@align@orh\f@nch@align@elf\f@nch@align@ecf
725
+ \f@nch@align@erf\f@nch@align@olf\f@nch@align@ocf\f@nch@align@orf
726
+ \f@nch@Oolh\f@nch@Oorh\f@nch@Oelh\f@nch@Oerh
727
+ \f@nch@Oolf\f@nch@Oorf\f@nch@Oelf\f@nch@Oerf
728
+ \f@nch@headinit\f@nch@footinit
729
+ \headrule\headrulewidth\footrule\footrulewidth
730
+ \do {%
731
+ \toks@=\expandafter\expandafter\expandafter{\temp@a}%
732
+ \toks@=\expandafter\expandafter\expandafter{%
733
+ \expandafter\expandafter\expandafter\def
734
+ \expandafter\expandafter\temp@a\expandafter{\the\toks@}}%
735
+ \edef\temp@b{\@temptokenb={\the\@temptokenb\the\toks@}}%
736
+ \temp@b
737
+ }%
738
+ \@tfor\temp@a:=
739
+ \f@nch@offset@olh\f@nch@offset@orh\f@nch@offset@elh\f@nch@offset@erh
740
+ \f@nch@offset@olf\f@nch@offset@orf\f@nch@offset@elf\f@nch@offset@erf
741
+ \do {%
742
+ \toks@=\expandafter\expandafter\expandafter{\expandafter\the\temp@a}%
743
+ \toks@=\expandafter\expandafter\expandafter{%
744
+ \expandafter\expandafter\expandafter\setlength
745
+ \expandafter\expandafter\temp@a\expandafter{\the\toks@}}%
746
+ \edef\temp@b{\@temptokenb={\the\@temptokenb\the\toks@}}%
747
+ \temp@b
748
+ }%
749
+ \else
750
+ \@temptokenb={}%
751
+ \fi
752
+ }
753
+ \newcommand\fancypagestyleassign[2]{%
754
+ \@ifundefined{ps@#2}{%
755
+ \PackageError{fancyhdr}{\string\fancypagestyleassign: Unknown page style `#2'}{}%
756
+ }{%
757
+ \expandafter\let
758
+ \csname ps@#1\expandafter\endcsname
759
+ \csname ps@#2\endcsname
760
+ \@ifundefined{f@nch@ps@#2-is-fancyhdr}{%
761
+ \expandafter\let\csname f@nch@ps@#1-is-fancyhdr\endcsname\@undefined
762
+ }{%
763
+ \@namedef{f@nch@ps@#1-is-fancyhdr}{}%
764
+ }%
765
+ }%
766
+ }
767
+ \fancypagestyle*{fancydefault}{\f@nch@initialise}
768
+ \def\f@nchdrbox@topstrut{\vrule height\ht\strutbox width\z@}
769
+ \def\f@nchdrbox@botstrut{\vrule depth\dp\strutbox width\z@}
770
+ \def\f@nchdrbox@nostrut{\noalign{\vspace{0pt}}\let\f@nchdrbox@@crstrut\f@nchdrbox@botstrut}
771
+ \NewDocumentCommand{\fancyhdrbox}{ O{cl} o m }{%
772
+ \begingroup
773
+ \let\f@nchdrbox@@pre\f@nchdrbox@topstrut
774
+ \let\f@nchdrbox@@postx\f@nchdrbox@botstrut
775
+ \let\f@nchdrbox@@posty\relax
776
+ \let\f@nchdrbox@@crstrut\strut
777
+ \IfNoValueTF{#2}%
778
+ {\let\f@nchdrbox@@halignto\@empty}%
779
+ {\setlength\@tempdima{#2}%
780
+ \def\f@nchdrbox@@halignto{to\@tempdima}}%
781
+ \def\@tempa{#1}%
782
+ \ifx\@tempa\@empty
783
+ \f@nchdrbox@align cl\@nil{#3}%
784
+ \else
785
+ \f@nchdrbox@align #1\@nil{#3}%
786
+ \fi
787
+ \endgroup
788
+ }
789
+ \protected\def\f@nchdrbox@cr{%
790
+ {\ifnum0=`}\fi\@ifstar\@f@nchdrbox@xcr\@f@nchdrbox@xcr}
791
+
792
+ \def\@f@nchdrbox@xcr{%
793
+ \unskip\f@nchdrbox@@crstrut
794
+ \@ifnextchar[\@f@nchdrbox@argc{\ifnum0=`{\fi}\cr}%
795
+ }
796
+
797
+ \def\@f@nchdrbox@argc[#1]{%
798
+ \ifnum0=`{\fi}%
799
+ \ifdim #1>\z@
800
+ \unskip\@f@nchdrbox@xargc{#1}%
801
+ \else
802
+ \@f@nchdrbox@yargc{#1}%
803
+ \fi}
804
+
805
+ \def\@f@nchdrbox@xargc#1{\@tempdima #1\advance\@tempdima \dp \strutbox
806
+ \vrule \@height\z@ \@depth\@tempdima \@width\z@ \cr}
807
+
808
+ \def\@f@nchdrbox@yargc#1{\cr\noalign{\setlength\@tempdima{#1}\vskip\@tempdima}}
809
+ \def\f@nchdrbox@T{\let\f@nchdrbox@@pre\f@nchdrbox@nostrut
810
+ \f@nchdrbox@t}
811
+ \def\f@nchdrbox@t{\def\f@nchdrbox@@v{t}\def\f@nchdrbox@@h{l}}
812
+ \def\f@nchdrbox@c{\def\f@nchdrbox@@v{c}\def\f@nchdrbox@@h{c}}
813
+ \def\f@nchdrbox@b{\def\f@nchdrbox@@v{b}\def\f@nchdrbox@@h{l}}
814
+ \def\f@nchdrbox@B{\let\f@nchdrbox@@postx\relax
815
+ \def\f@nchdrbox@@posty{\vspace{0pt}}%
816
+ \f@nchdrbox@b}
817
+ \long\def\f@nchdrbox@align#1#2\@nil#3{%
818
+ \f@nch@ifin{#1}{TtcbB}{%
819
+ \@nameuse{f@nchdrbox@#1}%
820
+ \def\@tempa{#2}%
821
+ \ifx\@tempa\@empty\else \def\f@nchdrbox@@h{#2}\fi
822
+ }%
823
+ {\def\f@nchdrbox@@v{c}\def\f@nchdrbox@@h{#1}}%
824
+ \expandafter\f@nch@ifin\expandafter{\f@nchdrbox@@h}{lcr}{}%
825
+ {\PackageError{fancyhdr}{\string\fancyhdrbox: Illegal char `\f@nchdrbox@@h'\MessageBreak
826
+ in alignment argument}{}}%
827
+ \let\\\f@nchdrbox@cr
828
+ \setbox0=\if \f@nchdrbox@@v t\vtop
829
+ \else \vbox
830
+ \fi
831
+ {%
832
+ \ialign \f@nchdrbox@@halignto
833
+ \bgroup \relax
834
+ {\if \f@nchdrbox@@h l\hskip 1sp\else \hfil \fi
835
+ \ignorespaces ##\unskip
836
+ \if\f@nchdrbox@@h r\else \hfil \fi
837
+ }%
838
+ \tabskip\z@skip \cr
839
+ \f@nchdrbox@@pre
840
+ #3\unskip \f@nchdrbox@@postx
841
+ \crcr
842
+ \egroup
843
+ \f@nchdrbox@@posty
844
+ }%
845
+ \if\f@nchdrbox@@v c\@tempdima=\ht0\advance\@tempdima\dp0%
846
+ \ht0=0.5\@tempdima\dp0=0.5\@tempdima\fi
847
+ \leavevmode \box0
848
+ }
849
+ \@ifclassloaded{newlfm}
850
+ {
851
+ \let\ps@@empty\f@nch@ps@empty
852
+ \AtBeginDocument{%
853
+ \renewcommand{\@zfancyhead}[5]{\relax\hbox to\headwidth{\f@nch@reset
854
+ \@zfancyvbox\headheight{\hbox
855
+ {\rlap{\parbox[b]{\headwidth}{\raggedright\f@nch@olh}}\hfill
856
+ \parbox[b]{\headwidth}{\centering\f@nch@olh}\hfill
857
+ \llap{\parbox[b]{\headwidth}{\raggedleft\f@nch@orh}}}%
858
+ \zheadrule}}\relax}%
859
+ }
860
+ }
861
+ {}
862
+ \endinput
863
+ %%
864
+ %% End of file `fancyhdr.sty'.