\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
。它接受一个强制参数,即用于对齐的最长宽度项。
\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}