[Tex/LaTex] Force column break within tabbing environment

multicolpage-breakingtabbing

Basically following the instructions here, I'm trying to enfore a column break in my text. My text is, however, embedded within a tabbing environment, and following the said instructions results in the following error:

! Missing } inserted.
<inserted text> 
                }
l.20 {\vfill
            }
? 

Here's a minimally (not) working example:

\documentclass[12pt]{article}
\usepackage{multicol}

\begin{document}
\begin{center}
\large{\textbf{My title.}}
\end{center}
\begin{multicols}{2}
\begin{tabbing}
Here \= is \= a sentence\\
Here \> is \> a word\\
Here \> is \> a sentence\\
Here \> is \> a word\\
Here \> is \> a sentence\\
Here \> is \> a word\\
Here \> is \> a sentence\\
Here \> is \> a word\\
Here \> is \> a sentence\\
Here \> is \> a word\\
\vfill
\columnbreak
Here \> is \> a sentence\\
Here \> is \> a word\\
\end{tabbing}
\end{multicols}
\end{document}

Best Answer

enter image description here

\documentclass[12pt]{article}
\usepackage{multicol}

\begin{document}
\begin{center}
\large{\textbf{My title.}}
\end{center}
\begin{multicols}{2}
\begin{tabbing}
Here \= is \= a sentence\\
Here \> is \> a word\\
Here \> is \> a sentence\\
Here \> is \> a word\\
Here \> is \> a sentence\\
Here \> is \> a word\\
Here \> is \> a sentence\\
Here \> is \> a word\\
Here \> is \> a sentence\\
Here \> is \> a word\\[\fill\columnbreak]
Here \> is \> a sentence\\
Here \> is \> a word\\
\end{tabbing}
\end{multicols}
\end{document}