答案1
我没有制作表格的经验,但这是我使用 tablesgenerator.com 制作的。我无法让“基于市场”垂直居中,但也许这种方法能给你一些启发。
\documentclass[a4paper,10pt]{article}
\usepackage{booktabs}
\usepackage{multirow}
\usepackage{graphicx}
\begin{document}
\begin{table}[]
\centering
\caption{Put caption here}
\label{my-label}
\resizebox{\textwidth}{!}{%
\begin{tabular}{@{}lllll@{}}
\toprule
\multicolumn{2}{l}{\textbf{Market-pull policies}} & & & \\ \midrule
& & \multicolumn{2}{l}{\textbf{Technology-specific (direct)}} & \multirow{2}{*}{\textbf{\begin{tabular}[c]{@{}l@{}}Non-technology-\\ specific (direct)\end{tabular}}} \\
& & & & \\
& & Price-driven & Quantity-driven & \\ \midrule
\multirow{4}{*}{\begin{tabular}[c]{@{}l@{}}Market-\\ based\end{tabular}} & \multirow{4}{*}{\begin{tabular}[c]{@{}l@{}}Investment\\ incentives\end{tabular}} & \multirow{4}{*}{\begin{tabular}[c]{@{}l@{}}Investment\\ subsidies\\ Tax credits\\ Supportive tax policy\\ Tenders (price)\end{tabular}} & \multirow{4}{*}{\begin{tabular}[c]{@{}l@{}}Tendering systems\\ for investment\\ grants (quantity)\\ Quotas (capacity)\end{tabular}} & \multirow{4}{*}{Emission trading} \\
& & & & \\
& & & & \\
& & & & \\
& & & & \\ \cmidrule(lr){3-4}
& & & & \\
& & & & \\ \bottomrule
\end{tabular}%
}
\end{table}
\end{document}