多层桌子

多层桌子

我现在有点不知所措。我想要一个像下面这样的表格(在 Word 中快速绘制,我不希望显示垂直线 - 我正在使用 booktabs)。我制作这样一个表格的原因是为了总结文献综述的结果,我将研究按类别(例如颜色或音乐)分开。另外,我希望“引用”列的列宽比“样本”和“环境”列稍大,但小于“结论”列,后者应该是最大的。请注意,白色文本和黑色背景是不是我想要的配色方案。我不确定 Latex 中的颜色选项,但背景颜色可以很好地搭配黑色文字可以的——浅灰色吧?

在此处输入图片描述

我开始用乳胶写一些东西(所以它是不是一个 MWE),但我就是卡住了。我已经包含了 xcolor 的包,因为我的谷歌搜索揭示了如何填充行和列,而且我确信我的最终表格将跨越多页。另外,如果“颜色”和“音乐”‘子标题’之间有线条(相同粗细),会不会更好?可能不会。

\documentclass{article}
\usepackage{booktabs, xcolor, longtable}
\begin{document}
\begin{longtable}
\toprule
Citation & Sample & Environment & Conclusion
...
...
\end{longtable}
\end{document}

答案1

显示这样的东西可能不是一个好主意,但如何使用 LaTeX 来实现这一点是有答案的。

\documentclass{article}
\usepackage{booktabs, longtable,array}
\usepackage[table]{xcolor}
\newcolumntype{P}[1]{>{\raggedright\arraybackslash}p{#1}}
\usepackage[a4paper,margin=1in]{geometry}
\begin{document}
\begin{longtable}{P{\dimexpr0.26\textwidth-2\tabcolsep-2\arrayrulewidth\relax}
                        P{\dimexpr0.18\textwidth-2\tabcolsep-\arrayrulewidth\relax}
                        P{\dimexpr0.19\textwidth-2\tabcolsep-\arrayrulewidth\relax}
                        P{\dimexpr0.37\textwidth-2\tabcolsep-\arrayrulewidth\relax}}
\toprule
Citation & Sample & Environment & Conclusion\\\midrule
\rowcolor{gray!20}\multicolumn{4}{c}{Colour}\\
Some name and some year in parenthesis & 300 adults & Furniture store & This is some long text that doen't really conclude in a single line\\\midrule
\rowcolor{gray!20}\multicolumn{4}{c}{Music}\\
Some name and some year in parenthesis & 300 adults & Furniture store & This is some long text that doen't really conclude in a single line\\
\bottomrule
\end{longtable}
\end{document}

在此处输入图片描述

答案2

一个答案不是按照要求以表格形式呈现。您可能希望使用enumerate或其他类型的列表,因为项目符号可能看起来有点霸道。我可能也会隐藏副标题上的数字,但只要符合您的整体文档设计即可。\cite如果我真的这样做,我也会使用命令而不是手写参考文献。

\documentclass{article}
\begin{document}
\subsection{Summary of references}

[Explain the standard layout of each summarized reference.]

\subsubsection{References about colour}

\begin{itemize}
    \item Bellizzi, et. al. (1983) -- 125 adults -- furniture store

    Warm and cool colours created different emotional responses.  
    Customers view red detail environments as more negative and less pleasant
    than blue.

\item Smith and Jones (1977) -- 103 dogs -- pet shop

    A service-oriented paradigm is further compounded when taking into account the
    evolution of specifications over a given time period.  

\end{itemize}

\subsubsection{References about music}

\begin{itemize}

    \item Some name (1902) -- 300 adults -- Furniture store

    This is some long text that doesn't really conclude in a single line, and so we
    set it as a paragraph below.

\item And so on

\end{itemize}

\end{document}

一般原则。对于要制表的每个项目,您有几个短内容和一个长内容:如果将它们设置为表格结构,则不可避免地会浪费大量页面空间。将它们设置为结构化段落(在我看来)对读者来说更容易一些。

<讽刺> 另一方面,如果你想要充实你的报告,那么留有大量空白的表格是一个不错的选择。管理顾问靠这样做赚了很多钱。</讽刺>

相关内容