Generalsimple bibliography numbering style

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
mikkelstuff
Posts: 17
Joined: Fri Sep 24, 2010 8:50 pm

simple bibliography numbering style

Post by mikkelstuff »

Is there a bibliography style to number the references without the square brackets, such as

1. Smith .....

2. Jones ....

Thanks

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

simple bibliography numbering style

Post by frabjous »

You shouldn't need a whole new .bst for this. (Or if you do, which one to pick will depend on a lot of other stuff.) Try putting something like this in your preamble:

Code: Select all

\makeatletter 
\def\bibleftdelim{}
\def\bibrightdelim{.}
\def\@biblabel#1{\bibleftdelim #1\bibrightdelim}
\makeatother 
If that doesn't work, then submit a minimal working example.
mikkelstuff
Posts: 17
Joined: Fri Sep 24, 2010 8:50 pm

Re: simple bibliography numbering style

Post by mikkelstuff »

Excellent frabjous! I'm very new to this and have much to learn.
Post Reply