BibTeX, biblatex and biber ⇒ Modifications to a Bibliography Style
Modifications to a Bibliography Style
- Attachments
-
- My desired references style
- my desired references style.JPG (346.83 KiB) Viewed 2987 times
-
- MMNP1.bst
- My bst
- (23.86 KiB) Downloaded 183 times
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
-
- Site Moderator
- Posts: 814
- Joined: Tue Jul 01, 2008 2:19 pm
Modifications to a Bibliography Style
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
}