使数字(1)看起来与字母(I)不同

使数字(1)看起来与字母(I)不同

我正在做一个表格,并在同一个表格中同时使用数字 1 和字母 I。问题是它们看起来很相似,这甚至让我感到困惑。

有没有什么办法可以让它们看起来不一样?

以下是一个例子:

\begin{table}
\centering
\caption{LOO}
\label{backforward}
\begin{tabular}{p{5cm}|p{3cm}|p{3cm}}
 \hline
 %\multicolumn{3}{|c|}{Connections} \\
%\hline
Connections & Correlation & p value \\
 \hline
lFP1 $\rightarrow$ lV1 & 0.02 & 0.405\\
lPI $\rightarrow$ lAI & -0.04 & 0.679 \\
\hline
\end{tabular}
\end{table}

答案1

l 和 1 之间的区别完全取决于字体选择,而您没有给出任何提示。您可以选择不同的样式,例如斜体,或者您可以更改整个文档的字体以选择具有更独特 l 的字体。

\documentclass{article}
%\usepackage{stix2}
\begin{document}

T1 lFP1  

T2 \textsf{lFP}1 

T3 \textit{lFP}1

M1 $\mathrm{lFP}1$

M2 $\mathsf{lFP}1$

M3 $\mathit{lFP}1$

M4 $\mathit{\ell FP}1$


\end{document}

在文本和数学中使用一系列默认的 Computer Modern 样式会产生

在此处输入图片描述

如果你取消注释,stix2你会得到

在此处输入图片描述

还有许多其他字体可供选择。

相关内容