Esse
\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}
produz isso
Incluí fontenc
para corrigir avisos de "Formato da fonte * indefinido", mas isso distorce alguns dos números negativos?
Por que está fontenc
tendo esse efeito e como posso corrigi-lo?
Responder1
Este é um comentário estendido:
Eu me pergunto como é possível que o -
sinal tenha caracteres diferentes nas duas primeiras linhas e nas duas últimas linhas do OP MWE. No MWE a seguir eu apenas reescrevo -
caracteres (e também considero a formatação de tabela deegrégiasegundo exemplo) e funciona sem \DeclareUnicodeCharacter{2212}{-}
e com e sem \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}
Eu uso o WinEdt para predefinição do editor para utf8
codificação, se for esse o caso.
Responder2
Os caracteres −
nas duas últimas linhas são U+2212, que em UTF-8 é inserido como <E2><88><92>
e as fontes codificadas em T1 possuem â
, Ĺ
e Š
nesses locais. Sem fontenc
você não há saída, mas avisos sobre caracteres ausentes.
Utilize também 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}
(Removi minted
porque a definição \ctype
deu erros.)
Apenas para melhoria, carregando booktabs
e alterando a tabela para
\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}
Também removi a configuração de group-separator
, que deixa o espaço fino padrão: