如何在表格中使用 \multicol 来换行长文本?

如何在表格中使用 \multicol 来换行长文本?

这是我的代码:

\documentclass[12pt,a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english,french]{babel}
\usepackage{geometry}
\geometry{a4paper, mag=1000, left=3.2cm, right=3.2cm, top=2.5cm, bottom=2.5cm, headsep=0.7cm,headheight = 15pt, footskip=1cm,twoside}
%\usepackage{anyfontsize}
\usepackage{fix-cm}

%TABLES
%
\usepackage{multirow}
%
\usepackage{hhline}
%
\usepackage{array}
%
\usepackage{booktabs}
%
\usepackage{tabu}
%
\usepackage{makecell}
\newcommand{\thickline}[1]{\Xhline{#1pt}}

\begin{document}

\begin{table}[h]

\caption{sd}

\begin{center}
\small
\begin{tabu}{|[2pt] >{\centering}p{3cm}  >{\centering}p{2.4cm} |[2pt] >{\centering} p{1.5cm} | >{\centering} p{3.2cm} | >{\centering} p{3.2cm}|[2pt]}
\tabucline[2pt]{-}    
& {Items} &  Responses & Percentage based on total responses ($\rm N'=169$) & Percentage based on who responded to the question ($\rm N=52$)  \\\tabucline[2pt]{-}

\multirow{7}{*}{\parbox{2.5cm}{What is you general field of expertise regarding software development? }}&  Requirements elicitation / modelling /analysis & 25 & 14.8\,\% & 48.1\,\% \\
& Project management & 25 & 14.8\,\% & 48.1\,\%\\
& Architecture & 20 & 11.8 & 38.5\,\%\\
& Design & 29 & 17.2\,\% & 55.8\,\%\\
& Coding & 35 & 20.7\,\% & 67.3\,\%\\
& Testing & 23 & 13.6\,\% & 44.2.1\,\%\\
& Documentation & 12 & 7.1\,\% & 23.1\,\%\\
\tabucline[2pt]{-}
\end{tabu}
\end{center}
\end{table}
\end{document}

它给出了这个:在此处输入图片描述

如你所见命令:

\multirow{7}{*}{\parbox{2.5cm}{What is you general field of expertise regarding software development? }}

无法正常工作。我该如何解决这个问题?

先感谢您!

答案1

这就是您所寻求的吗?

在此处输入图片描述

代码

\documentclass[12pt,a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english,french]{babel}
\usepackage{geometry}
\geometry{a4paper, mag=1000, left=3.2cm, right=3.2cm, top=2.5cm, bottom=2.5cm, headsep=0.7cm,headheight = 15pt, footskip=1cm,twoside}
%\usepackage{anyfontsize}
\usepackage{fix-cm}

%TABLES
%
\usepackage{multirow}
%
\usepackage{hhline}
%
\usepackage{array}
%
\usepackage{booktabs}
%
\usepackage{tabu}
%
\usepackage{makecell}
\newcommand{\thickline}[1]{\Xhline{#1pt}}

\begin{document}

\begin{table}[h]

\caption{sd}

\begin{center}
\small
\begin{tabu}{|[2pt] >{\centering}p{3cm}  >{\centering}p{2.4cm} |[2pt] >{\centering} p{1.5cm} | >{\centering} p{3.2cm}| >{\centering}p{3.2cm}|[2pt]}
\tabucline[2pt]{-}  
& {Items} &  Responses & Percentage based on total responses ($\rm N'=169$) & Percentage based on who responded to the question ($\rm N=52$)  \\ \tabucline[2pt]{-}
\multirow{7}{*}{\parbox{2.5cm}{What is you general field of expertise regarding software development?}} & \multirow{7}{*}{\parbox{2cm}{Requirements elicitation / modelling /analysis}} & \multirow{7}{*}{25} &\multirow{7}{*}{14.8\,\%} &\multirow{7}{*}{48.1\,\%} \\
&&&&\\
&&&&\\
&&&&\\
&&&&\\
&&&&\\
&&&&\\
& Project management & 25 & 14.8\,\% & 48.1\,\%\\
& Architecture & 20 & 11.8\,\% & 38.5\,\%\\
& Design & 29 & 17.2\,\% & 55.8\,\%\\
& Coding & 35 & 20.7\,\% & 67.3\,\%\\
& Testing & 23 & 13.6\,\% & 442.1\,\%\\
& Documentation & 12 & 7.1\,\% & 23.1\,\%\\
\tabucline[2pt]{-}
\end{tabu}
\end{center}
\end{table}
\end{document}

相关内容