跨越定义列的行

跨越定义列的行

我的代码如下,但是“银行的反应策略”应该位于第 2 至第 4 列的中心。我该怎么做呢?

代码:

\documentclass[a4paper,12pt]{article}
\usepackage{booktabs}  %To make professional looking tables
\usepackage[flushleft]{threeparttable} 

\begin{document}

\begin{table}[H]
\caption{Long-run effects of a one p.p. increase in the capital requirement (percentage deviation from initial steady state unless indicated)}\label{tab:Angelini1}
\centering
\begin{threeparttable}
\begin{centering}
\begin{tabular}{lccc}
\toprule
\multicolumn{4}{r}{\bf{Banks' reaction strategy}} \\
\cmidrule(r){2-4}
    & Fresh capital     & Less dividends    & More profits  \\
\midrule
Output      & 0.00  & -0.05 & -0.36 \\
Inflation       & 0.00  & 0.00  & 0.00  \\
Consumption & 0.00  & -0.08 & -0.29 \\
Investments & 0.00  & 0.08  & -0.82 \\
House prices    & -0.01 & -0.12 & -0.33 \\
\\
Total loans & 0.00  & 0.08  & -1.96 \\
Deposits        & -1.09 & -1.02 & -3.03 \\
Bank capital    & 11.12 & 11.20 & 8.94  \\
Loans to output ratio & 0.01 & 0.14 & -1.60 \\
\\
Loan rates (p.a.) & 0.00    & 0.00  & 0.31  \\
Deposit rates (p.a.) & 0.00 & 0.00  & 0.00  \\
ROE (p.a.)  & -1.23 & -3.07 & 0.00  \\
\bottomrule
\end{tabular}
\begin{tablenotes}
\small
\item Source: Angelini and Gerali (2012)
\end{tablenotes}
\end{centering}
\end{threeparttable}
\end{table}

\end{document}

答案1

看起来您需要替换该行:

\multicolumn{4}{r}{\bf{Banks' reaction strategy}} \\

经过:

& \multicolumn{3}{c}{\textbf{Banks' reaction strategy}} \\

相关内容