Consider:
\documentclass[oneside,12pt]{article}
\usepackage{tabulary}
\usepackage{booktabs}
\begin{document}
\begin{table}
\center
\begin{tabulary}{22cm}{L C}
\toprule
\bfseries{111} & \bfseries{222} \\
\midrule
\textit{row1} & a \\
\bottomrule
\multicolumn{2}{L}{\textit{iii}} \\
\end{tabulary}
\caption
[abc]
{def}
\label{tab:my}
\end{table}
\end{document}
This is my MWE.
I got three errors:
1) ! Missing number, treated as zero.
2) ! Illegal unit of measure (pt inserted).
3) ! Undefined control sequence. <argument> \TY@F3
And all errors are for the \end{tabulary} line. I have no clue how to figure out what's wrong here, how to "debug" this. How do I find the errors?