CiteBibtex
Effortlessly insert citations from BibTeX into texts written in Pandoc or LaTeX
Details
Installs
- Total 7K
- Win 3K
- Mac 3K
- Linux 1K
Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | Oct 6 | Oct 5 | Oct 4 | Oct 3 | Oct 2 | Oct 1 | Sep 30 | Sep 29 | Sep 28 | Sep 27 | Sep 26 | Sep 25 | Sep 24 | Sep 23 | Sep 22 | Sep 21 | Sep 20 | Sep 19 | Sep 18 | Sep 17 | Sep 16 | Sep 15 | Sep 14 | Sep 13 | Sep 12 | Sep 11 | Sep 10 | Sep 9 | Sep 8 | Sep 7 | Sep 6 | Sep 5 | Sep 4 | Sep 3 | Sep 2 | Sep 1 | Aug 31 | Aug 30 | Aug 29 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
CiteBibtex
A Sublime Text plugin to effortlessly insert citations from BibTeX into texts written in Pandoc or LaTeX.
Installation
Install via Package Control.
Compatible with Sublime Text 3 only.
Initial configuration
Set the path to your global BibTeX file (bibtex_file
) in the plugin settings.
Use
Pressing the citation shortcut key (bound to F10
by default) brings up a quick panel for searching the bibliography file. Once the desired reference is found, pressing enter or clicking on it will insert a citation at the current cursor position (if there is more than one cursor, at the first cursor's position). The BibTeX file is checked for modifications each time the quick panel is brought up.
The format for inserted citations is auto-detected as pandoc
(for use with Pandoc) or latex
based on the syntax of the open file (this can be disabled by setting "autodetect_citation_style": false
in the plugin settings). If auto-detection fails, the default is to use pandoc
(which can be changed by setting default_citation_style
in the plugin settings).
The bibtex_file
setting can be overridden on a per-project basis in the project settings, using either a path relative to the project settings file or an absolute path. The following example project settings demonstrate this:
{
"folders":
[
{
"follow_symlinks": true,
"path": ".",
}
],
"bibtex_file": "path/to/bibtex.bib"
}
Inserting plaintext bibliography entries
There is a separate command (bound to F9
by default) to insert a pre-formatted plaintext bibliography entry rather than a citation key. This is configured via the new citation_format_string
setting in the plugin settings, which is a Python format string, set to "{author} ({year}). {title}"
by default. Any BibTeX field can be used in the format string, missing ones will be replaced with an empty string.
Extraction of citations from master BibTeX file
The command CiteBibTeX: Extract citations in current file
is available via the command palette, and will extract all references used in the currently open file from the global BibTeX file, saving that subset in a local BibTeX file.
For example, if my_paper.md
is currently open and cites 10 out of 100 references in the global BibTeX file, calling this command will save those 10 references in a file called my_paper.bib
in the same directory as my_paper.md
. This may useful to keep references portable alongside the text that uses them for sharing or archiving.
Acknowledgments
Includes the BibTeX parsing library python-bibtexparser (LGPLv3-licensed).
Includes md2bib.py
from pandoc-wrappers by Joseph Reagle (GPLv3-licensed).
License
GNU GPLv3 (see LICENSE
file).