我正在用 LaTeX 做一些实验,想知道如何将多列的标题左对齐。这是标记:
\begin{document}
\tableofcontents
\begin{table}[ht]
\begin{adjustbox}{width=1\textwidth}
\begin{tabular}{|p{4.5cm}|p{10cm}|}
\hline
\multicolumn{2}{|c|}{Country List} \\
\hline
Afghanistan & AF\\
Aland Islands& AX\\
Albania &AL\\
Algeria &DZ\\
American Samoa& AS\\
Andorra& AD\\
Angola& AO\\
\hline
\end{tabular}
\end{adjustbox}
\end{table}
\section{Section title}
\lipsum[1-10]
\subsection{Subsection title}
\lipsum[1-10]
\end{document}
我看到的是这样的:
我想将国家/地区列表与表格中的其他内容一样左对齐。可以吗?
答案1
是。类型
\multicolumn{2}{|l|}{Country List}
代替
\multicolumn{2}{|c|}{Country List}