I am using
\usepackage{geometry}
\geometry{
a4paper,
left=25mm,
top=26mm,
right=26mm,
bottom=26mm,
}
But some of my words jump out of my boundary.
How can I solve it?
I am using
\usepackage{geometry}
\geometry{
a4paper,
left=25mm,
top=26mm,
right=26mm,
bottom=26mm,
}
But some of my words jump out of my boundary.
How can I solve it?
LaTeX can hyphenate oxidoreductase, as shown by the log of the example below the default US English patterns would allow breaks at any of ox-i-dore-duc-tase However the image shows that you are attaching the citation directly to the word, this makes the whole construct a non-word and will be skipped and not considered for hyphenation. It is normal to use a non breaking space ~. Compare the two paragraphs in the output shown.
\documentclass{article}
\setlength\textwidth{3cm}
\showhyphens{oxidoreductase}
\begin{document}
zz zzz
zz zz zz zzz
zz zz zz zzz
oxidoreductase\cite{zz}
zz zz zz zzz
zz zzz
zz zz zz zzz
zz zz zz zzz
oxidoreductase~\cite{zz}
zz zz zz zzz
\begin{thebibliography}{99}
\bibitem[1]{zz}{something}
\end{thebibliography}
\end{document}
\hyphenation{every-where}in the preamble. (See: https://tex.stackexchange.com/q/182569/134144) Also related: https://tex.stackexchange.com/q/9107/134144 – leandriis Feb 08 '18 at 16:40~in front of\citecommands. – egreg Feb 08 '18 at 17:04\hyphenationwon't help in this case. – David Carlisle Feb 08 '18 at 20:40