diff options
author | Wandmalfarbe <Wandmalfarbe@users.noreply.github.com> | 2016-12-04 15:16:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-04 15:16:11 +0100 |
commit | 631dd23383ced378aa0992976474cd4ea1b5c19c (patch) | |
tree | 92751965b7fbef8b49067ab40bce0f983a08a88c | |
parent | c5b8f6c8e69b641b2a61ba5b587bed1296e02333 (diff) | |
download | pandoc-631dd23383ced378aa0992976474cd4ea1b5c19c.tar.gz |
Keyword definition used wrong separator
The option pdfkeywords from hyperref needs keywords separated with a comma `,` instead of a semicolon `;`.
-rw-r--r-- | default.latex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/default.latex b/default.latex index 3ff8be2ab..3b80d3cdc 100644 --- a/default.latex +++ b/default.latex @@ -72,7 +72,7 @@ $if(author-meta)$ pdfauthor={$author-meta$}, $endif$ $if(keywords)$ - pdfkeywords={$for(keywords)$$keywords$$sep$; $endfor$}, + pdfkeywords={$for(keywords)$$keywords$$sep$, $endfor$}, $endif$ $if(colorlinks)$ colorlinks=true, |