从长表中删除理由?

从长表中删除理由?

使用 :

\documentclass[12pt,a4paper]{report}
\usepackage[lmargin=3.81cm,tmargin=2.54cm,rmargin=2.54cm,bmargin=2.52cm]{geometry}
\usepackage{longtable}

\begin{document}
\begin{longtable}{|p{0.15\textwidth}|p{0.2\textwidth}|p{0.35\textwidth}|p{0.2\textwidth}|}
  .
  .
  .
\end{longtable}
\end{document}

如何从表格中删除对齐方式?只删除第 4 列怎么办?

答案1

添加

\usepackage{array}

并替换

p{0.15\textwidth}

经过

>{\raggedright\arraybackslash}p{0.15\textwidth}

在您想要使用参差不齐的文本的任何列中。

相关内容