土耳其语字符在 hyperref/pdfcomment 中显示不正确

土耳其语字符在 hyperref/pdfcomment 中显示不正确

平均能量损失

\documentclass[a4paper,11pt]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
%\usepackage[colorlinks=true,linkcolor=blue]{hyperref} % <--
\usepackage{pdfcomment}
\begin{document}
\pdftooltip{Turkish Character ıçğöüş İÇĞÖÜŞ}{ıçğöüş İÇĞÖÜŞ}
\end{document}

在此处输入图片描述

但是当我添加hyperref

在此处输入图片描述

正在发生。因此ğ/Ğ -> g/Gş/Ş -> s/Şİ -> 我

我该如何解决这个问题?

答案1

您需要unicode=truehyperref加载语句中(或为了\hypersetup)允许使用unicode字符)输入键。

\documentclass[a4paper,11pt]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\usepackage[unicode=true,colorlinks=true,linkcolor=blue]{hyperref} % <--
\usepackage{pdfcomment}
\begin{document}
\pdftooltip{Turkish Character ıçğöüş İÇĞÖÜŞ}{ıçğöüş İÇĞÖÜŞ}
\end{document}

相关内容