"R. E. de Lima-Lopes" wrote:
> 
> I need to whrite some bib references on the body on my thesis. The problem
> is the word "and" between  authors, it should be replaced by an "e", which
> (and in my native language, Portuguese).
> 
> So I need something like [Lyons e Hallyday, 1999] instead of [Lyons and
> Halliday, 1994]

i don't know if there might be a special package for portugese
or if package custom-bib may help.

the plain-style bst file is in
/usr/share/texmf/bibtex/bst/base/plain.bst

it's not difficult to edit this file.
in every bst-file is a function for the names. here you can change
the word "and" to "e". in all other bst-files you'll find this
function, too.

Herbert


FUNCTION {format.names}
{ 's :=
  #1 'nameptr :=
  s num.names$ 'numnames :=
  numnames 'namesleft :=
    { namesleft #0 > }
    { s nameptr "{ff~}{vv~}{ll}{, jj}" format.name$ 't :=
      nameptr #1 >
        { namesleft #1 >
            { ", " * t * }
            { numnames #2 >
                { "," * }
                'skip$
              if$
              t "others" =
                { " et~al." * }
                { " and " * t * }  %<----- change and to e
              if$
            }
          if$
        }
        't
      if$
      nameptr #1 + 'nameptr :=
      namesleft #1 - 'namesleft :=
    }
  while$
}


-- 
[EMAIL PROTECTED]
http://perce.de/lyx/

Reply via email to