aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <fiddlosopher@gmail.com>2013-12-11 22:09:49 -0800
committerJohn MacFarlane <fiddlosopher@gmail.com>2013-12-11 22:09:49 -0800
commit02e3b2afcad5d8d38e490fe82ff6e3df882a6f69 (patch)
treebaad6a92fa29863098a51050d5f5d6ef1652a7ab
parent225bd8d599dc745b3e211fd15e7b8415fa35e3af (diff)
downloadpandoc-02e3b2afcad5d8d38e490fe82ff6e3df882a6f69.tar.gz
Updated README (since abstract will work, at least with default latex).
-rw-r--r--README11
1 files changed, 3 insertions, 8 deletions
diff --git a/README b/README
index 4f21f04a1..2feff147d 100644
--- a/README
+++ b/README
@@ -1843,11 +1843,9 @@ equivalent of the markdown in the `abstract` field:
<p>This is the abstract.</p>
<p>It consists of two paragraphs.</p>
-Note: The example above will not work with the default templates.
-The `author` variable in the templates expects a simple list or string,
-and there is no `abstract` variable in most templates. To use these,
-you would need to use a custom template with appropriate variables.
-For example:
+Note: The `author` variable in the default templates expects a simple list or
+string. To use the structured authors in the example, you would need a
+custom template. For example:
$for(author)$
$if(author.name)$
@@ -1857,9 +1855,6 @@ For example:
$endif$
$endfor$
- $if(abstract)$
- Abstract: $abstract$
- $endif$
Backslash escapes
-----------------