nicematrix 和脚注的问题

nicematrix 和脚注的问题

我以前使用过\usepackage[footnote]{nicematrix},但是在更换电脑并更新 MiKTeX 后,它不再起作用了。

错误是

! Undefined control sequence. <argument> \IfClassLoadeTF {beamer}{\bool_set_false:N\c_nicematrix_footnot...I.8442}

我想在页脚添加注释。当我输入 时\usepackage{nicematrix},如果没有[footnote],则不会出现脚注。我该怎么做才能解决这个问题?

我的代码是

\documentclass{article}

\usepackage[footnote]{nicematrix}

\usepackage{tikz}


\begin{document}

\ttfamily
\begin{NiceTabular}{lc@{\hphantom{-}}c@{\hphantom{-}}cc}
Tact\footnote{voilà} & 8    & 9    & 10    & 11     \\
Sup-    &      &      &       & quelle \\
Cont-   & quel & \Block[l]{}{\llap{-}le}   \\
Ten-    &      &      & quelle \\
Bas-    &      & quel & \Block[l]{}{\llap{-}le} \\
\CodeAfter
\begin{tikzpicture}
  \draw (3-2.south east) 
        -- (3-2.south west)
        -- (5-3.south west) 
        -- (5-3.south east) 
        -- (4-4.south east) 
        -- (4-4.south west) ;
  \draw (4-4.south east) -- (2-5.south east) -- (2-5.south west) ;
\end{tikzpicture}
\end{NiceTabular}

\end{document}

感谢您的任何帮助

答案1

这是一个错误。它将在 的下一版本中得到纠正nicematrix

footnotehyper作为一种解决方法,您可以使用footnote

\usepackage[footnotehyper]{nicematrix}

相关内容