Using the answer provided in How to change the shape of reference numbers in the bibliography, I have a document where the reference numbers in the bibliography are shown as boldface.
Now at the same time that this number is shown in boldface in the bibliography I would like that when citing that reference in the body of the text, the reference number appears as italic, i.e. \cite{one} writes the number of the reference as italic (and not the [ ]'s), like [1].
\documentclass{article}
\makeatletter
\def\@biblabel#1{[\textbf{#1}]}
\makeatother
\begin{document}
See the reference \cite{one}.
\begin{thebibliography}{MM}
\bibitem{one}
\end{thebibliography}
\end{document}
