so, I am trying to configure the bibliography so that it appears chronologically, (so first citation is (1) in the references), it appears within parentheses () instead of brackets [] and it has the following format: this is an example in which I cite some papers (1) and later on (2),
References
1. Ho, DD, Neumann, AU, Perelson, AS, Chen, W, Leonard, JM, and Markowitz, M. Rapid turnover of plasma virions and CD4 lymphocytes in HIV-1 infection. Nature 373.6510 (1995), pp. 123–126.
so note that the authors are BOLD, last name first, initials without periods, ALL the authors are listed, then comes the YEAR, without parentheses. The article does NOT have " " around it and ideally, the number of the journal is also bold.
So far, I have been able to put the authors bold, last name first, initials without periods, all the authors listed and article without " ". BUT, I cannot find a way to have the year immediately after the authors and the parentheses around the citations. And I have NO idea as of how to put the number of the journal bold...
Here is my code so far:
\documentclass[12pt]{article}
\usepackage[style=numeric,subentry,sorting=none,firstinits=true,terseinits=true,url=false,doi=false,isbn=false,maxbibnames=99]{biblatex}
%make the names of the authors bold:
\DeclareNameFormat{author}{%
{\ifthenelse{\value{listcount}>7\AND\value{listcount}<\value
{liststop}}
{}
{\ifthenelse{\iffieldequalstr{usere}{unkauth}\OR\iffieldequalstr
{usere}{unkauthdate}}
{\mkbibbrackets{\bfseries{\usebibmacro{name:last-first}{#1}{#4}
{#5}{#7}?}}}
{\bfseries{\usebibmacro{name:last-first}{#1}{#4}{#5}{#7}}}}}}
%puts first the last name and then the first name
\DeclareNameAlias{default}{last-first}
\renewbibmacro{in:}{}
\AtEveryBibitem{%
\clearlist{language}%
}
\DeclareFieldFormat
[article,inbook,incollection,inproceedings,patent,thesis,unpublished]
{title}{{#1\isdot}}
\addbibresource{example}
\begin{document}
this is an example in which I cite some papers \cite{ho1995} and later on \cite{ahr2004},
\printbibliography
\end{document}
and here is the result:

any help will be greatly appreciated.

:( :(
– Laura Sep 05 '13 at 22:01Package biblatex warning: file 'test.bbl' is wrong format version, expected 2.2
– Laura Sep 05 '13 at 23:51latex - biber - latex. (Alatex - biber -latexsequence should overwrite the old files anyway, but deleting auxiliary files is a good solution, too, in this case.) If the problem persists, make sure your versions ofbiblatexandbibermatch each other: see their manuals for compatibility details. – jon Sep 06 '13 at 00:00pflatex? – moewe Sep 06 '13 at 07:36