I have a huge table (tabularx) which has a few columns which contain a lot of text. One of these columns contains long text but should not include a hyphen although it should break.
for example:
\documentclass[oneside,a4paper]{memoir}
\usepackage[english]{babel}
\RequirePackage{underscore}
\usepackage{blindtext}
%% Table Style
\RequirePackage{ltablex}
\RequirePackage{tabu}
\begin{document}
\begin{center}
\begin{tabularx}{\textwidth}{ |X|X|}
\hline
Function signature & Description \\
\hline
\hline
sdsadasdasdasdasdasd_dsfad_asdfasd_dsfad_asdfasd_dsfad_asdfasd() & \blindtext \\
\hline
asdasdasdasd_dsfad_asdfasd_dsfad_asdfasd_dsfad() & \blindtext \\
\hline
asdasdasdasd_dsfad_asdfasd_dsfad_asdfasd_dsfad() *StatsReport & \blindtext \\
\hline
asdasdasdasd_dsfad_asdfasd_dsfad_asdfasd_dsfad() & \blindtext \\
\hline
\end{tabularx}
\end{center}
\end{document}
In this case the first column should not contain hyphen although being split, as this will cause confusion.
Is there anyway to do that?
I tried all the tricks in this post but nothing worked.
