I am new to latex. I am trying to compile someone else's document. I have all the correct packages installed, but I get the following error:
*Overfull \hbox <37.8394pt too wide> in paragraph at lines 26-37
[][]
! Missing $ inserted
<inserted text>
1.39 Lines 14, 15 in vc_
value are bottleneck
?*
Here are the lines that are referenced in the error message. I understand that one of the lines is too long, but I'm not sure about how to fix it. Thanks a lot for your help.
\begin{table*}[h]
\caption{Functions}
\begin{tabular}{lll}
Name & Description & Potential
\\ \hline \texttt{c\_w.m} & gives relationship between $W$ and $C$
\\ \texttt{compute\_pi\_min} & Compute $\pi_{min}$ & gradient
\\ \textbf{\texttt{criterion.m}} & Compute RSS; steps 1-10(?)
\\ \texttt{irr\_equation.m} & no idea\dots & none
\\ \texttt{pi\_min\_equation.m} & uses \texttt{vc\_value.m} & none
\\ \texttt{pi\_min\_equation\_solo.m} & computes optimal value of solo project & quadrature
\\ \texttt{solo\_value.m} & computes optimal value of solo project & quadrature
\\ \texttt{vc\_value.m} & computes optimal value of a project to VC & quadrature \\
\end{tabular}
\end{table*}
Lines 19, 44, 45 are bottlenecks in criterion.m -- criterion.m takes 75 percent of time\\
Lines 14, 15 in vc_value are bottlenecks
[h]), you don’t need to use a table-environment. You can also get captions for non-floating objects with the caption package. – domwass Feb 18 '11 at 16:25