表示缺少属性的符号

表示缺少属性的符号

我想用定义的指标比较一些对象。假设对象 A 提供属性,而对象 B 没有。然后我想在表格中给出概述。

对象 A 将获得一个\checkmark,这很容易。

但对于对象 B 我完全不确定是否应该使用

  1. $\otimes$
  2. \texttimes
  3. 没有任何符号

在此处输入图片描述

表示对象 B不是具有属性。我对这些符号不满意,times-因为它们应该用于数学原因。

你怎么认为?

答案1

一种可能性是使用破折号:

在此处输入图片描述

代码:

\documentclass{article}
\usepackage{booktabs}
\usepackage{bbding}

\begin{document}

\noindent
\begin{tabular}{lcc}
\toprule
 & ObjectA & ObjectB \\
\midrule
Attribute1 & \Checkmark & --- \\
Attribute2 & --- & \Checkmark \\
Attribute3 & \Checkmark & --- \\
\bottomrule 
\end{tabular}

\end{document}

相关内容