[Tex/LaTex] Palatino displays wrong opening quotes

fontsmathpazopunctuation

I've just started using font Palatino for my documents, and I've realized the opening quotes are all rendered as closing quotes. As per the question What is the best way to use quotation mark glyphs? I use ``hello'' to quote, but somehow Palatino is always showing both as closed. If I uncomment \usepackage[sc]{mathpazo} then they are rendered correctly. How can I fix this?

Best Answer

With a minimal example like:

\documentclass{standalone}
\usepackage[sc]{mathpazo}
\begin{document}
``text''
\end{document}

I'm getting the following results:

With the standard font:

normal

With [sc]{mathpazo}:

methpazo

As you can see the lines of the quotes point in the same direction in both cases (opening quotes point to the upper right and the closing quotes to the lower left corner) and the opening and closing quotes are different. However with mathpazo they are much similar as with the standard computer modern.

If this is the same result you are getting I guess this is by design with this font and not incorrect. I don't think you can replace just the quotation characters of a font, so if you don't like them you have to use another font.

If you get something different, please post a minimal example (or refer to mine) and post links to the result like I did.