Latex 错误:出现问题 - 可能是标签环境中缺少 \item

Latex 错误:出现问题 - 可能是标签环境中缺少 \item
\begin{labeling}
                    \item[ Frequency range: \SI{200}{\mega\hertz} to \SI{1000}  {\mega\hertz} in steps of \SI{1}{\mega\hertz}]
                  \item[ Stirrer positions: 36 ]
                  \item[ Cable length: \SI{1}{\metre}]
                  \item[ Termination resistors: \SI{50}{\ohm} at the beginning and end]             
\end{labeling}

我的代码有什么问题?如何使用环境labeling

答案1

labeling与所有 KOMA 类一起定义,并可由 apackage 使用scrbase。它接受一个强制参数,即用于对齐的最长宽度项。

pradeepLabeling

\documentclass{scrartcl}
\usepackage{siunitx}
\begin{document}
\begin{labeling}{Termination resistors:}
\item[Frequency range:] \SI{200}{\mega\hertz} to \SI{1000}  {\mega\hertz} in steps of \SI{1}{\mega\hertz} 
\item[Stirrer positions:] 36
\item[Cable length:] \SI{1}{\metre}
\item[Termination resistors:] \SI{50}{\ohm} at the beginning and end
\end{labeling}
\end{document}

相关内容