diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-08-08 10:32:03 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-08-08 10:32:03 -0700 |
commit | bf7d858a9e1ec788bf80c489186ee5f8b7d4bcdd (patch) | |
tree | c70507771efdee9ce4a0e8fca61577e3fae99deb /src/Text | |
parent | 74c31abb1aa696760d20efb202369e1cb0ecfd20 (diff) | |
download | pandoc-bf7d858a9e1ec788bf80c489186ee5f8b7d4bcdd.tar.gz |
LaTeX reader: Implement \Cite.
See #2335.
Diffstat (limited to 'src/Text')
-rw-r--r-- | src/Text/Pandoc/Readers/LaTeX.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Readers/LaTeX.hs b/src/Text/Pandoc/Readers/LaTeX.hs index 0da912ea6..16d387dc4 100644 --- a/src/Text/Pandoc/Readers/LaTeX.hs +++ b/src/Text/Pandoc/Readers/LaTeX.hs @@ -524,6 +524,7 @@ inlineCommands = M.fromList $ , ("includegraphics", skipopts *> (unescapeURL <$> braced) >>= mkImage) , ("enquote", enquote) , ("cite", citation "cite" AuthorInText False) + , ("Cite", citation "cite" AuthorInText False) , ("citep", citation "citep" NormalCitation False) , ("citep*", citation "citep*" NormalCitation False) , ("citeal", citation "citeal" NormalCitation False) |