Bootstrap

【Latex】添加删除线,高亮文本

添加soul包

\usepackage{soul}
\st{text}   可以添加删除线

如果需要改变颜色,可以使用

\sethlcolor{颜色}
\hl{文本}

如果文本中有\cite,\ref这一类的句柄,会导致报错,此时要在文章开头加上:

\soulregister{\cite}7 % 注册\cite命令
\soulregister{\citep}7 % 注册\citep命令
\soulregister{\citet}7 % 注册\citet命令
\soulregister{\ref}7 % 注册\ref命令
\soulregister{\pageref}7 % 注册\pageref命令

章节标题高亮

\sethlcolor{yellow}
\section{\texorpdfstring{\hl{xxx}}{xxx}}

公式高亮

\documentclass{article}


\usepackage{xcolor}
\usepackage{soul}
\newcommand{\mathcolorbox}[2]{\colorbox{#1}{$\displaystyle #2$}}
\begin{equation}
\mathcolorbox{yellow}{\mathrm{MAC}_{\mathrm{s}}=K^{2} \times H \times W \times In \times Out}
\end{equation}

公式高亮

;