Document Classesworking with bibtex in texnic center

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
vamsi
Posts: 4
Joined: Wed May 23, 2007 7:36 pm

working with bibtex in texnic center

Post by vamsi »

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

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
pumpkinegan
Posts: 91
Joined: Thu May 03, 2007 10:29 pm

working with bibtex in texnic center

Post by pumpkinegan »

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:

Code: Select all

   { numnames #2 >
{ "," * }
'skip$
    if$
    t "others" =
{ " et~al." * }
{ " and " * t * }   %<----- ensure this is set to " and " not to " , "
    if$
   }
Would you consider using a different bst style file?

Code: Select all

\bibliographystyle{plain}
Answer to question 2:
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.
vamsi
Posts: 4
Joined: Wed May 23, 2007 7:36 pm

Re: working with bibtex in texnic center

Post by vamsi »

Thanks a lot patrick.
Post Reply