BibTeX, biblatex and biber ⇒ Modifications to a Bibliography Style
Modifications to a Bibliography Style
I have modified a bst file as per my journal needs. All the style of the references are ok except tile. I need my book title to be not emphasized and article title to be emphasized. My present bst makes all the title unemphasized. Please change my bst so that I can get my desired style.
- Attachments
-
- My desired references style
- my desired references style.JPG (346.83 KiB) Viewed 2900 times
-
- MMNP1.bst
- My bst
- (23.86 KiB) Downloaded 174 times
NEW: TikZ book now 40% off at Amazon.com for a short time.

-
- Site Moderator
- Posts: 814
- Joined: Tue Jul 01, 2008 2:19 pm
Modifications to a Bibliography Style
Probably the easiest way is to add the formatting as a dedicated version of
with the code for
format.title
, say
Code: Select all
FUNCTION {format.title.article}
{ title empty$
{ "" }
{ title "t" change.case$ "\emph{" swap$ * "}" * }
if$
}
\article
changed to
Code: Select all
FUNCTION {article}
{ output.bibitem
format.authors "author" output.check
format.title.article "title" output.check
crossref missing$
{ format.journal.vol.year output
format.number output
format.pages "pages" output.check
}
{ format.article.crossref output.nonnull
format.pages "pages" output.check
}
if$
format.language *
note output
fin.entry
}
Joseph Wright
Re: Modifications to a Bibliography Style
Thank you very much.