BibTeX, biblatex and biberColor of Bibilography text

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
hello123
Posts: 2
Joined: Sat Jul 05, 2014 12:40 am

Color of Bibilography text

Post by hello123 »

Hello,

I am trying to make bold blue color text in some of the bibliography. For instance in reference [1] and keep the default in rest of others references. When I do the following:
\usepackage{color}
\usepackage{cite}
\textbf{{\color{blue} \cite{1}}}


It does only make blue [1] in the document but does not change the color in corresponding reference. Please any suggestions.

References
[1] H. Xu and B. Li, “Dynamic cloud pricing for revenue maximization,”
IEEE Transactions on Cloud Computing, vol. 1, no. 2, pp. 158–
171, 2013.

[2] H. Xu and B. Li, “Dynamic cloud maximization,”
IEEE Transactions on Cloud Computing, vol. 3, no. 12, pp. 158–
171, 2011.

[3] H. Xu and B. Li, “Dynamic pricing for revenue maximization,”
IEEE Transactions on Cloud Computing, vol. 1, no. 2, pp. 158–
171, 2010.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Color of Bibilography text

Post by Johannes_B »

We need much more information. Please read how to prepare a minimal working example to give us the info we need.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
hello123
Posts: 2
Joined: Sat Jul 05, 2014 12:40 am

Color of Bibilography text

Post by hello123 »

Here is the minimal code that I have tried. Please suggest

//myReference.bib file

@article{nature,
author = {\color{blue}Rosa Rademakers and Manuela Neumann and Ian R. Mackenzie}},
title = {\color{blue}Advances in understanding the molecular basis of frontotemporal dementia - elongated title}},
journal = {\color{blue} {Nature Reviews Neurology}},
volume = {\color{blue}{8}},
year = {\color{blue}{2012}},
pages = {\color{blue}{423-434}},
doi = {\color{blue}{10.1038/nrneurol.2012.117}},
}
@article{fuente,
author = {D. de la Fuente and J.G. Castaño and M. Morcillo},
title = {Long-term atmospheric corrosion of zinc},
journal = {Corrosion Science},
volume = {49},
year = {2007},
pages = {1420–1436},
}




\documentclass{article}
\begin{document}
This is my document \cite{nature} and we have another \cite{fuente}
\bibliography{myReference}
\end{document}
Post Reply