Arial 글꼴의 역따옴표

Arial 글꼴의 역따옴표

Arial 글꼴의 보기 흉한 역따옴표에 대한 해결 방법이 있나요?

예를 들어 xelatex다음에서 실행됩니다.

\documentclass{article}
\usepackage{fontspec}
\setmainfont{Arial}

\begin{document}
Here's something ``quoted''.
\end{document}

답변1

기본적으로 글꼴 사양은 표준 TeX 인용 합자를 활성화하지 않습니다. 다음을 시도해 보십시오.

\documentclass{article}
\usepackage{fontspec}
\setmainfont[Ligatures=TeX]{Arial}
\begin{document}
Here's something ``quoted''.
\end{document}

물론 어떤 사람들은 '못생긴 뒷따옴표'만이 Arial의 못생긴 점은 아니라고 말할 수도 있습니다.

관련 정보