LaTeX Table Error in LaTeX: Troubleshooting Solutions

AI Thread Summary
The discussion revolves around troubleshooting LaTeX code for generating a table. The user encounters errors when using square brackets for units in the table header. Specifically, the issue arises when the square brackets are placed at the end of a line, causing LaTeX to misinterpret the input. A suggested solution is to use [0ex] at the end of the first line to avoid spacing errors. Additionally, alternatives include using math mode for units or escaping square brackets with curly braces. The user acknowledges the provided solutions and expresses intent to implement them successfully.
Rajini
Messages
619
Reaction score
4
dear all..
I use the following code to generate a table...to my eyes i think no error..but still i get error..
Code:
\begin{table}[h]
\caption{some fitting.}\label{tab:fit}
\vspace{3mm}
\centering
\begin{tabular}[width=1\linewidth]{llll}
\hline\hline
Wavenumber & FWHM        & Area        & Force constant\\
[cm$^{-1}$]  & [cm$^{-1}$] & [cm$^{-2}$] &   [N~m$^{-1}$]\\
\hline
19 & 1   & 1 & 5.9 \\
230 & 3 & 17 & 57.2 \\
2 & 1    & 23 & 7.8 \\
35 & 15 & 37 & 12.4 \\
314 & 30 & 3 & 121.2 \\
43 & 13.9 & 1  & 4.2 \\
\hline\hline
\end{tabular}
\end{table}
But i can get the table only if i don't use the box brackets [ ] for the unit just below wavelength..when i make box bracket around the unit i always get error..
thanks
 
Physics news on Phys.org
Hi Rajini,

Rajini said:
dear all..
I use the following code to generate a table...to my eyes i think no error..but still i get error..
Code:
\begin{table}[h]
\caption{some fitting.}\label{tab:fit}
\vspace{3mm}
\centering
\begin{tabular}[width=1\linewidth]{llll}
\hline\hline
Wavenumber & FWHM        & Area        & Force constant\\
[cm$^{-1}$]  & [cm$^{-1}$] & [cm$^{-2}$] &   [N~m$^{-1}$]\\
\hline
19 & 1   & 1 & 5.9 \\
230 & 3 & 17 & 57.2 \\
2 & 1    & 23 & 7.8 \\
35 & 15 & 37 & 12.4 \\
314 & 30 & 3 & 121.2 \\
43 & 13.9 & 1  & 4.2 \\
\hline\hline
\end{tabular}
\end{table}
But i can get the table only if i don't use the box brackets [ ] for the unit just below wavelength..when i make box bracket around the unit i always get error..
thanks

Take a look at the output from this table, that has [5ex] at the end of the first line of the table:


Code:
\begin{table}[h]
\centering
\begin{tabular}[width=1\linewidth]{llll}
\hline\hline
19 & 1   & 1 & 5.9 \\[5ex]
230 & 3 & 17 & 57.2 \\
2 & 1    & 23 & 7.8 \\
35 & 15 & 37 & 12.4 \\
314 & 30 & 3 & 121.2 \\
43 & 13.9 & 1  & 4.2 \\
\hline\hline
\end{tabular}
\end{table}

When an expression in square brackets is at the end of a line, it is a way of telling LaTeX that you want extra spacing before the next line. But since your next line begins with square brackets, LaTeX thinks you are trying to do the same thing and gives an error. There are several things you can do, but probably the easiest is just put [0ex] at the end of the first line of your table like this:

Code:
\begin{table}[h]
\caption{some fitting.}\label{tab:fit}
\vspace{3mm}
\centering
\begin{tabular}[width=1\linewidth]{llll}
\hline\hline
Wavenumber & FWHM        & Area        & Force constant\\[0ex]
[cm$^{-1}$]  & [cm$^{-1}$] & [cm$^{-2}$] &   [N~m$^{-1}$]\\
\hline
19 & 1   & 1 & 5.9 \\
230 & 3 & 17 & 57.2 \\
2 & 1    & 23 & 7.8 \\
35 & 15 & 37 & 12.4 \\
314 & 30 & 3 & 121.2 \\
43 & 13.9 & 1  & 4.2 \\
\hline\hline
\end{tabular}
\end{table}
 
Hi thanks for your reply!.
actually i made some tables successfully...but for units i use the same as above..but first cell in unit row will be empty so i was fine with my table...but this is my first time making a table with units start from the first cell of the row..so i got this peculiar error...
anyway i will correct according to your idea..
thanks again
 
Getting special symbols in your generated document can be nasty in LaTeX.

Solution #1: Do it in math mode.
Code:
...
\begin{tabular}[width=1\linewidth]{llll}
\hline\hline
Wavenumber & FWHM        & Area        & Force constant\\
$[\text{cm}^{-1}]$  & $[\text{cm}^{-1}]$ & $[\text{cm}^{-2}]$ & $[\text{N~m}^{-1}]$ \\
\hline
...

Solution #2: Use curly braces to escape the square brackets (backslash square bracket doesn't work):
Code:
...
\begin{tabular}[width=1\linewidth]{llll}
\hline\hline
Wavenumber & FWHM        & Area        & Force constant\\
{[}cm$^{-1}${]}  & {[}cm$^{-1}${]} & {[}cm$^{-2}${]} &   {[}N~m$^{-1}${]}\\
\hline
...
 
Yes DH..
seems like latex provides several options...!
will try them
thanks
 
Hi both of you,
[0ex] is simple to use..
It worked well..
thanks
 

Similar threads

Replies
3
Views
2K
Replies
9
Views
2K
Replies
1
Views
2K
Replies
2
Views
3K
Replies
2
Views
3K
Replies
7
Views
8K
Replies
2
Views
6K
Back
Top