chemformula 包和 cellspace 包之间有冲突吗?

chemformula 包和 cellspace 包之间有冲突吗?

当使用该包时,chemformula我无法像cellspace应该的那样在行和文本之间留出垂直空间。如果我不使用该包chemformula,则没有问题。

因为我也在siunitx表中使用,所以我用C{p{4cm}}代替S

这是软件包之间的冲突吗?您有解决方案吗?

以下是 MWE:

 \documentclass[english]{article}
  \usepackage{chemformula} %problem
 \usepackage{array}
 \usepackage{multirow}
 \usepackage{cellspace}
 \usepackage{siunitx}
 \usepackage{babel}

\setlength{\cellspacetoplimit}{12pt}
\setlength{\cellspacebottomlimit}{12pt}

 \begin{document}
    \begin{table}
        \centering
        \caption{Caption caption}
        \label{Bla bla}
        {\footnotesize
            \begin{tabular}{|C{p{4cm}}|C{p{5cm}}|C{p{3cm}}|}
                    \hline 
                Categories & Categories & Categories \\ 
                \hline 
                \hline
                Blah blah & Blah blah & Blah blah \\ 
                \hline  
        \end{tabular} }
        \end{table}
     \end{document}

在此处输入图片描述

在此处输入图片描述

相关内容