答案1
欢迎来到 TeX.sx!。请始终添加最小工作示例(MWE)回答你的问题。
在没有 MWE 的情况下,你可能会面临盲目射击的风险,也许你只需要添加\indent
在每个缩进的文本前添加即可。如果由于某种原因这不起作用(例如,表格位于table
浮点数内,其中缩进自动设置为0pt
)或者您想要更少或更多的缩进,您需要\parindent
全局设置(在序言中)或部分设置(在正文中)以在正文中不使用浮动的表格(这也会改变设置后段落的缩进),或者在本地设置,在表格之前但在组内(即{...}
)或像浮动这样的环境table
,这不会改变该组或环境之外的任何内容。 MWE:
\documentclass{article}
\begin{document}
%\begin{table}
%\setlength\parindent{3cm} %% Try this with/without table
\begin{tabular}{ll}
Panel A. bla bla bla ... & 39,...\\
\indent Initial sample of bla bla ... & 24,... \\
\indent Store bla bla ... & 26,... \\
%\end{table}
\end{tabular}
\end{document}
您还可以更改\indent
任何水平分隔符,如、、~~~
等...这将独立于设置工作,因此如果您喜欢与正文段落相同的缩进,请检查正文中的内容并相应地进行本地偏移。否则,这样更简单。\quad
\hspace{1em}
\parindent
\the\parindent
~~~
另一种方法是添加额外的列并用于\multicolumn
不缩进的行。可以使用列来控制缩进量p{<lewngth>}
:
\documentclass{article}
\begin{document}
\begin{tabular}{p{2cm}ll}
\multicolumn{2}{l}{Panel A. bla bla bla ...} & 39,...\\
& Initial sample of bla bla ... & 24,... \\
& Store bla bla ... & 26,... \\
\end{tabular}
\end{document}
答案2
添加\quad
为第一列左侧的默认空间,并用\multicolumn
“面板”行覆盖它。
\documentclass{article}
\usepackage{booktabs}
\begin{document}
\begin{table}[htp]
\centering
\caption{Caption}
\begin{tabular}{@{\quad} l c c c c @{\qquad}}
\toprule
& A & B & C & D \\
\midrule
& (1) & (2) & (3) & (4) \\
\midrule
\multicolumn{4}{@{}l}{\itshape Panel A\@. Sample Formation} \\
Initial Sample of Store & 1 & 2 & 3 & 4 \\
Store Restriction 1. Stores do not Switch Chain \\
$\geq$ 104 weeks & 1 & 2 & 3 & 4 \\
\midrule
\multicolumn{4}{@{}l}{\itshape Panel B\@. Store Characteristics} \\
Average ... & 1 & 2 & 3 & 4 \\
\bottomrule
\end{tabular}
\end{table}
\end{document}
答案3
另一个可能的起点:
\documentclass{article}
\usepackage{tabularx}
\begin{document}
\begin{table}
\begin{tabularx}{\linewidth}{c>{\raggedright}X cccc}
\hline
& & (1) & (2) & (3) & (4) \\
\hline
\multicolumn{6}{l}{Panel A: Sample formation} \\
\hline
& Initial sample of ...
& 123 & 123 & 123 & 123 \\
& Store ...
& 123 & 123 & 123 & 123 \\
& Store restriction 1: Stores do not SwitchChain, $\geq 104$ weeks
& 123 & 123 & 123 & 123 \\
\hline
\multicolumn{2}{l}{Panel B: Store characteristic}
& mean & 25th & median & 75th \\
\cline{3-6}
& Average ...
& 123 & 123 & 123 & 123 \\
& ...
& ... & ... & ... & ... \\
\hline
\end{tabularx}
\end{table}
\end{document}
为了获得进一步的帮助,您需要提供带有表格的文档示例(MWE:最小工作示例)。