LaTeX soul包


本系列文章由 @yhl_leo 出品,转载请注明出处。
文章链接: http://blog.csdn.net/yhl_leo/article/details/50774955


详细的soul包的官方PDF文档:soul package

soul包主要有四项:

  • 字间空格
  • 下划线
  • 删除线
  • 高亮
  • 大写字母

下面给出一段代码示例:

documentclass[12pt]{article}
usepackage{color, soul}

sethlcolor{yellow}
setstcolor{green}
setulcolor{red} 

egin{document}

    so{1.letterspacing}

    ul{2.underlining}

    st{3.striking out}

    hl{4.highlighting}

    caps{5.CAPITALS, Small Capitals}

    6.Small Capitals

end{document}

results

附上一张soul包的主要用法表:

func

更多内容请阅读官方文档。

原文地址:https://www.cnblogs.com/hehehaha/p/6332156.html