在文本中插入表格

在文本中插入表格

我正在尝试为我的第一个附录创建一个表格,但我面临以下两个问题:

  • 我想将第一列的文本左对齐。
  • 各列并非沿文本宽度均匀分布。

我在这里向您展示我正在使用的代码及其结果:

\usepackage{float}
\usepackage{adjustbox}
\usepackage{multicol}
\usepackage{longtable}

\renewcommand*\descriptionlabel[1]{\hspace\leftmargin$#1$}
\usepackage{array,ragged2e}
\newcolumntype{C}{>{\Centering\hspace{0pt}}p{0.1\textwidth}}
\usepackage[output-decimal-marker={,}]{siunitx}
\usepackage{booktabs, makecell, tabularx}
\newcolumntype{L}{>{\raggedright\arraybackslash}X}
\newcolumntype{P}[1]{>{\centering\arraybackslash}p{#1}}


\appendix
\section{Suppliers´ production capacities}
\begin{table}[ht]
\setcellgapes{3pt}
\makegapedcells
\begin{tabularx}{\linewidth}{@{}ccL@{}}
\toprule
Facility Name & Year & Overall Capacity \\
\midrule
Text    & 2020                              & 1.500                                                    \\
Text   & 2020                              & 1.600                                                    \\
Text          & 2020                              & 2.500                                                    \\
                               
 \bottomrule
\end{tabularx}
  \caption{Supplier facilities´ production capacities}
\end{table}

在此处输入图片描述 如果有人能帮助我,我将非常感激

答案1

我想将第一列的文本左对齐。

只是改变

\begin{tabularx}{\linewidth}{@{}ccL@{}}

\begin{tabularx}{\linewidth}{@{}lcL@{}}

各列并非沿文本宽度均匀分布。

怎么样

\begin{tabularx}{\linewidth}{@{}LLL@{}}

即,L对所有三列使用该列类型。

在此处输入图片描述

\documentclass{article}
\usepackage{tabularx,ragged2e,booktabs}
\newcolumntype{L}{>{\RaggedRight}X}

\begin{document}
\begin{table}[ht]
\begin{tabularx}{\linewidth}{@{} LLL @{}}
\toprule
Facility Name & Year & Overall Capacity \\
\midrule
Text & 2020 & 1.500  \\
Text & 2020 & 1.600  \\
Text & 2020 & 2.500  \\
\bottomrule
\end{tabularx}
\caption{Supplier facilities' production capacities}
\end{table}
\end{document}

相关内容