Graphics, Figures & Tables ⇒ Squeezed Table Elements...Bad alignment
Squeezed Table Elements...Bad alignment
Can someone tell me how to solve this problem? I am supposed to have a 3-column table, but the entries are compressed horizontally. Attachments show the mess & a minimum file.
I am getting numerous alignment errors. Here is one of them:
"Misplaced \noalign.\hline ->\noalign
{\ifnum 0=`}\fi \hline@rule \futurelet \reserved@a \@xhline
l.335 ...e$_{2}$O$_{2}$S$_{2}$ at 300 K.}\toprule"
Thanks for any advice.
- Attachments
-
- Minimum_Example.txt
- (1.28 KiB) Downloaded 331 times
-
- Squeezed_Table_Photo1.pdf
- (31.95 KiB) Downloaded 146 times
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Squeezed Table Elements...Bad alignment
If this is for a thesis, you should have a look at the second example, journals might prefer not to have too many extra packages. You should check with the editors.
Code: Select all
\documentclass{article}
\usepackage{booktabs}
\usepackage{chemformula}% You actually want to use this package, really, you do
\usepackage{siunitx}% You actually want to use this package, really, you do
\usepackage{caption}%
%\usepackage{graphicx}%Absolutely not needed
\begin{document}
%\newcommand{\ra}[1]{\renewcommand{\arraystretch}{#1}}% You will
%confuse yourself in the future
% Use the \preprint command to place your local institutional report
% number in the upper righthand corner of the title page in preprint mode.
% Multiple \preprint commands are allowed.
% Use the 'preprintnumbers' class option to override journal defaults
% to display numbers if necessary
%\preprint{}
\begin{table}
\caption{\label{tab:example}Refined parameters for
\ch{La2OFe2O2Se2La2OFe2OS2} at \SI{300}{\kelvin}.}
% the caption is not part of a tabular
\begin{tabular}{ccc}\toprule
& La$_{2}$OFe$_{2}$O$_{2}$Se$_{2}$ & La$_{2}$OFe$_{2}$O$_{2}$S$_{2}$\\
\midrule
%\hline
%\multicolumn{2}{c}{} \\%Noting here?
%\cmidrule{lcr}%\\% No idea what you want to do here
\emph{a} [\AA] & 4.08778(5) & 4.04539(5)\\
\emph{c} [\AA] & 18.6005(3) & 17.9036(3) \\
V[$\AA^3$] & 310.816(8) & 292.997(8) \\%doesn't work
4\emph{e}La(\emph{c}) & 0.1843(1) & 0.1811(1) \\
4\emph{e} \emph{M}(\emph{c}) & 0.0964(1) & 0.0933(3) \\
La B(\AA) & 0.21(5) & 0.30(4) \\
Fe B(\AA) & 0.46(3) & 0.42(4) \\
O(1) B(\AA) & 0.44(5) & 0.40(4) \\
O(2) B(\AA) & 0.91(8) & 0.89(7) \\
\emph{M} & 0.38(4) & 0.26(8) \\
\bottomrule
\end{tabular}
\begin{tabular}{cS[table-format=3.5(1)]
S[table-format=3.5(1)]}\toprule
& \ch{La2OFe2O2Se2} & \ch{La2OFe2O2S2}\\
\midrule
$a$ [\si{\angstrom}] & 4.08778(5) & 4.04539(5)\\
$c$ [\si{\angstrom}] & 18.6005(3) & 17.9036(3) \\
V[\si{\cubic\angstrom}] & 310.816(8) & 292.997(8) \\
4$e$ La(\emph{c}) & 0.1843(1) & 0.1811(1) \\% i guess
%those are set as emph to get them to be italic; though this is
%most likely a variable and should be typeset in math mode
4$e$ \emph{M}(\emph{c}) & 0.0964(1) & 0.0933(3) \\
La B(\AA) & 0.21(5) & 0.30(4) \\
Fe B(\AA) & 0.46(3) & 0.42(4) \\
O(1) B(\AA) & 0.44(5) & 0.40(4) \\
O(2) B(\AA) & 0.91(8) & 0.89(7) \\
\emph{M} & 0.38(4) & 0.26(8) \\
\bottomrule
\end{tabular}
\end{table}
\end{document}