答案1
czech
语言模块使babel
连字符成为-
一种有效的简写,这意味着某些-
break 或 的使用不能按预期工作。
-
您可以暂时使用禁用这个特殊含义\shorthandoff
,为保持此命令的局部效果,我们\begingroup...\endgroup
在等式周围添加。
\documentclass{article}
\usepackage{systeme}
\usepackage[czech]{babel}
\begin{document}
\begingroup
\shorthandoff{-}
\[
\systeme{x+2y = 0, x-y = -1}
\]
\endgroup
\end{document}
由于\[...\]
它有自己的分组,
\[
\shorthandoff{-}
\systeme{x+2y = 0, x-y = -1}
\]
另一种选择是不使用分组并明确打开速记
\shorthandoff{-}
\[
\systeme{x+2y = 0, x-y = -1}
\]
\shorthandon{-}
\[...\]
请注意,在 LaTeX 中$$...$$
,请参阅为什么 \[ ... \] 比 $$ ... $$ 更可取?。