Strange error regarding table in latex

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
3 replies · 3K views
ladil123
Messages
42
Reaction score
0
Hello!

Im having trouble creating my pdf file with texmaker.
I have a large document and I have created many tables in my code.

But now when I have written the code below for a table texmaker won't create the pdf file when it should.
It only says "process started", but nothing happens?

Have anyone had a similair problem? Or have I missed something trivial in my code below?
Thanks!


\begin{table}[H]
\begin{center}
\begin{tabular}{ | l | c | }
\hline
Type & Setting \\ \hline
Average size & 0.07 \\ \hline
Minimum size & 0.08 \\ \hline
Grading factor & 1.2 \\ \hline
Maximum angle & 35\\ \hline
end{tabular}
\caption{\emph{bla bla.}\label{tab:meshtab}}
\end{center}
\end{table}
 
Physics news on Phys.org
\begin{table}[H]
\begin{center}
\begin{tabular}{ | l | c | }
\hline
Type & Setting \\ \hline
Average size & 0.07 \\ \hline
Minimum size & 0.08 \\ \hline
Grading factor & 1.2 \\ \hline
Maximum angle & 35\\ \hline
end{tabular}
\caption{\emph{bla bla.}\label{tab:meshtab}}
\end{center}
\end{table}

You're missing a \ before end in the bold line.
 
Thanks man!

That was lame of me... I have starred at this table for 30 minutes...

thanks