Libertine Strange enfatizó la letra J mayúscula

Libertine Strange enfatizó la letra J mayúscula

Estoy usando libertineel paquete. Veo que la J mayúscula enfatizada (nº 1) me resulta un poco extraña, en comparación con otras fuentes. ¿Es realmente así? ¿Cómo arreglarlo?

Gracias.

ingrese la descripción de la imagen aquí

\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}

Respuesta1

Esa es la forma como es. Aquí estáun vistazo a la tabla de fuentespara esa codificación/serie/forma (OT1/m/it):

ingrese la descripción de la imagen aquí

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

Respuesta2

Sé que llegué muy tarde a la fiesta, pero yo mismo enfrenté el mismo problema y encontré una solución:

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

y por supuesto tienes que reemplazar cada J en tu código con \saneJ.

información relacionada