Place end line in a Table- Latex

1

I'm building a Latex table and it's giving me an error on the final horizontal line I put in.

\begin{table}[t]

\begin{center}

\begin{tabular}{|c|r||l|}

    \hline

    \emph{Fases} & \emph{Descrição} & \emph{Função}\

    \hline

    1º & \Construção de um Tabuleiro de Lava & \textbf{buildLava} \

    \hline

    2 & Posição das Peças & \textbf{passosToPosition}

    \hline

\end{tabular}

\end{center}

\caption{Fases de Resolução.}

\label{tbl:tabela}

\end{table}

You know of some alternative command that makes the final row of the table.

    
asked by anonymous 17.12.2017 / 00:01

1 answer

4

As I commented , it's missing a \ in the last row of the table (that is, the row with the content: 2 & Posição das Peças & \textbf{passosToPosition} ).

In general, LaTeX errors are not the most intuitive, but it's worth trying to understand them because sometimes (as they probably do) they can be useful.

    
17.12.2017 / 14:17