BibTeX, biblatex and biberDisplaying references

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
samfaith
Posts: 4
Joined: Mon Nov 17, 2014 12:44 am

Displaying references

Post by samfaith »

When displaying bibliography, I want when I get a new line, the new line is offset by three letters of the first line. Fo example here :
Lio W, Jaroszewsk L, Godzik A (2001) Clustering of highly homologous se-
quences to reduce the size of large protein databases. Bioinformatics 17(3):
282-283

I want that the letter q is the second line starts under letter o. Any help please

Code: Select all

\documentclass{article}       
\usepackage{natbib}
\usepackage{paralist}
\makeatletter
\renewenvironment{thebibliography}[1]
  {\bibsection\parindent\z@\begin{inparaitem}}
  {\end{inparaitem}}
\makeatother
\usepackage{hyperref}
\hypersetup{
     colorlinks   = true,
     citecolor    = blue,
     linkcolor = blue,
     urlcolor=blue
}
\begin{document}
\citealt{Lio2001}
\begin{thebibliography}{99}
\bibitem[Lio(2001)]{Lio2001} Lio W, Jaroszewsk L, Godzik A (2001) Clustering of highly homologous sequences to reduce the size of large protein databases. Bioinformatics 17(3):282-283.\\
\bibitem[Lio(2000)]{Lio2000} Lio W, Jaroszewsk L, Godzik A (2000) Clustering of highly homologous sequences to reduce the size of large protein databases. Bioinformatics 17(3):282-283.
\end{thebibliography}
\end{document} 

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

Post Reply