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

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

User avatar
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