I am new to this, so if I have left out any information please just let me know, I will fill it in if I can.
I am trying to get bold volume numbers in my bibliography, and it seems that the solution is to edit the .bst file (Harvard agsm bibliography style no comma and bold volume and How to edit a .bst file to get bold volume number in case of articles? for example).
However, I can't find the .bst file! It appears that it should be in C:\Program Files (x86)\MiKTeX 2.9\bibtex\bst\numeric.bst (Add bst file with LaTeX / MiKTeX) or something similar, but there are no MiKTeX program files! I know that sounds crazy.
I am using MiKTeX 2.9 and TexMaker on Windows 7.
Here is a basic example:
\documentclass[12pt,oneside]{report}
\usepackage[backend=biber,style=numeric,sorting=none,natbib=true,firstinits=true,uniquename=false]{biblatex}
\addbibresource{bibliography.bib}
\renewbibmacro*{volume+number+eid}{%
\printfield{volume}%
\setunit*{\addnbspace}% NEW (optional)
\printfield{number}%
\setunit{\addcomma\space}%
\printfield{eid}}
\DeclareFieldFormat[article]{number}{\mkbibparens{#1}}
\DeclareFieldFormat{volume}{\mkbibbold{#1}}
\begin{document}
Example text with citation \citep{Liu14}.
\printbibliography
\end{document}
This is the bibliography file content:
@article{Liu14,
Author = {F. Liu and L. Chen and B. Tang and Y. Hu and Q. Lin and L. Lei},
Journal = {Lighting Res. Technol.},
Numpages = {9},
Pages = {567--575},
Title = {{A discontinuous surface reflector for
high-power integrated LEDs}},
Volume = {46},
Number = {},
doi = {},
Year = {2014}
}
And here is the output:



\DeclareFieldFormat[article,periodical]{volume}{\mkbibbold{#1}}. – moewe May 01 '18 at 14:47