我正在使用 pandoc markdown 将我的文档转换为 pdf。文档中有需要格式化的表格。我能够为行创建替代颜色。但是,我无法更改表格标题的背景颜色。我相信 pandoc 在后台使用 longtable 和 booktabs。是否有任何样式或钩子可以创建以解决这个问题?我尝试使用 pandoc-filters,但由于过滤器崩溃,我无法成功。
我尝试用 markdown 创建一个 .tex 文件,但显然无法让它工作。
编辑(2017年10月11日)
添加更多详细信息:
\subsection{Definitions, Acronyms and
Abbreviations}\label{definitions-acronyms-and-abbreviations}
\begin{longtable}[]{@{}lll@{}}
\toprule
\textbf{\#} & \textbf{Acronym} & \textbf{Definition}\tabularnewline
\midrule
\endhead
1 & App & Application\tabularnewline
2 & xxx & XXXXXX\tabularnewline
3 & yyy & YYYYYYYY\tabularnewline
4 & SDK & Software Development Kit\tabularnewline
\bottomrule
\end{longtable}
模板
%
% tables
%
$if(tables)$
\usepackage{longtable,booktabs}
\renewcommand{\arraystretch}{1.2} % table spacing
\usepackage{longtable}\rowcolors{3}{white!100}{feeblegrey!100}
\arrayrulecolor{white}
$endif$