Tenho um texto longo em uma tabela que é combinado a partir de dois comandos com um espaço entre eles, que deve ser sublinhado. Como posso envolvê-lo enquanto estiver sublinhado?
O exemplo abaixo mostra o comportamento com \underline, \uline e \ul.
Exemplo:
\documentclass{article}
\usepackage{tabularx}
\usepackage{soul}
\usepackage[normalem]{ulem}
\newcommand{\texta}{{Short text from some command.}}
\newcommand{\textb} {{Long text from some other command. This text should be broken on line end and not overflow.}}
\soulregister{\texta}{0}
\soulregister{\textb}{0}
\begin{document}
\begin{tabularx}{\textwidth}{|l|X|}
\hline
nothing & \texta\ \textb \\
\hline
underline & \underline{\texta\ \textb} \\ % Overflows
\hline
uline & \uline{\texta\ \textb} \\ % Overflows
\hline
ul & \ul{\texta\ \textb} \\ % Breaks line, but does not underline. Space is ignored.
\hline
\end{tabularx}
\end{document}
Responder1
O \ul
comando do soul
pacote realmente funciona. Mas você tem dois problemas na maneira como o usa.
1) Seu texto não será sublinhado devido ao nível adicional de colchetes nas definições de \texta
e \textb
. Comece removendo estes aparelhos:
\newcommand{\texta}{Short text from some command.}
\newcommand{\textb}{Long text from some other command. This text should be broken on line end and not overflow.}
2) Você deve expandir o argumento de \ul
:
\edef\myulcmd{\noexpand\ul{\unexpanded\expandafter{\texta}\space\unexpanded\expandafter{\textb}}}%
\myulcmd