三重下划线

三重下划线

我正在引用 ms. letters 中的段落,需要用三行划线来标记几个单词。是否有执行此操作的命令?我查阅了 Melchior Franz soul2003 年的软件包文档和 Donald Arseneau ulem2011 年的软件包文档。

答案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} 

在此处输入图片描述

相关内容