Publications
Manage academic publications with BibTeX import, citation files, and automatic formatting. Built for researchers who publish papers, journals, and conferences.
HugoBlox has first-class support for academic publications. Import from BibTeX, attach PDFs and citation files, and let HugoBlox automatically format everything with proper academic styling.
Quick Start
The fastest way to add publications is to import from your existing .bib file.
Using Ownable CMS (VS Code):
- Open the Ownable sidebar in VS Code.
- Click the Import button next to Publications.
- Select your
.bibfile. - Publications are created automatically with proper frontmatter.
Using the CLI:
pip3 install academic
academic import --bibtex my-papers.bibThe import tool creates a page bundle for each publication with index.md and cite.bib pre-populated.
Create a page bundle in content/publications/:
- Create a folder:
content/publications/my-paper/ - Add
index.mdwith the frontmatter template below. - Optionally add
cite.bib,featured.jpg, and a PDF.
File Structure
Publications should always use page bundles (folder + index.md) so you can attach citations, PDFs, and images.
Frontmatter Template
---
title: "My Research Paper"
date: 2024-09-01
# Authors (reference data/authors/*.yaml slugs)
authors:
- jane-doe
- john-smith
# Publication type
# Options: article-journal, paper-conference, thesis, book, chapter, report, patent, manuscript
publication_types: ["article-journal"]
# Publication venue
publication: "*Journal of Machine Learning Research*"
publication_short: "JMLR"
# Abstract
abstract: >
We present a novel approach to solving X by combining Y and Z.
Our method achieves state-of-the-art results on benchmark datasets.
# Summary (for listing cards)
summary: "A novel approach combining Y and Z for state-of-the-art results."
# DOI
doi: "10.1234/example.2024.001"
# Tags
tags:
- Machine Learning
- Deep Learning
# Featured image
image:
filename: featured.jpg
caption: "Architecture diagram"
focal_point: Smart
# Links
links:
- name: PDF
url: paper.pdf
- name: Code
url: https://github.com/...
- name: Slides
url: slides.pdf
- name: Video
url: https://youtube.com/...
- name: Poster
url: poster.pdf
# External link (opens this URL instead of the publication page)
url_pdf: ""
url_code: ""
url_dataset: ""
url_poster: ""
url_project: ""
url_slides: ""
url_source: ""
url_video: ""
# Pin to top of listings
featured: true
# Draft
draft: false
---
## Optional Extended Content
Add any Markdown below the frontmatter for additional context, figures, or discussion that goes beyond the abstract.Publication Types
| Type | Use For |
|---|---|
article-journal | Journal articles and papers |
paper-conference | Conference and workshop papers |
thesis | PhD, Master's, or Bachelor's theses |
book | Full books |
chapter | Book chapters |
report | Technical reports |
patent | Patents |
manuscript | Preprints and working papers |
Citation Files
Place a cite.bib file in the publication's folder. HugoBlox will automatically:
- Parse the BibTeX and display it on the page
- Add a Cite button that lets visitors copy the citation
@article{doe2024novel,
title = {A Novel Approach to Machine Learning},
author = {Doe, Jane and Smith, John},
journal = {Journal of Machine Learning Research},
volume = {25},
pages = {1--42},
year = {2024},
publisher = {JMLR}
}Filtering & Listing
The publication listing page (content/publications/_index.md) automatically displays all publications with:
- Type filters — filter by journal, conference, thesis, etc.
- Search — full-text search across titles and abstracts
- Year grouping — chronological ordering
Customizing the Listing
---
title: Publications
# Optional: filter which types to show
# content:
# filters:
# publication_type: article-journal
---Quick Reference
| Field | Type | Description |
|---|---|---|
title | string | Paper title (required) |
date | date | Publication date |
authors | list | Author slugs |
publication_types | list | Publication type(s) |
publication | string | Venue name (supports Markdown italics) |
publication_short | string | Abbreviated venue name |
abstract | string | Paper abstract |
doi | string | Digital Object Identifier |
featured | bool | Pin to top of listings |
links | list | Custom links (name + url) |
Was this page helpful?
Blog Posts
Create date-ordered blog posts with categories, tags, authors, and featured images. Perfect for research updates, news, and tutorials.
Projects
Showcase your work, research projects, case studies, and portfolio items. Add links, featured images, and connect projects to publications.
From the makers of
© 2026 Lore Labs.