diff options
| author | John MacFarlane <jgm@berkeley.edu> | 2018-11-19 10:46:50 -0800 | 
|---|---|---|
| committer | John MacFarlane <jgm@berkeley.edu> | 2018-11-19 10:46:50 -0800 | 
| commit | 3689d047a8086e91ceb58f8d6b7c9733a4ba22eb (patch) | |
| tree | 3df8be0db811ce9ffb5473686cb7f89b2813d039 | |
| parent | 1a679a4d6e99f4bdb19f1f546a0ccf856ba00cf4 (diff) | |
| download | pandoc-3689d047a8086e91ceb58f8d6b7c9733a4ba22eb.tar.gz | |
MANUAL.txt: Clarified placement of bibliography.
| -rw-r--r-- | MANUAL.txt | 21 | 
1 files changed, 17 insertions, 4 deletions
| diff --git a/MANUAL.txt b/MANUAL.txt index 7f80e4d3d..51892e662 100644 --- a/MANUAL.txt +++ b/MANUAL.txt @@ -3876,8 +3876,10 @@ use `.bibtex` to force BibTeX.  Note that `pandoc-citeproc --bib2json` and `pandoc-citeproc --bib2yaml`  can produce `.json` and `.yaml` files from any of the supported formats. -In-field markup: In BibTeX and BibLaTeX databases, pandoc-citeproc parses -a subset of LaTeX markup; in CSL YAML databases, pandoc Markdown; and in CSL JSON databases, an [HTML-like markup][CSL markup specs]: +In-field markup: In BibTeX and BibLaTeX databases, +pandoc-citeproc parses a subset of LaTeX markup; in CSL YAML +databases, pandoc Markdown; and in CSL JSON databases, an +[HTML-like markup][CSL markup specs]:  `<i>...</i>`  :   italics @@ -3988,8 +3990,19 @@ You can also write an in-text citation, as follows:      @smith04 [p. 33] says blah.  If the style calls for a list of works cited, it will be placed -at the end of the document.  Normally, you will want to end your -document with an appropriate header: +in a div with id `refs`, if one exists: + +    ::: #refs +    ::: + +Otherwise, it will be placed at the end of the document. +Generation of the bibliography can be suppressed by setting +`suppress-bibliography: true` in the YAML metadata. + +If you wish the bibliography to have a section header, you can +set `reference-section-title` in the metadata, or put the header +at the beginning of the div with id `refs` (if you are using it) +or at the end of your document:      last paragraph... | 
