Updated date on manual and regenerated man page.

This commit is contained in:
John MacFarlane 2017-10-31 21:29:31 -07:00
parent 8e55bdcaa3
commit a25843238c
2 changed files with 45 additions and 19 deletions

View file

@ -1,6 +1,6 @@
% Pandoc User's Guide % Pandoc User's Guide
% John MacFarlane % John MacFarlane
% October 27, 2017 % October 31, 2017
Synopsis Synopsis
======== ========

View file

@ -1,5 +1,5 @@
.\"t .\"t
.TH PANDOC 1 "October 27, 2017" "pandoc 2.0" .TH PANDOC 1 "October 31, 2017" "pandoc 2.0.1"
.SH NAME .SH NAME
pandoc - general markup converter pandoc - general markup converter
.SH SYNOPSIS .SH SYNOPSIS
@ -200,8 +200,8 @@ requires \f[C]fontspec\f[].
If the \f[C]mathspec\f[] variable is set, \f[C]xelatex\f[] will use If the \f[C]mathspec\f[] variable is set, \f[C]xelatex\f[] will use
\f[C]mathspec\f[] instead of \f[C]unicode\-math\f[]. \f[C]mathspec\f[] instead of \f[C]unicode\-math\f[].
The \f[C]upquote\f[] and \f[C]microtype\f[] packages are used if The \f[C]upquote\f[] and \f[C]microtype\f[] packages are used if
available, and \f[C]csquotes\f[] will be used for [smart punctuation] if available, and \f[C]csquotes\f[] will be used for typography if added to
added to the template or included in any header file. the template or included in any header file.
The \f[C]natbib\f[], \f[C]biblatex\f[], \f[C]bibtex\f[], and The \f[C]natbib\f[], \f[C]biblatex\f[], \f[C]bibtex\f[], and
\f[C]biber\f[] packages can optionally be used for citation rendering. \f[C]biber\f[] packages can optionally be used for citation rendering.
These are included with all recent versions of TeX Live. These are included with all recent versions of TeX Live.
@ -3572,7 +3572,23 @@ blocks:
.fi .fi
.SS Small caps .SS Small caps
.PP .PP
To write small caps, you can use an HTML span tag: To write small caps, use the \f[C]smallcaps\f[] class:
.IP
.nf
\f[C]
[Small\ caps]{.smallcaps}
\f[]
.fi
.PP
Or, without the \f[C]bracketed_spans\f[] extension:
.IP
.nf
\f[C]
<span\ class="smallcaps">Small\ caps</span>
\f[]
.fi
.PP
For compatibility with other Markdown flavors, CSS is also supported:
.IP .IP
.nf .nf
\f[C] \f[C]
@ -3580,16 +3596,7 @@ To write small caps, you can use an HTML span tag:
\f[] \f[]
.fi .fi
.PP .PP
(The semicolon is optional and there may be space after the colon.) This This will work in all output formats that support small caps.
will work in all output formats that support small caps.
.PP
Alternatively, you can also use the new \f[C]bracketed_spans\f[] syntax:
.IP
.nf
\f[C]
[Small\ caps]{style="font\-variant:small\-caps;"}
\f[]
.fi
.SS Math .SS Math
.SS Extension: \f[C]tex_math_dollars\f[] .SS Extension: \f[C]tex_math_dollars\f[]
.PP .PP
@ -3814,8 +3821,8 @@ A Div starts with a fence containing at least three consecutive colons
plus some attributes. plus some attributes.
The attributes may optionally be followed by another string of The attributes may optionally be followed by another string of
consecutive colons. consecutive colons.
The attribute syntax is exactly as in fenced code blocks (see The attribute syntax is exactly as in fenced code blocks (see Extension:
[Extension\-fenced_code_attributes], above). \f[C]fenced_code_attributes\f[]).
As with fenced code blocks, one can use either attributes in curly As with fenced code blocks, one can use either attributes in curly
braces or a single unbraced word, which will be treated as a class name. braces or a single unbraced word, which will be treated as a class name.
The Div ends with another line containing a string of at least three The Div ends with another line containing a string of at least three
@ -5023,13 +5030,14 @@ You can add notes to your Markdown document thus:
.IP .IP
.nf .nf
\f[C] \f[C]
<div\ class="notes"> :::\ notes
This\ is\ my\ note. This\ is\ my\ note.
\-\ It\ can\ contain\ Markdown \-\ It\ can\ contain\ Markdown
\-\ like\ this\ list \-\ like\ this\ list
</div> :::
\f[] \f[]
.fi .fi
.PP .PP
@ -5037,6 +5045,24 @@ To show the notes window, press \f[C]s\f[] while viewing the
presentation. presentation.
Notes are not yet supported for other slide formats, but the notes will Notes are not yet supported for other slide formats, but the notes will
not appear on the slides themselves. not appear on the slides themselves.
.SS Columns
.PP
To put material in side by side columns, you can use a native div
container with class \f[C]columns\f[], containing two or more div
containers with class \f[C]column\f[] and a \f[C]width\f[] attribute:
.IP
.nf
\f[C]
::::::::::::::\ {.columns}
:::\ {.column\ width="40%"}
contents...
:::
:::\ {.column\ width="60%"}
contents...
:::
::::::::::::::
\f[]
.fi
.SS Frame attributes in beamer .SS Frame attributes in beamer
.PP .PP
Sometimes it is necessary to add the LaTeX \f[C][fragile]\f[] option to Sometimes it is necessary to add the LaTeX \f[C][fragile]\f[] option to