BibTeX, biblatex and biberModifications to a Bibliography Style

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
pallav
Posts: 170
Joined: Wed Nov 12, 2008 5:53 pm

Modifications to a Bibliography Style

Post by pallav »

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
my desired references style.JPG (346.83 KiB) Viewed 2899 times
MMNP1.bst
My bst
(23.86 KiB) Downloaded 174 times

Recommended reading 2024:

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

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

josephwright
Site Moderator
Posts: 814
Joined: Tue Jul 01, 2008 2:19 pm

Modifications to a Bibliography Style

Post by josephwright »

Probably the easiest way is to add the formatting as a dedicated version of format.title, say

Code: Select all

FUNCTION {format.title.article}
{ title empty$
    { "" }
    { title "t" change.case$ "\emph{" swap$ * "}" * }
  if$
}
with the code for \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
pallav
Posts: 170
Joined: Wed Nov 12, 2008 5:53 pm

Re: Modifications to a Bibliography Style

Post by pallav »

Thank you very much.
Post Reply