考虑下表
\documentclass[12pt, bibliography=totocnumbered, listof=totoc]{scrartcl}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\usepackage[ngerman]{babel}
\usepackage[flushleft]{threeparttable}
\usepackage{booktabs}
\usepackage{multirow}
\begin{document}
\begin{table}[h]
\centering
\begin{threeparttable}
\renewcommand*\TPTnoteLabel[1]{\parbox[b]{19pt}{\hfill#1}}
\caption{DiD-Matching Schätzer}
\label{tab:DiD}
\begin{tabular}{ccccc}
\toprule
& Wertschöpfung & Beschäftigung & Gewinnspanne & Exporte \\
\toprule
\multicolumn{5}{l}{\textit{Jahresvergleiche: Vorbehandlungsperiode}} \\
\midrule
$t$ \\
2013 & $\hat{\tau}_{1,13}$ & $\hat{\tau}_{2,13}$ & $\hat{\tau}_{3,13}$ & $\hat{\tau}_{4,13}$\\
2014 & \vdots & \vdots & \vdots & \vdots \\
2015 & & \\
2016 & & \\
2017 & $\hat{\tau}_{1,17}$ & $\hat{\tau}_{2,17}$ & $\hat{\tau}_{3,17}$ & $\hat{\tau}_{4,17}$\\
\noalign{\vskip 2mm}
\multicolumn{5}{l}{\textit{Vergleich: Aggregierte Vorbehandlungsperiode}} \\
\midrule
Phase III & $\hat{\tau}_{1,III}$ & $\hat{\tau}_{2,III}$ & $\hat{\tau}_{3,III}$ & $\hat{\tau}_{4,III}$ \\
\bottomrule
\end{tabular}
\begin{tablenotes}
\footnotesize
\item Aggregierte Vorbehandlungsperiode: $2003-2004$, Phase III: $2013-2017$.
\end{tablenotes}
\end{threeparttable}
\end{table}
\end{document}
我正在尝试减小 \vdots 的大小,因此由于 \vdots 的大小,表格行之间应该有额外的距离
答案1
我不知道我是否正确理解了您的需求,但是为什么不使用\multirow
?
\documentclass[12pt, bibliography=totocnumbered, listof=totoc]{scrartcl}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\usepackage[ngerman]{babel}
\usepackage[flushleft]{threeparttable}
\usepackage{booktabs}
\usepackage{multirow}
\begin{document}
\begin{table}[h]
\centering
\begin{threeparttable}
\renewcommand*\TPTnoteLabel[1]{\parbox[b]{19pt}{\hfill#1}}
\caption{DiD-Matching Schätzer}
\label{tab:DiD}
\begin{tabular}{ccccc}
\toprule
& Wertschöpfung & Beschäftigung & Gewinnspanne & Exporte \\
\toprule
\multicolumn{5}{l}{\textit{Jahresvergleiche: Vorbehandlungsperiode}} \\
\midrule
$t$ \\
2013 & $\hat{\tau}_{1,13}$ & $\hat{\tau}_{2,13}$ & $\hat{\tau}_{3,13}$ & $\hat{\tau}_{4,13}$\\
2014 & \multirow{3}{*}{\vdots} & \multirow{3}{*}{\vdots} & \multirow{3}{*}{\vdots} & \multirow{3}{*}{\vdots} \\
2015 & & \\
2016 & & \\
2017 & $\hat{\tau}_{1,17}$ & $\hat{\tau}_{2,17}$ & $\hat{\tau}_{3,17}$ & $\hat{\tau}_{4,17}$\\
\noalign{\vskip 2mm}
\multicolumn{5}{l}{\textit{Vergleich: Aggregierte Vorbehandlungsperiode}} \\
\midrule
Phase III & $\hat{\tau}_{1,III}$ & $\hat{\tau}_{2,III}$ & $\hat{\tau}_{3,III}$ & $\hat{\tau}_{4,III}$ \\
\bottomrule
\end{tabular}
\begin{tablenotes}
\footnotesize
\item Aggregierte Vorbehandlungsperiode: $2003-2004$, Phase III: $2013-2017$.
\end{tablenotes}
\end{threeparttable}
\end{table}
\end{document}