I'm kind of "reverse engineering" a bibtex file for own style definition. I could make a few change, but there is one I was not succesfful in making: I'm modifying a style without the change.case function, but want it.
The original plain.bst has this:
FUNCTION {format.title}
Code: Select all
{ title empty$
{ "" }
{ title "t" change.case$ }
if$
}
Code: Select all
FUNCTION {format.title}
{ title empty$
{ "" }
{ title
%"``" swap$ * ",'' " * %original
"" swap$ * ", " * %already modified
}
no.comma 'output.state := %%%KCB:
if$
}
Any idea where I should introduce this change.case? Tried few solutions which did not work... Should it replace this swap$ (what is it exactly?).
Also, I removed the '' in the definition, I'm not sure if I could then have written actual line more clearly?
Thanks so much!!