¿Cómo fusionar celdas correctamente en tabú?

¿Cómo fusionar celdas correctamente en tabú?

Tengo una tabla tabú y necesito hacer una tabla como esta:
(No sé cómo crear correctamente la quinta columna)

ingrese la descripción de la imagen aquí

En este momento mi código se ve así:

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[russian]{babel}  % Включаем пакет для поддержки русского
\usepackage{tabu}
\usepackage[a4paper, portrait, margin=1in, hmargin=2cm, top=4cm, bottom=4cm, headheight=3cm, footskip=2.5cm]{geometry}

{\small \begin{center}
\tabulinesep=0.5mm
\begin{tabu} to \textwidth { | X[0.1,l,p] | X[0.8,l,p] |  X[0.5,l,p] | X[0.8,l,p] | X[0.8,l,p] |   }
\hline
 \textbf{№} & \textbf{Описание отклонения:}  & \textbf{Департамент:} & \textbf{Идентифицированный риск} & \textbf{Не идентифицированный риск 1}     \\ \hline
  1 & Отклонение 1  & Департамент 1 & Риск 1 & Описание не идентифицированного риска  \\ \hline
 \end{tabu}
\end{center}
\end{document}

ingrese la descripción de la imagen aquí

Respuesta1

No espero que todavía necesites una respuesta ya que ha pasado tanto tiempo, pero para la posteridad:

La tabudocumentación: página 12/101, sección 2.3 de la documentación tabú proporciona una demostración de varias columnas que combiné con multirow. Por favor, perdonen la horrible traducción, no quería pelear con el mapa de personajes en mi computadora.

Prefiero longtable, así que he incluido una implementación cruda de ambos a continuación.

Versión tabú

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[russian]{babel}  % Включаем пакет для поддержки русского
\usepackage{tabu}
\usepackage[a4paper, portrait, margin=1in, hmargin=2cm, top=4cm, bottom=4cm, headheight=3cm, footskip=2.5cm]{geometry}

\usepackage{multirow}

\begin{document}

{\small \begin{center}
\tabulinesep=0.5mm

% DEMO from page 12/101 section 2.3 of tabu documentation
%\begin{tabu}{|X|X|X[2]|} \tabucline-
%   a & b & c \\ \tabucline-
%   \multicolumn2{|c|}{Hello} & World \\ \tabucline-
%   \tabuphantomline
%\end{tabu}


\begin{tabu} to \textwidth { | X[0.1,l,p] | X[0.8,l,p] |  X[0.5,l,p] | X[0.8,l,p] | X[0.8,l,p] |  X[0.8,l,p] | }
    \hline
    \textbf{№} & \textbf{Description of deviation:}  & \textbf{Department:} & \textbf{Identified risk} & \multicolumn2{|c|}{\textbf{Not Identified risk 1}}     \\ \hline
    \multirow{2}{*}{1} & \multirow{2}{*}{Deviation 1}  & \multirow{2}{*}{Department of 1} & \multirow{2}{*}{Risk 1} & Description no identified risk & Our Risk 1  \\ \cline{5-6}
    & & & & Objecct/Process during which risk appeared & Object 1  \\ \hline

  \tabuphantomline
\end{tabu}
\end{center}
\end{document}

ingrese la descripción de la imagen aquí

Versión mesa larga

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[russian]{babel}  % Включаем пакет для поддержки русского
\usepackage[a4paper, portrait, margin=1in, hmargin=2cm, top=4cm, bottom=4cm, headheight=3cm, footskip=2.5cm]{geometry}

\usepackage{environ,longtable,threeparttablex,booktabs,multirow,array,adjustbox,supertabular}% table adjustment packages

% Wrapping text in multicolumn:  http://tex.stackexchange.com/questions/115668/wrapping-text-in-multicolumn
\newcolumntype{L}[1]{>{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}p{#1}}
\newcolumntype{C}[1]{>{\centering\let\newline\\\arraybackslash\hspace{0pt}}p{#1}}
\newcolumntype{R}[1]{>{\raggedleft\let\newline\\\arraybackslash\hspace{0pt}}p{#1}}
%http://tex.stackexchange.com/questions/70919/vertical-aligning-in-longtable-environment

\begin{document}

{\small \begin{center}
\begin{longtable}[l]{| L{0.025\textwidth} | L{0.1\textwidth} | L{0.15\textwidth} | L{0.2\textwidth} | L{0.3\textwidth} | L{0.15\textwidth} |}

    \hline
    \textbf{№} & \textbf{Description of deviation:}  & \textbf{Department:} & \textbf{Identified risk} & \multicolumn2{|c|}{\textbf{Not Identified risk 1}}     \\ \hline
    \multirow{2}{*}{1} & \multirow{2}{*}{Deviation 1}  & \multirow{2}{*}{Department of 1} & \multirow{2}{*}{Risk 1} & Description no identified risk & Our Risk 1  \\ \cline{5-6}
    & & & & Objecct/Process during which risk appeared & Object 1  \\ \hline
\end{longtable}
\end{center}
\end{document}

ingrese la descripción de la imagen aquí

información relacionada