リバティーン・ストレンジ強調大文字J文字

リバティーン・ストレンジ強調大文字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 に置き換える必要があります。

関連情報