请帮我插入这样的表格。我无法轻松准备这个表格,因为我必须在列中插入长文本。我尝试了一些 stackechange 示例,但没有成功。也许是包含表格的文本量。我在合并行和列时遇到了困难。我急需帮助。请帮忙!
我应该使用所有这些包吗?每个包有什么用处?如何使用?
\usepackage{multirow}
\usepackage{hhline}
\usepackage{array}
\usepackage{booktabs}
\usepackage{tabu}
\usepackage{makecell}
这是我想要的例子,谢谢
\documentclass[11pt]{book}
\usepackage[utf8]{inputenc}
\usepackage[spanish,mexico]{babel}
\usepackage[T1]{fontenc}
%\usepackage{amsmath}
%\usepackage{amsfonts}
%\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{apacite}
\usepackage{multirow}
\usepackage{hhline}
\usepackage{array}
\usepackage{booktabs}
\usepackage{tabu}
\usepackage{makecell}
\begin{document}
\begin{table}[h]
\caption{``“Utilidad y Derivación de las Emociones Primarias (Riso, W., 2008)''}
\begin{center}
\small
\begin{tabu}{|[2pt]} >{\centering}p{3cm} | [2pt] >{\centering}p{3cm}
\tabucline[2pt]{-}
&{Emociones primarias} & {Derivación de las emociones primarias}\\ \tabucline[2pt]{-}
\multirow{6}{*}{\parbox{3 cm}{\textbf{Dolor}} & \multirow{6}{*}{\parbox{3 cm}{textbf{Sufrimiento}}\\
& Avisa cuando un órgano físico está funcionando mal o está siendo agredido, para que sea reparado o defendido. & Indica que hay una estructura mental afectada o un apego irracional que debe ser trabajado.\\
&\textbf{Miedo} & \textbf{Miedo psicológico}\\
& Protege ante un peligro real.& Indica que se ha dejado de actuar. La parálisis es sostenida por ideas irracionales.
\tabucline[2pt]{-}
\end{tabu}
\end{center}
\end{table}
\end{document}
答案1
这是使用tabular
提供的增强功能的简单方法booktabs
。我认为,在理解基础知识之前尝试同时学习多个包来做类似的事情,只会造成混乱和沮丧。
\documentclass[11pt]{book}
\usepackage[utf8]{inputenc}
\usepackage[spanish,mexico]{babel}
\usepackage[T1]{fontenc}
\usepackage{array}
\usepackage{booktabs}
\begin{document}
\begin{table}
\centering% This is an environment - we probably don't want the extra spacing of center in addition to that added by table etc.
\caption{``Utilidad y Derivación de las Emociones Primarias (Riso, W., 2008)''}
\small
\begin{tabular}{*{2}{p{.425\linewidth}}}% The target layout does not centre the text so we don't want \centering
\toprule% nicer rules courtesy of booktabs - but then we need to drop the verticals
Emociones primarias & Derivación de las emociones primarias \\\midrule% Note that there is no & before the first column - & only comes between columns so if you define n columns, you can have at most n-1 & symbols in any row
\textbf{Dolor} & \textbf{Sufrimiento}\\% No need for 6 rows of space for each title!
Avisa cuando un órgano físico está funcionando mal o está siendo agredido, para que sea reparado o defendido. & Indica que hay una estructura mental afectada o un apego irracional que debe ser trabajado.\\\midrule% the p{} setting automatically lets these be multi-line - we don't want multiple rows on top of that and this is simpler as TeX does the hard work for us
\textbf{Miedo} & \textbf{Miedo psicológico}\\
Protege ante un peligro real.& Indica que se ha dejado de actuar. La parálisis es sostenida por ideas irracionales.\\
\bottomrule
\end{tabular}
\end{table}
\end{document}