diff --git a/README b/README index e85d6ef7f..4f21f04a1 100644 --- a/README +++ b/README @@ -1843,6 +1843,23 @@ equivalent of the markdown in the `abstract` field:
This is the abstract.
It consists of two paragraphs.
+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: + + $for(author)$ + $if(author.name)$ + $author.name$$if(author.affiliation)$ ($author.affiliation$)$endif$ + $else$ + $author$ + $endif$ + $endfor$ + + $if(abstract)$ + Abstract: $abstract$ + $endif$ Backslash escapes -----------------