diff options
| author | John MacFarlane <jgm@berkeley.edu> | 2010-12-02 22:42:25 -0800 | 
|---|---|---|
| committer | John MacFarlane <jgm@berkeley.edu> | 2010-12-02 22:42:25 -0800 | 
| commit | becd9a81cc05470ac25b17e27b09c8382905bfe1 (patch) | |
| tree | 528bd5dc75ea41ab379a8411c27fabb51a84a290 /man/man1 | |
| parent | e578b7f3d3a036afa124683a682a472d156bc2ec (diff) | |
| download | pandoc-becd9a81cc05470ac25b17e27b09c8382905bfe1.tar.gz | |
Added --bibliography, --csl, --data-dir to markdown2pdf man page.
Diffstat (limited to 'man/man1')
| -rw-r--r-- | man/man1/markdown2pdf.1.md | 40 | 
1 files changed, 40 insertions, 0 deletions
| diff --git a/man/man1/markdown2pdf.1.md b/man/man1/markdown2pdf.1.md index 3947ef8da..3fbd4b76f 100644 --- a/man/man1/markdown2pdf.1.md +++ b/man/man1/markdown2pdf.1.md @@ -75,6 +75,46 @@ packages are not included in your latex setup, they can be obtained from  :   Use contents of *FILE* as the document header. *Note: This option is      deprecated. Users should transition to using `--template` instead.* +\--bibliography=*FILE* +:   Specify bibliography database to be used in resolving +    citations. The database type will be determined from the +    extension of *FILE*, which may be `.xml` (MODS format), +    `.bib` (BibTeX format), or `.json` (citeproc JSON). + +\--csl=*FILE* +:   Specify [CSL] style to be used in formatting citations and +    the bibliography. If *FILE* is not found, pandoc will look +    for it in + +        $HOME/.csl + +    in unix and + +        C:\Documents And Settings\USERNAME\Applicaiton Data\csl + +    in Windows. If the `--csl` option is not specified, pandoc +    will use a default style:  either `default.csl` in the +    user data directory (see `--data-dir`), or, if that is +    not present, the Chicago author-date style. + +\--data-dir*=DIRECTORY* +:   Specify the user data directory to search for pandoc data files. +    If this option is not specified, the default user data directory +    will be used: + +        $HOME/.pandoc + +    in unix and + +        C:\Documents And Settings\USERNAME\Application Data\pandoc + +    in Windows. A `reference.odt`, `epub.css`, `templates` directory, +    or `s5` directory placed in this directory will override pandoc's +    normal defaults. +  # SEE ALSO  `pandoc`(1), `pdflatex`(1) + +[CSL]: CitationStyles.org + | 
