BibTeX, biblatex and biber\cite produces text out of margin

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
Matos
Posts: 1
Joined: Tue Sep 06, 2016 2:05 pm

\cite produces text out of margin

Post by Matos »

I have also asked this elsewhere, but haven't got any answers so far.

Is it possible to prevent citations from being shown out of the page margin?

Example:
RPPuj.png
RPPuj.png (51.25 KiB) Viewed 8056 times

Code: Select all

\documentclass{article}

\usepackage[a4paper, showframe]{geometry}
\usepackage{filecontents}

\usepackage{natbib}
\bibliographystyle{abbrvnat}
\setcitestyle{authoryear}

\begin{filecontents}{bibl.bib}
  @book{book1,
    author = {Primeiro Ultimo},
    title = {Example without special characters},
    year = {2016}
  }
      
  @book{book2,
    author = {Primeiro \'Ultimo},
    title = {Example with accent},
    year = {2016}
   }
\end{filecontents}

\begin{document}
      
  bbbbbbbbbbbb bbbbbbbbbbb bbbbbbbbb bbbbbbbbb bbbbbbbbbbbb bbbbbbbbbbbbb  \cite{book1}
  % hyphenated
      
  bbbbbbbbbbbb bbbbbbbbbbb bbbbbbbbb bbbbbbbbb bbbbbbbbbbbb bbbbbbbbbbbbb  \cite{book2}
  % out of margin
      
  bbbbbbbbbbbb bbbbbbbbbbb bbbbbbbbb bbbbbbbbb bbbbbbbbbb bbbbbbbbbb \cite{book1}
  % out of margin
      
  bbbbbbbbbbbb bbbbbbbbbbb bbbbbbbbb bbbbbbbbb bbbbbbbbbb bbbbbbbbbb \cite{book2}
  % out of margin
      
  \bibliography{bibl}
      
\end{document}


I have tried to solve this by loading the packages breakcites and cite, but they did not help.

Thank you.
Last edited by cgnieder on Wed Sep 21, 2016 9:08 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

Stefan Kottwitz
Site Admin
Posts: 10335
Joined: Mon Mar 10, 2008 9:44 pm

\cite produces text out of margin

Post by Stefan Kottwitz »

Hi Matos,

welcome to the forum!

In this case, microtype brings an improvement:

Code: Select all

\usepackage{microtype}
Stefan
LaTeX.org admin
Post Reply