如何突出显示包含引用和图形参考的文本?

如何突出显示包含引用和图形参考的文本?

我正在尝试突出显示带有参考的文本。如果没有参考,下面的方法可以正常工作。有人知道如何突出显示包含引文和图表参考的文本吗?MWE 如下所示。非常感谢您的帮助。

\documentclass{article}

\usepackage{xcolor}
\usepackage{soul}

\newcommand{\hlc}[2][yellow]{{%
    \colorlet{foo}{#1}%
    \sethlcolor{foo}\hl{#2}}%
}



\begin{document}

\hlc[pink]{hello given by mattsson et al \cite{mattsson1998physical}}

\hlc[cyan!50]{hello}

\end{document}

答案1

soul 包 ( \usepackage{soul}) 提供了\hl用于突出显示文本的命令。但是,\cite\ref兼容\hl,必须放在 内\mbox才能\hl正常工作。 还\mbox允许 soul 将内容视为一个项目。

您可以使用\mbox

\hl{\mbox{\cite{roohani2019numerical}}

同时,如果你想在参考书目列表中突出显示参考文献,则必须在参考书目文件中注释该参考文献。例如:

@article{roohani2019numerical,
title={\hl{Numerical study and sensitivity analysis on convective heat 
transfer enhancement in a heat pipe partially filled with porous material 
using LTE and LTNE methods}},
author={\hl{Roohani Isfahani, Seyed N and Salimpour, Mohammad R and Shirani, 
Ebrahim}},
journal={\hl{Heat Transfer—Asian Research}},
volume={\hl{48}},
number={\hl{8}},
pages={\hl{4342--4353}},
year={\hl{2019}},
publisher={\hl{Wiley Online Library}}
}

欲了解更多信息,可以参考灵魂包文档: soul 包文档

答案2

您可以使用该lua-ul包进行突出显示。这样您就不必担心文本中的引用或交叉引用:

% !TeX TS-program = lualatex

\documentclass{article}

\usepackage{luacolor}
\usepackage{lua-ul}

\begin{filecontents*}[overwrite]{\jobname.bib}
@article{einstein,
    author = {Einstein, A.},
    title = {{Die Grundlage der allgemeinen Relativitätstheorie}},
    journal = {Annalen der Physik},
    volume = {354},
    number = {7},
    doi = {10.1002/andp.19163540702},
    pages = {769--822},
    year = {1916}
}
\end{filecontents*}

\begin{document}

\begin{figure}
\caption{}
\label{fig}
\end{figure}

\highLight[red]{hello given by mattsson et al \cite{einstein} and Figure~\ref{fig}.}

\highLight[green]{hello}

\bibliographystyle{apalike}
\bibliography{\jobname}

\end{document}

在此处输入图片描述

答案3

您可以使用 soul 包(\usepackage{soul}),并在命令内的花括号之间进行引用或引用\hl

\hl{Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Curabitur dictum {\cite{your citation}} or {\ref{your reference}} gravida mauris.} 

相关内容