BibTeX, biblatex and biberNumbers instead of Author Names

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
penkki
Posts: 1
Joined: Sat Oct 19, 2013 2:13 pm

Numbers instead of Author Names

Post by penkki »

Hello everyone,

I'm new here. I'm a Belgian student, so please forgive my English.

I've been looking two hours around the net to solve my problem but I didn't found any answer which would help me out. So here I am. My general code is this.

Code: Select all

\documentclass[12pt]{report}
\usepackage[utf8]{inputenc}
\usepackage[french]{babel}
\usepackage{lipsum}
\usepackage{qtree}
\usepackage{url}
\usepackage{color}
\newcommand\gts[1]{\og#1\fg}
\definecolor{gris}{gray}{0.95}
\usepackage{expex}
\usepackage{graphicx}

\usepackage[french]{minitoc}

% to add bib in table of contents
\usepackage[nottoc]{tocbibind}

% ordonated bib
\bibliographystyle{unsrt}

\begin{document}

\begin{titlepage}
\input{./title_page.tex}
\end{titlepage}

%\maketitle

% minitoc preparation
\dominitoc

% table of contents
\tableofcontents

% different chapters
\include{introduction}
\include{chap1}
\include{chap2}
\include{chap3}	
\include{conclusion}
\appendix
\include{annexes}

% bibliography
\bibliographystyle{apalike-fr}
\bibliography{allbiblio}
\end{document}
My problem is that in my thesis, the authors are cited as "[1]", "[2] etc., following their number in the bibliography. Their appearance is shown in the attachment.

In the different chapters, to cite an author, I just say \cite{author}.


Thanks a lot!
Attachments
appearance-citations.png
appearance-citations.png (91.88 KiB) Viewed 20403 times
appearance-bibliography.png
appearance-bibliography.png (65.79 KiB) Viewed 20403 times
Last edited by localghost on Wed Oct 23, 2013 6:57 pm, edited 1 time in total.

Recommended reading 2024:

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

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

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Numbers instead of Author Names

Post by localghost »

penkki wrote:[…] My general code is this. […]
For an adequate problem description please prepare a self-contained and minimal example in order to avoid speculations and guesswork.
penkki wrote:[…] My problem is that in my thesis, the authors are cited as "[1]", "[2] etc., following their number in the bibliography. […]
Seems as if you want an author-year style for your citations. I'm quite sure that a Forum Search will yield useful results with natbib or perhaps with biblatex.


Best regards and welcome to the board
Thorsten
Post Reply