-
Notifications
You must be signed in to change notification settings - Fork 15
Description
In Spacemacs, using Org 9.5 I'm experiencing problems exporting via pandoc and csl to the docx format.
Given this MWE (test.org):
`
#+title: Sample
#+bibliography: test.bib
-
First paragraph
Text text text.[fn:1] -
Footnotes
[fn:1] [[cite:&deroberto1898a]]
`
and this bibliography (test.bib):
@Book{deroberto1898a, author = {{De Roberto}, Federico}, title = {Leopardi}, date = 1898, publisher = {Treves}, location = {Milano},
I get this result:
As you see, the cite: link is treated as a simple link and not processed as it should.
I work with Spacemacs, this is the part of my .spacemacs file where set the bibliography and the cite-export-processors.
(setq bibtex-completion-bibliography '("~/Dropbox/Standard/Bibliografia/bibliografia_generale.bib") org-cite-global-bibliography '("~/Dropbox/Standard/Bibliografia/bibliografia_generale.bib") reftex-default-bibliography '("~/Dropbox/Standard/Bibliografia/bibliografia_generale.bib")) (require 'oc-csl) (require 'oc-biblatex) (setenv "LC_ALL" "it_IT") (setq org-cite-export-processors '((beamer biblatex) (latex biblatex) (t csl "~/Dropbox/Standard/Modelli/andrea.csl")))
Maybe I should somehow specify in the file that I want to export using csl?
Thank in advance for any help.