Advertisement
Guest User

tbl

a guest
May 16th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 0.64 KB | None | 0 0
  1. ...
  2. \usepackage{multirow} % склеивание строк/столбцов
  3. \usepackage{diagbox} % диагональка
  4. ...
  5. \begin{document}
  6. \begin{tabular}{| c | c | c | c | c |}
  7.  \hline
  8.  \backslashbox{\xi}{\eta} & 0 & 1 & 2 & 3 \\ \hline
  9.  \multicolumn{1}{|c|}{\multirow{2}{*}{4} } &
  10.  \multicolumn{2}{c|}{5} &
  11.  \multicolumn{1}{c|}{\multirow{2}{*}{6} } & 7 \\  \cline{2-3}
  12.  & \multicolumn{2}{c|}{8} &  & 9 \\ \hline
  13.  \multicolumn{2}{|c|}{10} & \multicolumn{1}{c|}{\multirow{2}{*}{11}} & \multicolumn{2}{c|}{12} \\ \cline{1-2} \cline{4-5}
  14.  \multicolumn{1}{|c|}{13} & 14 &  & 15 & 16 \\
  15.  \hline
  16. \end{tabular}
  17.  
  18. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement