复杂的乳胶表

复杂的乳胶表

在此处输入图片描述

我想创建一个这样的表格。我是 Latex 新手,所以这对我来说非常复杂。请有人帮帮我。提前致谢。

答案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}

相关内容