BibTeX, biblatex and biberplain style with ieeetran functions?

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
darwinn
Posts: 5
Joined: Mon Aug 03, 2009 6:33 pm

plain style with ieeetran functions?

Post by darwinn »

I have a problem with bibliography style.
I found "plain" style closest to my necessities, although some of the results are unacceptable at my university.

Is it possible to modify a "plain" style, so that it would have "ieeetran" way of displaying volumes,numbers and pages in articles?

Will appreciate help in this matter,
D
Last edited by darwinn on Fri Nov 13, 2009 11:41 am, edited 2 times in total.

Recommended reading 2024:

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

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

darwinn
Posts: 5
Joined: Mon Aug 03, 2009 6:33 pm

plain style with ieeetran functions?

Post by darwinn »

On a second day I decided to work it other way.
I just edit "plain" style myself without implementing ieeetran.

IT WORKS:)
but not everything 8-)

Could someone tell me why the following function (edited function from "plain") results in displaying correctly:
, vol. 88, no. 7, p. 22-33,
, while "volume", "number" and "pages" are given in bib record, whereas it display:
,vol. , 88, p. 22-33,
while no "number" in article record is given?
FUNCTION {format.vol.num.pages}
{ ", vol.~" volume field.or.null
number empty$
'skip$
{ ", no.~" * number * * *
volume empty$
{ "there's a number but no volume in " cite$ * warning$ }
'skip$
if$
}
if$
pages empty$
'skip$
{ duplicate$ empty$
{ pop$ format.pages }
{ ", p.~" * pages n.dashify * }
if$
}
if$
}

Thanks,
D
Post Reply