academic-writing-latexlisted
Install: claude install-skill dongzhigang13305312738-art/paper-skills
# Academic Writing with LaTeX Templates
## Overview
This guide covers the workflow of writing academic papers and theses using LaTeX templates. It addresses template selection, document structure, common environments, bibliography management, and compilation. Designed for researchers who need to produce professional documents conforming to specific institutional or publisher formatting requirements.
## Template Selection
### Conference and Journal Templates
| Publisher | Template Source | Document Class |
|-----------|----------------|---------------|
| IEEE | [ieee.org/conferences](https://www.ieee.org/conferences/publishing/templates.html) | `IEEEtran` |
| ACM | [acm.org/publications](https://www.acm.org/publications/proceedings-template) | `acmart` |
| Springer | LNCS template package | `llncs` |
| Elsevier | [elsarticle](https://www.elsevier.com/researcher/author/policies-and-guidelines/latex-instructions) | `elsarticle` |
| Nature | Author submission guidelines | `nature` |
| APS/AIP | [REVTeX](https://journals.aps.org/revtex) | `revtex4-2` |
### Thesis Templates
```latex
% Chinese university thesis examples
\documentclass{thuthesis} % Tsinghua University
\documentclass{sjtuthesis} % Shanghai Jiao Tong University
\documentclass{ustcthesis} % USTC
\documentclass{xjtuthesis} % Xi'an Jiao Tong University
% International thesis
\documentclass{Dissertate} % Harvard-style
\documentclass[phd]{novathesis} % Universidade Nova de Lisboa
```
## Document Structu