Hi all I am cite sources in my report using the cite command:
\cite{test}
and I am using biblatex in Numeric mode:
\usepackage[backend=bibtex, style=numeric]{biblatex}
however I was hoping to make all of the the citations appear as bold, and was hoping someone could steer me in the right direction.
Edit* Similar to the following
\begin{filecontents*}{\jobname.bib}
@report{RFC3550,
author = {H. Schulzrinne and S. Casgner and R. Frederick and V. Jacobson},
title = {RFC 3550, RTP: A Transport Protocol for Real-Time Applications},
url = {https://tools.ietf.org/html/rfc3550},
year = {2003},
}
@report{RFC2326,
author = {H. Schulzrinne and A. Rao and R. Lanphier},
title = {RFC 2326, Real Time Streaming Protocol},
url = {https://rools.ietf.org/html/rfc2326},
year = {1998},
}
\end{filecontents*}
\documentclass[12pt]{report}
\usepackage[a4paper, width=150mm, top=25mm, bottom=25mm ,bindingoffset=6mm]{geometry}
\usepackage[backend=bibtex, style=numeric]{biblatex}
\addbibresource{\jobname.bib}
\begin{document}
\cite{RFC3550} and \cite{RFC2326}
\printbibliography
\end{document}

\makeatletter \renewcommand*{\@cite@ofmt}{\bfseries\hbox} \makeatother? Please provide an MWE! – LaRiFaRi Aug 25 '15 at 09:07surname, given name, soauthor = {Schulzrinne, H. and Rao, A. and Lanphier, R.}. – Aug 25 '15 at 09:40