-
Hi, I am trying to display citations from my .bib file that aren't cited anywhere in the mdx blog body. Thank you |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
options.noCite Citation IDs (@item1) to include in the bibliography even if they are not cited in the document. |
Beta Was this translation helpful? Give feedback.
-
@alexsalce try the updated version of rehype citation, v2.1.1. This supports customisation at the post level. You can add a ---
title: 'Release of Tailwind Nextjs Starter Blog v2.0'
date: '2023-08-05'
lastmod: '2023-08-05'
tags: ['next-js', 'tailwind', 'guide', 'feature']
draft: false
summary: 'Release of Tailwind Nextjs Starter Blog template v2.0, refactored with Nextjs App directory and React Server Components setup.Discover the new features and how to migrate from V1.'
images: ['/static/images/twitter-card.png']
bibliography: references-data.bib
noCite: ["@Xie2016"]
--- Or use |
Beta Was this translation helpful? Give feedback.
@alexsalce try the updated version of rehype citation, v2.1.1. This supports customisation at the post level. You can add a
noCite
property to the frontmatter like the example below:Or use
noCite: ["@*"]
to display everything without citing.