自定义复选框符号

自定义复选框符号

考虑以下MWE

\documentclass{article}
\usepackage{tikz}

\begin{document}
            \begin{tikzpicture}
                \draw[line width=3pt,rounded corners] (0.75,1)--(0,1)--(0,0) -- (1,0) -- (1,0.5);
                \draw[xshift=0cm,yshift=0.35cm,line width=3pt] (0.25,0.25)--(0.5,0)--(1,0.5);
            \end{tikzpicture}
\end{document}

在此处输入图片描述

如何使用坐标或节点定义创建相同的图表。我想将其转换为可用的符号,可以按任意大小缩放,例如当前字体大小,并可在中使用mathmode

我知道fontawesome\faCheckSquareO,但我设计这个是因为我想完全控制图表每个组件的颜色。

相关内容