Hi Patrick,
It worked fine for me. Thanks a lot.
I need .
1. when i am defining multiple authors, the last author must be separated with "and", which i am not getting.
2. The numbering of references must not be in []. so i would like to have 1. 2. and so on.
Pls help in this regard
Document Classes ⇒ working with bibtex in texnic center
- pumpkinegan
- Posts: 91
- Joined: Thu May 03, 2007 10:29 pm
working with bibtex in texnic center
There is some good information on BibTeX at: http://www.geocities.com/kijoo2000/bibtex_guide.pdf
Attempted answer to question 1:
The "and" before the last author in defined in the bibliography style bst file. You have to go to the "format.names" function and modify what happens BibTeX does when the number of names is greater than 1. This can be tricky:
Would you consider using a different bst style file?
Answer to question 2:
Put this in the preamble (before the \begin{document})
Note: Please do not reply to a post by starting a new post topic (just use the "Post Reply" button), and please do not ask the same question over more that one post (the majority of posts are answered within 24 hours, and multiple posting will not increase the likelihood of an answer).
Patrick.
Attempted answer to question 1:
The "and" before the last author in defined in the bibliography style bst file. You have to go to the "format.names" function and modify what happens BibTeX does when the number of names is greater than 1. This can be tricky:
Code: Select all
{ numnames #2 >
{ "," * }
'skip$
if$
t "others" =
{ " et~al." * }
{ " and " * t * } %<----- ensure this is set to " and " not to " , "
if$
}
Code: Select all
\bibliographystyle{plain}
Put this in the preamble (before the \begin{document})
Code: Select all
\makeatletter % Reference list option change
\renewcommand\@biblabel[1]{#1.} % from [1] to 1.
\makeatother %
Note: Please do not reply to a post by starting a new post topic (just use the "Post Reply" button), and please do not ask the same question over more that one post (the majority of posts are answered within 24 hours, and multiple posting will not increase the likelihood of an answer).
Patrick.
Re: working with bibtex in texnic center
Thanks a lot patrick.