Este
\documentclass[a4paper,10pt,openany]{scrbook}
\usepackage{minted}
\usepackage[T1]{fontenc} % comment-out this line to fix it
\newcommand{\ctype}[1]{\PYG{k+kt}{\texttt{#1}}}
\begin{document}
\begin{tabular}{|l|c|c|r|r|}
\hline
Type & Bits & Bytes & Minimum & Maximum \\ \hline
\ctype{int8\_t} & 8 & 1 & -128 & 127 \\ \hline
\ctype{int16\_t} & 16 & 2 & -32,768 & 32,767 \\ \hline
\ctype{int32\_t} & 32 & 4 & −2,147,483,648 & 2,147,483,647 \\ \hline
\ctype{int64\_t} & 64 & 8 & −9,223,372,036,854,775,808 & 9,223,372,036,854,775,807 \\ \hline
\end{tabular}
\end{document}
produce esto
Incluyo fontenc
para corregir las advertencias de "Forma de fuente * indefinida", pero confunde algunos de los números negativos.
¿Por qué fontenc
tiene este efecto y cómo puedo solucionarlo?
Respuesta1
Este es un comentario extendido:
Me pregunto cómo es posible que ese -
letrero tenga caracteres diferentes en las dos primeras filas y en las dos últimas filas del OP MWE. En el siguiente MWE solo reescribo -
caracteres (y también considero el formato de tabla deegregsegundo ejemplo) y funciona sin \DeclareUnicodeCharacter{2212}{-}
y con y sin \usepackage[T1]{fontenc}
:
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{xcolor}
\usepackage{array,booktabs}
\usepackage{siunitx}
\begin{document}
\begin{tabular}{
>{\color{purple}}r
S[table-format=2.0]
S[table-format=1.0]
S[table-format=-19.0]
S[table-format= 19.0]
}
\toprule
\verb+int8_t+ & 8 & 1 & -128 & 127 \\
\midrule
\verb+int16_t+ & 16 & 2 & -32768 & 32767 \\
\verb+int32_t+ & 32 & 4 & -2147483648 & 2147483647 \\
\verb+int64_t+ & 64 & 8 & -9223372036854775808 & 9223372036854775807 \\
\bottomrule
\end{tabular}
\end{document}
Utilizo WinEdt para el editor preestablecido para utf8
codificar, si esto importa.
Respuesta2
Los caracteres −
en las dos últimas filas son U+2212, que en UTF-8 se ingresa como y las fuentes codificadas en <E2><88><92>
T1 tienen â
y en esas ubicaciones. Sin ello, no obtendrá ningún resultado, pero sí advertencias sobre caracteres faltantes.Ĺ
Š
fontenc
Utilice también inputenc
:
\documentclass[a4paper,10pt,openany]{scrbook}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{siunitx}
\DeclareUnicodeCharacter{2212}{-} % if U+2212 slips in
\newcommand{\ctype}[1]{\texttt{#1}}
\sisetup{group-separator={,}}
\begin{document}
\begin{tabular}{
|l|
S[table-format=2.0]|
S[table-format=1.0]|
S[table-format=-19.0]|
S[table-format=19.0]|
}
\hline
Type & {Bits} & {Bytes} & {Minimum} & {Maximum} \\ \hline
\ctype{int8\_t} & 8 & 1 & -128 & 127 \\ \hline
\ctype{int16\_t} & 16 & 2 & -32768 & 32767 \\ \hline
\ctype{int32\_t} & 32 & 4 & −2147483648 & 2147483647 \\ \hline
\ctype{int64\_t} & 64 & 8 & −9223372036854775808 & 9223372036854775807 \\ \hline
\end{tabular}
\end{document}
(Lo eliminé minted
porque la definición de \ctype
daba errores).
Sólo para mejorar, cargar booktabs
y cambiar la tabla a
\begin{tabular}{
@{}
l
S[table-format=2.0]
S[table-format=1.0]
S[table-format=-19.0]
S[table-format=19.0]
@{}
}
\toprule
Type & {Bits} & {Bytes} & {Minimum} & {Maximum} \\
\midrule
\ctype{int8\_t} & 8 & 1 & -128 & 127 \\
\ctype{int16\_t} & 16 & 2 & -32768 & 32767 \\
\ctype{int32\_t} & 32 & 4 & −2147483648 & 2147483647 \\
\ctype{int64\_t} & 64 & 8 & −9223372036854775808 & 9223372036854775807 \\
\bottomrule
\end{tabular}
También eliminé la configuración para group-separator
, que deja el espacio delgado predeterminado: