如何控制包含很长的文本且没有空格的表格中的列宽。
\begin{table}
\begin{tabular}{l p{2cm}}
datapath & /home/username/path/to/directory/very/long
\end{tabular}
\end{table}
p{2cm}
仅当第二列元素类似于时才有效/home/ username/ path/ to/ directory /very /long
。我在这里做错了什么吗?
答案1
借用 David 的想法,但改用\path
(因为它是一条路径)
\documentclass{article}
\usepackage{url}
\begin{document}
\begin{table}
\begin{tabular}{l p{2cm}}
datapath & \path{/home/username/path/to/directory/very/long}
\end{tabular}
\end{table}
\end{document}