Reputation: 343
My source text uses straight quotes, which pandoc converts to ``LaTeX quotes'', but those are coming through without being converted to smart quotes. I've even used the --smart option, with no change. I thought this was automatic, but apparently not. I can't find anything in my template file that looks like it would disable this. Is there another setting somewhere?
Upvotes: 2
Views: 1522
Reputation: 7266
I can't find anything in my template file that looks like it would disable this.
This sounds like you have a custom template file? In this case, you might want to enable csquotes support by putting \usepackage{csquotes}
into the template. Pandoc will then generate \enquote{LaTeX quotes}
which might be more portable.
Upvotes: 1