BibTeX, biblatex and biber ⇒ plain style with ieeetran functions?
plain style with ieeetran functions?
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
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
plain style with ieeetran functions?
I just edit "plain" style myself without implementing ieeetran.
IT WORKS:)
but not everything

Could someone tell me why the following function (edited function from "plain") results in displaying correctly:
, while "volume", "number" and "pages" are given in bib record, whereas it display:, vol. 88, no. 7, p. 22-33,
while no "number" in article record is given?,vol. , 88, p. 22-33,
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