mb21 / panwriter

Markdown editor with pandoc integration and paginated preview.
https://PanWriter.com
GNU General Public License v3.0
1.03k stars 49 forks source link

Feature Request: Add support for -citeproc #41

Closed lukaskawerau closed 3 years ago

lukaskawerau commented 3 years ago

It would be fantastic if Panwriter supported compiling citations using Pandoc's -citeproc option: https://pandoc.org/MANUAL.html#option--citeproc

I have many people that would hugely benefit from using Panwriter in academia, but can't right now because of a lack of this feature.

mb21 commented 3 years ago

In theory this should already work when you use File -> Export.... using something like this at the top of your file:

---
bibliography:
- foobar.bib
---

But of course, it won't show up in the preview... because there we don't run pandoc and latex..

mb21 commented 3 years ago

just tried it myself, this worked for me with pandoc 2.11.0.2:

---
output:
  latex:
    citeproc: true
bibliography: myfile.bib
---