Open a-cellofan opened 10 years ago
IIRC, you should not use bib latex: true
unless you are outputting to .tex
For pdf or html output, you want to use pandoc proc-cite (built in) for citations. e.g.
`Bayesian inference algorithms have proved to be very effective models of word learning tasks [e.g. @xu07, @tenenbaum08]. -@ just cites the year if you use the authors name earlier.
Thank you!
Hi,
I have tried to get citations work with pandown in ST2 but it does not work. I have a configuration file: pandoc-config.json int the same directory than the source file: { "pandoc_arguments": { ////////////////////////////////////////////////////////////////////// // Arguments are explained in Pandoc's documentation: // // http://johnmacfarlane.net/pandoc/README.html . // // The contents of this file will be merged with the package's // // Pandown.sublime-settings file, the user's Pandown.sublime-settings/ // file, and local project settings, with what's specified here // // taking precedence. For more information about how to use this // // file, please see the Pandown README. // ////////////////////////////////////////////////////////////////////// "markdown_extensions": { ///////////////////////// // MARKDOWN EXTENSIONS // ///////////////////////// // A backslash followed by a newline is also a line break. "escaped_line_breaks": true,
}
As you can see I have activated biblatex and set the bibtex file (paper_rings_multiblob/multiblobbed_rings.bib) and style (american-physics-society.csl), but seems the command is not right parse. I try on the command line this command:
$ pandoc intro.md --biblio paper_rings_multiblob/multiblobbed_rings.bib --csl american-physics-society.csl -o test.html
and it works quite well, so I think it is a problem of the command construction.
Could you help me?
Thanks in advance.