在 LyX 中,有没有办法更改Labeling
标签的列表格式?而不是大胆的,我需要给它加下划线。
也许我应该创建(如果可能的话)一种新的列表?
不太重要的一点是,我还希望标签以 结尾:
。但是,它可以轻松手动输入,因此这只是一项不错的功能。
答案1
据我了解,您的问题与 LyX 无关。
根据您的文档,有几种方法可以更改列表的外观。
如果你使用 KOMA-Script,例如 scrartcl,你可以说
\setkomafont{descriptionlabel}{\normalfont}
以防止它被设置为粗体。在命令\underline
中使用\item
,即可解决问题。当然,您希望它自动生效,对吗?
\documentclass{scrartcl}
\begin{document}
\setkomafont{descriptionlabel}{\normalfont}
\begin{description}
\item[\underline{foo}] one
\item[bar] second
\item[baz] third
\end{description}
\end{document}
至少,这个例子产生了:
下次试验:
\documentclass{scrartcl}
\renewcommand*\descriptionlabel[1]{\hspace\labelsep\normalfont\underline{#1}\hfil}
\begin{document}
\begin{description}
\item[foo] one
\item[bar] second
\item[baz] third
\end{description}
\end{document}
会产生
高血压
简