LaTeX doesn't create the line break and I get text coming off the page. I'm using the seqsplit package but it doesn't work in this case.
Here is my preambule and code :
\documentclass[12pt,twoside]{report}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{polski}
\renewcommand*{\tablename}{Tab.}
\usepackage[unicode]{hyperref}
\usepackage{indentfirst}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{subcaption}
\graphicspath{{rysunki/}}
\usepackage[a4paper,width=150mm,top=25mm,bottom=25mm,bindingoffset=6mm]{geometry}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead{}
\fancyhead[RO,LE]{Rozdział \thechapter}
\fancyhead[CE,CO]{\rightmark}
\fancyfoot[LO,CE]{\thepage}
\usepackage{graphicx}
\graphicspath{{rysunki/}}
\usepackage{amsmath}
\setcounter{secnumdepth}{4}
\usepackage{seqsplit}
\hyphenpenalty=10000
\clubpenalty=10000
\widowpenalty=10000
\brokenpenalty=10000
\exhyphenpenalty=999999
\righthyphenmin=3
\tolerance=4500
\pretolerance=250
\hfuzz=1.5pt
\hbadness=1450
\sloppy
\setlength{\textwidth}{\paperwidth}
\addtolength{\textwidth}{-5cm}
\setlength{\textheight}{\paperheight}
\addtolength{\textheight}{-5cm}
\setlength{\oddsidemargin}{0cm}
\setlength{\evensidemargin}{0cm}
\topmargin -1.25cm
\footskip 1.4cm
\linespread{1.3}
\begin{document}
\section{Synteza związków}
$\textbf{[Cu}_{3}\textbf{1}_\textbf{{RRRRRR}}\textbf{Cl}_\textbf{{4}}\textbf{]Cl}_\textbf{{2}}\cdot\textbf{7,5H}_\textbf{{2}}\textbf{O} $ \\
^{1}H \ \textbf{\mbox{NMR}} \ (500 \mbox{MHz}, D_{2}O)\ \delta\ \seqsplit{$77,20;\ 56,82;\ 36,46;\ 34,52;\ 29,12;\ 28,08;\ 27,52;\ 16,04;\ 10,44;\ 1,60;\ -0,96;\ -1,77;\ -6,19;\ -8,20;\ -9,42;\ -161,13;\ -184,80\ ppm.$} \\
\textbf{\mbox{ESI-MS}}: m \backslash z\ $291,7 [\textbf{1}_{-2H}Cu_{2}Cl]^{+};\ 387,7\ [\textbf{1}_{-2H}Cu_{2}]^{2+};437,1\ [\textbf{1}_{-3H}Cu_{3}Cl]^{2+};\ 455,1\ [\textbf{1}_{-2H}Cu_{3}Cl_{2}]^{2+};\ 812,3\ [\textbf{1}_{-2H}Cu_{2}Cl]^{+};\ 848,3\ [\textbf{1}_{-1H}Cu_{2}Cl_{2}]^{+};\ 884,2\ [\textbf{1}Cu_{2}Cl_{3}]^{+};\ 909,2\ [\textbf{1}_{-3H}Cu_{3}Cl_{2}]^{+};\ 927,2\ \{[\textbf{1}_{-3H}Cu_{3}Cl_{3}](H_{2}O)_{2}\}^{+}; $
\end{document}
As you can see seqsplit works in with NMR line but it doesn`t with ESI line.
Is there anyway to have LaTeX do this line break automatically and adjust text to the width of the page?
