GeneralOverflow with bibtex references

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
berman
Posts: 1
Joined: Mon Jul 07, 2008 7:04 pm

Overflow with bibtex references

Post by berman »

Hey everyone!!!

I'm new in the forum and I also new in the use of LaTex. So, I have a problem :oops: :

I'm using MikTex 2.7.

With the follow code:

my .tex

Code: Select all

... regulatory networks \citep{4}. These networks ...
my .bib

Code: Select all

@article{4,
 author = {Divina, F. and Aguilar Ruiz, J.S.},
 title = {Biclustering of Expression Data with Evolutionary Computation},
 journal = {IEEE Trans. on Knowl. and Data Eng.},
 volume = {18},
 year = {2006},
 pages = {590--602},
 }
the reference in the text cause an overflow:

Overfull \hbox (58.49593pt too wide) in paragraph at lines 56--58
\OT1/ptm/m/n/12 ing of gene ex-pres-sion pat-terns is be-ing used to dis-cover
gene reg-u-la-tory net-works ([],
[1]

an looks like
Image

this is the template that I being use:

Code: Select all

\documentclass[oneside,a4paper,english,links]{alioeuro}
%
\usepackage{graphicx}
\usepackage{amsmath,amsfonts}
\usepackage{multirow}

\title{...}


\begin{document}
\vspace{3cm}

\maketitle

......

\bibliography{BSB2008}
\end{document}
I need that latex fits the reference correctly in the text and don't cause an overflow.

Anyone can help?

Thanks!!!

PD: sorry for my english!!!

Recommended reading 2024:

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

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

gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Overflow with bibtex references

Post by gmedina »

I would rather use something like

Code: Select all

@article{DandA,
  author = "Divina, F. and Aguilar Ruiz, J.S.",
  title = "Biclustering of Expression Data with Evolutionary Computation",
  journal = "IEEE Trans. on Knowl. and Data Eng.",
  volume = "18",
  year = "2006",
  pages = "590--602"
 }
But, this is only a suggestion.
berman wrote:\documentclass[oneside,a4paper,english,links]{alioeuro}
I am not familiar with that document class. A better alternative would be to contanct directly the creator of that particular class.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Post Reply