[Tex/LaTex] Backwards quote marks in Latex (and I’ve tried a lot of things to prevent it!)

csquotesquotation

I am aware this question has been asked several times before but I am still yet to find a answer that seems to work for me.

I have used csquotes package to try and get proper quote marks but I do not end up with proper quote marks and they are still the wrong way round. Using ` also does not work.

It must be something in my package class which is stopping it from working. I am using a Doctoral Thesis LaTeX class which I am aware is hand coded but does anyone know what other packages might be preventing me from obtaining proper quote marks?

This is what I keep getting:

This is what I keep getting

But the front quote mark is still backwards. I've tried so many things and nothing seems to work which makes me think some other package is preventing it.

Any ideas?!

enter image description here

Best Answer

The quotes of the font looks like this. That's the font design.

\documentclass[english]{article}
\usepackage{babel}
\usepackage[T1]{fontenc}
\usepackage[autostyle]{csquotes}
\usepackage{mathpazo}
\begin{document}
\enquote*{Test}
\end{document}

enter image description here

Related Question