diff options
| author | John MacFarlane <jgm@berkeley.edu> | 2010-12-05 09:29:14 -0800 | 
|---|---|---|
| committer | John MacFarlane <jgm@berkeley.edu> | 2010-12-05 09:29:14 -0800 | 
| commit | c277d29902eb5dd7fb53ed49cb91a8b915d5cfb2 (patch) | |
| tree | 18f45fa1996666bd75e6054191a12cce541ad5fa | |
| parent | 5171de66c53b4117fd0f4b16ef53d037cce38eb4 (diff) | |
| download | pandoc-c277d29902eb5dd7fb53ed49cb91a8b915d5cfb2.tar.gz | |
Documented all the formats citeproc/bibutils can handle.
| -rw-r--r-- | README | 32 | ||||
| -rw-r--r-- | man/man1/pandoc.1.md | 8 | 
2 files changed, 35 insertions, 5 deletions
| @@ -418,8 +418,12 @@ For further documentation, see the `pandoc(1)` man page.  `--bibliography`*=FILE*  :   specifies 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). +    extension of *FILE*, which may be `.mods` (MODS format), +    `.bib` (BibTeX format), `.bbx` (BibLaTeX format), +    `.ris` (RIS format), `.enl` (EndNote format), +    `.xml` (EndNote XML format), `.wos` (ISI format), +    `.medline` (MEDLINE format), `.copac` (Copac format), +    or `.json` (citeproc JSON).  `--csl`*=FILE*  :   specifies [CSL] style to be used in formatting citations and @@ -1315,7 +1319,29 @@ and ConTeXt.  Citations  --------- -TODO +Pandoc can automatically generate citations and a bibliography in +a number of styles.  In order to use this feature, you will need +a bibliographic database in one of the following formats: + +  Format          File extension +  ------------    -------------- +  MODS            .mods +  BibTeX          .bib +  BibLaTeX        .bbx +  RIS             .ris +  EndNote         .enl +  EndNote XML     .xml +  ISI             .wos +  MEDLINE         .medline +  Copac           .copac +  JSON citeproc   .json + +- also CSL - tho default - + +- how to write citations - citation syntax - + +- where the biblio will be placed - +  Producing HTML slide shows with Pandoc  ====================================== diff --git a/man/man1/pandoc.1.md b/man/man1/pandoc.1.md index 88c072ccc..68c75920a 100644 --- a/man/man1/pandoc.1.md +++ b/man/man1/pandoc.1.md @@ -271,8 +271,12 @@ should pipe input and output through `iconv`:  \--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). +    extension of *FILE*, which may be `.mods` (MODS format), +    `.bib` (BibTeX format), `.bbx` (BibLaTeX format), +    `.ris` (RIS format), `.enl` (EndNote format), +    `.xml` (EndNote XML format), `.wos` (ISI format), +    `.medline` (MEDLINE format), `.copac` (Copac format), +    or `.json` (citeproc JSON).  \--csl=*FILE*  :   Specify [CSL] style to be used in formatting citations and | 
