两列页面中的表格

两列页面中的表格

我正在尝试在两列页面中制作表格,表格很宽。所以我尝试使用此代码,但问题是表格中的文本在右侧对齐。我可以将其更改为左对齐吗?谢谢

\begin{table*}
\centering
\begin{tabular*}{\textwidth}{@{\extracolsep{\stretch{1}}}*{1}{r}@{}}
\toprule
 we must bare+in+mind the community as+a+whole. \\
 nous devons prendre+en+considération la communauté dans+son+ensemble.\\
 \midrule
  mr+president I wish+to+congratulate mrs+poulen on her report.\\
  monsieur+le+président je tiens+à+féliciter madame+poulen    sur+son+rapport.\\
   \bottomrule                             
   \end{tabular*}
   \caption{Exemples de phrases du corpus d'apprentissage \label{phraseapp}}
   \end{table*}

答案1

这是因为您使用r(右对齐) 作为列说明符。请改用l(左对齐)。

梅威瑟:

\documentclass[twocolumn]{article}

\usepackage{booktabs}

\begin{document}

\begin{table*}
\centering
\begin{tabular*}{\textwidth}{@{\extracolsep{\stretch{1}}}*{1}{l}@{}}
\toprule
 we must bare+in+mind the community as+a+whole. \\
 nous devons prendre+en+considération la communauté dans+son+ensemble.\\
\midrule
 mr+president I wish+to+congratulate mrs+poulen on her report.\\
 monsieur+le+président je tiens+à+féliciter madame+poulen    sur+son+rapport.\\
\bottomrule
\end{tabular*}
   \caption{Exemples de phrases du corpus d'apprentissage \label{phraseapp}}
\end{table*}

\end{document} 

输出:

在此处输入图片描述

相关内容