我正在引用 ms. letters 中的段落,需要用三行划线来标记几个单词。是否有执行此操作的命令?我查阅了 Melchior Franz soul
2003 年的软件包文档和 Donald Arseneau ulem
2011 年的软件包文档。
答案1
您可以使用该包ulem
来创建新的样式。
\documentclass[a4paper,12pt]{scrartcl}
\usepackage[normalem]{ulem}
\usepackage{xcolor}
\makeatletter
\newcommand\uuuline{\bgroup\markoverwith%
{%
\textcolor{red}{\rule[-0.5ex]{2pt}{0.4pt}}%
\llap{\textcolor{blue}{\rule[-0.7ex]{2pt}{0.4pt}}}%
\llap{\textcolor{green}{\rule[-0.9ex]{2pt}{0.4pt}}}%
}%
\ULon}
\makeatother
\begin{document}
\uuuline{Text Text Text}
\end{document}