Libertine 이상한 강조 대문자 J 편지

Libertine 이상한 강조 대문자 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로 바꿔야 합니다.

관련 정보