Libertine Strange 強調大寫 J 字母

Libertine Strange 強調大寫 J 字母

我正在使用libertine包。我發現與其他字體相比,強調的大寫 J(1 號)對我來說有點奇怪。事情真的是這樣嗎?如何修復它?

謝謝。

在此輸入影像描述

\documentclass{book}
\usepackage{libertine}
\begin{document}
\begin{enumerate}
\item \emph{Just another question.}
% the emphasized capital J looks strange when using libertine package. is it really the way it is? how to get it fixed?

% compared to another font types

\item {\fontfamily{qcs}\selectfont
\emph{Just another question.}
}

\item {\fontfamily{qtm}\selectfont
\emph{Just another question.}
}

\item {\fontfamily{qbk}\selectfont
\emph{Just another question.}
}

\item {\fontfamily{qcr}\selectfont
\emph{Just another question.}
}

\end{enumerate}
\end{document}

答案1

就是那樣子。這是看一下字型表對於該編碼/系列/形狀 (OT1/m/it):

在此輸入影像描述

\documentclass{article}
\usepackage{libertine,fonttable}
\begin{document}
\xfonttable{OT1}{LinuxLibertineT-TLF}{m}{it}
\end{document}

答案2

我知道我參加派對很晚了,但我自己也遇到了同樣的問題,我找到了解決方案:

\newcommand{\saneJ}{\mathnormal{J}}

當然,您必須將程式碼中的每個 J 替換為 \saneJ。

相關內容