表格居中,文字左對齊

表格居中,文字左對齊

我正在製作一個居中表格,但希望最左列中的標題左對齊而不是居中。

前言:

\documentclass[11pt]{article}
\usepackage{indentfirst}
\usepackage[top=1in, bottom=1in, left=1in, right=1in]{geometry}
\usepackage{amsfonts}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{subcaption}

Table code:
\begin{table}[ht]
\caption{Regression standard errors} % title of Table
\centering % used for centering table
\begin{tabular}{c c c c c} % centered columns (4 columns)
\hline\hline %inserts double horizontal lines
Confidence Interval & N=10 & N=30  & N=100 & N=500 \\ [0.5ex] % inserts table 
%heading
\hline % inserts single horizontal line
Asymptotic & \% & \% & \% & \% \\
Efron & \% & \% & \% & \% \\
Hall & \% & \% & \% & \%   \\
Percentile-t & \% & \% & \% & \% \\
Symmetric percentile-t & \% & \% & \% & \% \\ [1ex] % [1ex] adds vertical space
\hline %inserts single line
\end{tabular}
\label{table:nonlin} % is used to refer this table in the text
\end{table}

答案1

l如果您希望左列中的所有儲存格左對齊,請使用(ell) 列說明符:

\begin{tabular}{l c c c c} % centered columns (4 columns) 

如果只有一個儲存格條目需要左對齊,請使用\multicolumn

\begin{tabular}{c c c c c} % centered columns (4 columns)
.
.
.

\multicolumn{1}{l}{Confidence Interval}

相關內容