Document Classes ⇒ working with bibtex in texnic center
working with bibtex in texnic center
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
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
- pumpkinegan
- Posts: 91
- Joined: Thu May 03, 2007 10:29 pm
working with bibtex in texnic center
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.