I have had the problem of compiling my document with the following table in it:
\begin{table}[!h]
\centering\small
\caption{Thickness measurements on the two tubes.}
\label{tab:Thickness_measurement}
\begin{tabular*}{\textwidth}{@{\extracolsep{\fill}}lll}
\toprule
Tube & Avareage thickness (mm) & Standard deviation (mm) \\
\midrule
[89$^\circ$$_2$/12.7$^\circ$$_1$/89$^\circ$$_2$] & 2.08 & 0.034 \\
\midrule
[55$^\circ$$_n$] & 0.254 & 0.027 \\
\bottomrule
\end{tabular*}
\end{table}
I'm using MiKTeX and I don't get any error messages or anything peculiar in my log, I just click the compile button and it just starts working and keeps at it forever until I abort it.
I've managed to make it work by replacing [89$^\circ$$_2$/12.7$^\circ$$_1$/89$^\circ$$_2$] with some random text, say f as in this table:
\begin{table}[!h]
\centering\small
\caption{Thickness measurements on the two tubes.}
\label{tab:Thickness_measurement}
\begin{tabular*}{\textwidth}{@{\extracolsep{\fill}}lll}
\toprule
Tube & Avareage thickness (mm) & Standard deviation (mm) \\
\midrule
f & 2.08 & 0.034 \\
\midrule
[55$^\circ$$_n$] & 0.254 & 0.027 \\
\bottomrule
\end{tabular*}
\end{table}
This is probably rather vague, but does anyone know what can be wrong?



\documentclass{...}and ending with\end{document}. – Apr 21 '14 at 07:46\usepackage{booktabs}in the preamble and the lines starting with [ fails due to wrong math mode. Can you provide a screen shot showing the format of that 89 etc. rows? Where should those subscripts "2" and "n" appear? – Apr 21 '14 at 07:55\midrulecan take an optional argument that indicates the width of the rule. Obviously that's not the intent here. – Mico Apr 21 '14 at 08:15