텍스트가 왼쪽으로 정렬된 가운데 테이블

텍스트가 왼쪽으로 정렬된 가운데 테이블

중앙 정렬 테이블을 만들고 있는데 맨 왼쪽 열의 제목을 중앙 정렬 대신 왼쪽 정렬로 지정하고 싶습니다.

전문:

\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}

관련 정보