CiteDrive中的插入式与叙述式引用

本页面目前没有中文版本,因此以英文呈现。您愿意通过帮助翻译这个页面来支持我们吗?翻译此页面

We receive many questions about using CiteDrive to create citations in parentheticals and narratives. Since the app is a BibTeX-based online reference management tool that works with both LaTeX and Pandoc-based systems (such as R Markdown and Quarto) and synchronizes your bibliographies with Overleaf and RStudio, we show you different options depending on the system and package you use.

需要一个简单的解决方案来管理您的BibTeX条目吗?探索CiteDrive!

  • 基于Web的现代参考文献管理
  • 与研究同行合作和分享
  • 与Overleaf集成
  • 全面的BibTeX/BibLaTeX支持
  • 直接从您的浏览器保存文章和网站
  • 从包含数千万参考文献的数据库中搜索新文章
尝试CiteDrive

Parenthetical and narrative citations - what’s the difference?

In a parenthetical citation, you include information about a source in parentheses at the end of a sentence or clause where you are using information from that source. This allows you to identify the source of information without interrupting the flow of your writing. For example:

According to a recent study (Smith, 2020), the average lifespan of a dog is 12 years.

Narrative citation, on the other hand, involves incorporating information about the source into the text of your writing. This typically includes the author’s name and the publication date. For example:

According to Smith (2020), the average lifespan of a dog is 12 years.

Both parenthetical and narrative citations are used to give credit to the source of information and to allow readers to locate the source if they want to learn more. Using a parenthetical or narrative citation will depend on your style guide and preference.

In LaTeX/Overleaf

When using LaTeX/Overleaf, it will depend if you use BibTeX or BibLaTeX. If you’re using BibTeX, then the natbib package will be of help, which includes several commands for customizing citations, such as \citet* for in-text citations and \citep* for citations without parentheses.

In BibLaTeX \parencite* is an already built-in option for appropriate customizations.

In Pandoc, Quarto, or R Markdown

It is straightforward with Pandoc; add your citation key without brackets, i.e., @citationkey if you use a narrative citation, and the in-text version with brackets, i.e., [@citationkey].