BibTeX, biblatex and biberhbox in cite

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
carlogarro
Posts: 1
Joined: Mon Dec 07, 2015 11:18 am

hbox in cite

Post by carlogarro »

Hello, I am having a problem when citing a reference inside the document.
This is the reference that I am going to cite:

@article{mitchell,
title={National Biobanks: Clinical Labor, Risk Production, and the Creation of Biovalue},
journal={Science, Technology \& Human Values},
author={Mitchell, R. and Waldby, C.},
year={2010},
volume={35},
number={3},
pages={330--355},
doi={10.1177/0162243909340267}}


This is my latex code:

Since 1990, many countries have established “national delimited, population-based genetic databases, more commonly known as population biobanks” \cite[p.~332]{mitchell}.

And I have the classical overfull \hbox. The name of Mitchell doesn't break the line. How should I fix it?
Here all my packages:

Code: Select all

\documentclass[a4paper,12pt]{article}
\usepackage[utf8]{inputenc} %Se supone que si trabajas en mac has de poner [applemac], pero no creo que pase nada
\usepackage{hyperref} %siempre antes de apacite!!!!
\usepackage{apacite} %para bibliografia
\usepackage{indentfirst}    % De serie (nose pq) cuando empiezas seccion no entra tabulado, asi que esto lo incluye, si no me entiendes, quitalo para ver que es lo que ocurre
% \bibpunct{(}{)}{}{}{}{} Parentesis en vez de claudators en las citas
\usepackage{graphicx}   %para gráficos, fotos, etc.
\usepackage{csquotes} %quotes
\usepackage{todonotes}   % notes showed
%% Interliniado
\usepackage{setspace}   %Sirve para poder tener el doble de espacio interlinieado
\usepackage{float}
\doublespacing         %or: \onehalfspacing
%%
\usepackage{array}
\usepackage{booktabs}
\usepackage[margin=1.32in]{geometry}
%% Epígrafo
\usepackage{epigraph}
\usepackage{tabularx,colortbl,ragged2e}
\renewcommand{\textflush}{flushright}    %podemos elegir donde colocar el texto, si a la izq o a la derecha
\setlength{\epigraphwidth}{\textwidth}  %anchura del texto, he elegido ancho como todo el doc
%%
\setlength{\footnotesep}{15pt}  %distancia de la nota al pie
Thank you so much!

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
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

hbox in cite

Post by Johannes_B »

Stuff like that happens from time to time. You can add a possible hyphenpoint: author={Mit\-chell, R. and Waldby, C.}.

Another way is to reword the sentence.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Post Reply