This repository serves as a reusable LaTeX template for short-form scientific writing, including Nature Biomedical Engineering Correspondences, brief perspectives, and related article types. It is designed for collaborative, version-controlled writing using Git.
The template emphasizes:
- Clean separation of content into small files
- Predictable LaTeX builds
- Minimal formatting assumptions (journal systems reflow content)
- Low merge-conflict overhead for multi-author work
This template is optimized for:
- Nature-family Correspondences (e.g., Nature Biomedical Engineering)
- Short commentaries or perspectives
- Early-stage drafts prior to journal-specific class files
It is not intended for:
- Full-length technical articles with complex sectioning
- Camera-ready production PDFs (journal templates should be used later)
Correspondences discuss issues relevant to a broad slice of the biomedical engineering community. They do not present original research and are distinct from Matters Arising. Peer review is at the Editor’s discretion.
- Main text: 300–800 words
- Display items: 1 figure total
- References: up to 10
- Reference list: article titles omitted (book titles allowed)
- Exceptions may be granted by the Editor on a case-by-case basis
project/
tex/
main.tex # Thin driver file
macros.tex # Shared macros and helper commands
refs.bib # Bibliography (biblatex/biber)
sections/
01_maintext.tex
02_figure_caption.tex
03_acknowledgements.tex
04_declaration_of_interests.tex
05_contributions.tex
06_online_methods.tex
06_supplementary_figures.tex
07_supplementary_table_1.tex
08_supplementary_notes.tex
figures/ # Figures (use Git LFS if large)
supp_figures/ # Optional supplementary figures
build/ # Auto-generated PDF and aux files
Makefile
.gitignore
- TeXLive (recommended: current year)
latexmkbiber(for bibliography)
make pdfmake cleanThe compiled PDF and auxiliary files are written to build/.
Write prose with one sentence per line:
This is the first sentence.
This is the second sentence.This dramatically improves Git diffs and reduces merge conflicts.
Each major component lives in its own file under tex/sections/.
Avoid editing main.tex except for structure and ordering.
Use lightweight comments for internal notes:
% TODO(Name): tighten this paragraph.Remove TODOs before submission.
- Only one main figure is allowed for Correspondence articles.
- Main figures typically live in
figures/. - Supplementary figures (if permitted) are grouped in
06_supplementary_figures.tex. - Store supplementary figure assets under
figures/supp_figures/to keep them separate from the main display item. - Supplementary figures are automatically numbered S1, S2, ...
using helper macros defined in
macros.tex.
main.texuses explicit page breaks and float barriers between figures, methods, supplementary figures, supplementary tables, and supplementary notes to keep ordering stable.- The supplementary table scaffold uses
longtable, so long parts lists can span multiple pages cleanly. - Supplementary notes use unnumbered section headings while preserving
cross-reference labels through helper macros in
macros.tex.
- Uses
biblatex+biberfor draft flexibility. - Maintain a single
refs.bibfile per project. - Use stable citation keys (e.g.,
AuthorYearKeyword).
Journal-specific .cls / .bst files can be introduced later if required.
- Do not commit build artifacts.
- Use feature branches and pull requests for substantive edits.
- PDFs can be attached as CI artifacts or generated locally.
This template is intentionally conservative. It prioritizes:
- clarity over cleverness
- reproducibility over formatting polish
- collaboration over customization
Journal-specific styling should be applied after acceptance using official publisher templates.
This template is intended for internal academic use. Adapt freely within your group or collaborators.