如何使用以下 MWE 和 thebibliography 将文内引用编号设为斜体(或强调)?

如何使用以下 MWE 和 thebibliography 将文内引用编号设为斜体(或强调)?

附有 Overleaf 链接。

\documentclass{article}
\usepackage{cite}
\renewcommand\citeleft{(}
\renewcommand\citeright{)}

\begin{document}

This is a test document~\cite{prise}.  **Question: If I use \emph{\cite{}} both parenthesis and citation numbers becomes emphasized. I just want to make a number italic not the parenthesis. Could anyone help me?**

\begin{thebibliography}{}
\bibitem{prise} Prise KM, O'sullivan JM. Radiation-induced bystander signalling in cancer therapy. Nature Reviews Cancer 2009; 9:351.

\end{thebibliography}

\end{document}

答案1

您可以使用命令将括号设置为直立\textup

代码:

\documentclass{article}
\usepackage{cite}

\renewcommand\citeleft{\textup{(}}
\renewcommand\citeright{\textup{)}}

\begin{document}

This is a test document~\cite{prise}.  **Question: If I use \emph{\cite{prise}} both parenthesis and citation numbers becomes emphasized. I just want to make a number italic not the parenthesis. Could anyone help me?**

\begin{thebibliography}{}
\bibitem{prise} Prise KM, O'sullivan JM. Radiation-induced bystander signalling in cancer therapy. Nature Reviews Cancer 2009; 9:351.

\end{thebibliography}

\end{document}

结果:

在此处输入图片描述

相关内容