I am a LaTeX noob and am stuck on how to modify a biblatex style. I tried playing around with an existing style but I have a hard time following in which files all the sub-macros are hidden.
My bib needs to look as follows:
Last1 / Last2 Year
(tab)Last1, First_initial1; Last2, First_initial2: Title. Publication, Location, Date.
I started editing an existing desing and it currently looks as follows:
Last1, First1 and First2 Last2 Year
(tab)Last1, First1 and First2 Last2. Title. Publication.
Can anyone help me where I need to look in the varous bbx, cbx and def files to make my bibliography look right?
EDIT
\ProvidesFile{newstyle_bib.bbx}[\abx@bbxid $Id: standard.bbx,v 0.9a 2010/03/19 19:52:15 $] \newtoggle{bbx:isbn}
\newtoggle{bbx:url}
\newtoggle{bbx:doi}
\newtoggle{bbx:eprint}
\DeclareBibliographyOption{isbn}[true]{%
\settoggle{bbx:isbn}{#1}}
\DeclareBibliographyOption{url}[true]{%
\settoggle{bbx:url}{#1}}
\DeclareBibliographyOption{doi}[true]{%
\settoggle{bbx:doi}{#1}}
\DeclareBibliographyOption{eprint}[true]{%
\settoggle{bbx:eprint}{#1}}
\ExecuteBibliographyOptions{isbn,url,doi,eprint}
%%%%%%%%%%%%%%%
\DeclareBibliographyDriver{book}{%
\usebibmacro{author_head}
\indent %
\bf\printtext[bibhyperref]{\printfield[citetitle]{labeltitle}}
\printnames{author}%
\newunit\newblock
\printfield{title}%
\newunit\newblock
\printlist{publisher}%
\newunit
\printlist{location}%
\newunit
\printfield{year}%
\finentry
\newline}
%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%
\DeclareBibliographyDriver{article}{%
\usebibmacro{author_head}
\indent %
\bf\printtext[bibhyperref]{\printfield[citetitle]{labeltitle}}
\printnames{author}% \newunit\newblock


bbx/cbxfile? At the moment I can't test anything. But I think it's helpful showing the bbx and cbx modifications. – Marco Daniel Aug 6 '12 at 11:41