biblatex bibtool BibTeX
- Journal 2023-11-09 Bibliography Setup
-
vim-pandoc-syntax recommends:
augroup pandoc_syntax autocmd! FileType vimwiki set syntax=markdown.pandoc augroup END
- This would conflict with Vimwiki syntax in non-markdown files.
-
Pandoc-Complete: Your completion buddy for editing Pandoc-style markdown files
displays the title from the BibTeX database. However, it doesn't parse the
Cite Keys from the testing database. The Regex assumes the keys are words
without hyphens. Matching non-space characters and ending on comma seems to
work better.
index 2c87935..b6e41ff 100644 --- a/autoload/PandocComplete.vim +++ b/autoload/PandocComplete.vim @@ -95,7 +95,7 @@ fun! s:FetchBibItems() \ l:bibkeys, \ s:MatchFile( \ l:bibfile, - \ '^\s*@\w\+{\zs\w\+' + \ '^\s*@\w\+{\zs\S\+\ze,' \ ) \ )
- CTAN test.bib provides a sample BibTeX database.
- Fmoralesc provides a minimal regex based BibTex parser in python.
-
bibtool
-
JabRef is available from Debian.
Switch the
X410
to Floating Desktop mode or the screen will be blank.let g:pandoc#biblio#bibs = [expand('~/zk/default.bib')] let g:pandoc#completion#bib#mode = 'fallback'
-
https://pandoc.org/MANUAL.html#citation-syntax
pandoc --bibliography=$HOME/zk/default.bib \ --citeproc --standalone \ --to markdown-citations \ --metadata link-citations \ -o test.md \ ~/.dotfiles/README.md
bibliography: /home/jdfen/zk/default.bib link-citations: true link-bibliography: true
pandoc -o test.md \ --citeproc --standalone \ --to markdown-citations \ --metadata link-citations \ ~/.dotfiles/README.md