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

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

Post Reply