1. 表格设定长度
# 开头一定要添加这个
\usepackage{array}
\newcolumntype{C}[1]{>{\centering}p{#1}}
\setlength{\parindent}{15pt}
然后就可以
# 在tabular这里,添加了
\begin{tabular}{ | c | c | c | p{2cm}<{\centering} |}
\hline
Day & Min Temp & Max Temp & This is a loooooonger title \\ \hline
Monday & 11C & 22C & A \\ \hline
Tuesday & 9C & 19C & B \\ \hline
\end{tabular}