On Thursday 16 January 2014 18:00:20 Jürgen Spitzmüller wrote:
> 2014/1/16 Wolfgang Engelmann <[email protected]>
Thanks, Jürgen,
works well. In the meantime I tried to use makebst to produce the desired
.bst file, but at the end got
LaTeX Error: File `babelbst.tex' not found
Have to find out how to get it, unless somebody knows already.
Wolfgang
>
> > Hello again,
> >
> > I tried to change the kluwer.bst file in such a way, that the volume
> > of
> >
> > a journal is not given in bold in the References by changing the part
> > after %%
> >
> > to the { " " " * *
> >
> > in the following function:
> >
> >
> >
> > FUNCTION {format.vol.num.pages}
> >
> > { volume embolden field.or.null
> >
> > number empty$
> >
> > 'skip$
> >
> > %%{ "(" number * ")" * *
> >
> > { " " " * *
> >
> >
> >
> > but the volume is still in bold.
> >
> > I searched for bold in the kluwer.bst and found only the above item
> > besides this one:
> >
> >
> >
> > FUNCTION {embolden}
> >
> > { duplicate$ empty$
> >
> > { pop$ "" }
> >
> > { "{\bf " swap$ * "}" * }
> >
> > if$
> >
> > }.
> >
> > which is probably not the one I need.
> >
> >
> >
> > I changed Jürgens mykluwer.bst to mykluwerNoBold.bst before running
> > lyx.
> >
> >
> >
> > Apparently I did something wrong. Any idea?
>
> Try (untested)
>
> FUNCTION {format.vol.num.pages}
>
> { volume field.or.null
>
> number empty$
>
> 'skip$
>
> { "(" number * ")" * *
>
>
> (i.e., change "volume embolden" to "volume").
>
> HTH
> Jürgen