\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}
结果: