Publications Data Notes
Publications Data Notes
Publication pages live under _publications/. They are rendered by the publications Jekyll collection configured in _config.yml and listed by _pages/publications.html.
Filename and permalink conventions
The filename prefix encodes the publication type and is used to split the listing on _pages/publications.html.
- Active preprint
- Filename:
_publications/preprint-<yyyy-mm-dd>-<slug>.md - Permalink:
/publication/preprint-<yyyy-mm-dd>-<slug> - Listed under “Preprints” on the publications page
- Filename:
- Peer-reviewed paper
- Filename:
_publications/<yyyy-mm-dd>-<slug>.md - Permalink:
/publication/<yyyy-mm-dd>-<slug> - Listed under “Peer-reviewed publications” on the publications page
- Filename:
- Preprint that has since been published
- Filename:
_publications/published-preprint-<yyyy-mm-dd>-<slug>.md - Permalink: keep the original
/publication/preprint-<yyyy-mm-dd>-<slug> - Front matter: add
ispublishedpreprint: "True" - The publications page hides these from the active “Preprints” list while keeping the preprint URL alive as a redirect to the published page
- Filename:
The date in the filename and permalink should be the original posting date for preprints, and the publication date for peer-reviewed papers.
Required front matter
Each publication page should define these fields in front matter:
title- For preprints, prefix the title with
[Preprint]so the listing visually flags it
- For preprints, prefix the title with
collection: publicationspermalink- Must match the filename pattern above
excerpt- One- or two-sentence summary shown on the publications page
dateyyyy-mm-ddposting or publication date
venue- Preprint server such as
bioRxivormedRxiv, or the journal name
- Preprint server such as
paperurl- DOI link, journal link, or preprint server link
citation- Full citation string used on the publication page
Recommended front matter
excerpt_image- Path under
/files/<year>/...to a small graphical abstract or figure used as the listing thumbnail
- Path under
highlight: true- Marks the entry as a select publication; select publications appear at the top of
_pages/publications.html
- Marks the entry as a select publication; select publications appear at the top of
ispublishedpreprint: "True"- Only on
published-preprint-*files; hides them from the active preprint list
- Only on
File assets
Store publication figures, graphical abstracts, and any locally hosted PDFs under files/<year>/.
When a paper has its own image-rich summary on the publication page, store the figures under files/<year>/ and reference them with /files/<year>/<filename> in the Markdown body.
When the publisher provides a stable PDF link or a DOI, prefer linking out via paperurl rather than mirroring the PDF in this repository. Mirror the PDF only when the external link is unstable or when the publisher’s terms allow and the file is small.
Example
---
title: "[Preprint] Example Title"
collection: publications
permalink: /publication/preprint-2025-11-19-example
excerpt: "One- or two-sentence summary of the contribution."
excerpt_image: '/files/2025/example_thumb.jpg'
date: 2025-11-19
venue: 'bioRxiv'
paperurl: 'https://doi.org/10.1101/2025.11.19.689166'
citation: "Author A, Author B, Y. Tanigawa. Example Title. bioRxiv, 2025.11.19.689166 (2025)."
---
Moving a preprint to a paper
When a preprint is accepted and published as a peer-reviewed paper:
- Rename the existing preprint file from
_publications/preprint-<yyyy-mm-dd>-<slug>.mdto_publications/published-preprint-<yyyy-mm-dd>-<slug>.md. - Keep the existing
permalinkvalue pointing at/publication/preprint-<yyyy-mm-dd>-<slug>so the original preprint URL keeps working. - Add
ispublishedpreprint: "True"to the renamed file’s front matter. Replace the body of the renamed file with a short note that links to the new published page, for example:
This preprint is [now published in <Journal>](/publication/<yyyy-mm-dd>-<slug>)!- Create a new
_publications/<yyyy-mm-dd>-<slug>.mdfile for the published version, withpermalink: /publication/<yyyy-mm-dd>-<slug>, the journal asvenue, the journal DOI aspaperurl, and a fresh citation string. - Verify both pages render locally with
bundle exec jekyll serveand that the old preprint URL still resolves and points readers to the published version.
Updating the home page News list
When adding a new preprint or paper, add a corresponding entry near the top of the News section in _pages/about.md. The entry should follow the existing format: date, a bold label such as **New Preprint** or **New Publication**, the linked title, and a one-sentence summary.
