I don't really understand the question but i take it from the thread that the main problem is solved, anyway?
I have some other suggestions for possible improvements, though:
You probably want to use this:
Code: Select all
\clearpage
\phantomsection
\addcontentsline{toc}{chapter}{List of Tables}
\listoftables
The
\clearpage
and the
\phantomsection
ensure that the hyperlink from the toc actually point to the right place in the document and not to the page before the list of tables.
Similarly the definition of
\chapwithtoc
:
Code: Select all
\newcommand*\chapwithtoc[1]{%
\chapter*{#1}
\phantomsection
\addcontentsline{toc}{chapter}{#1}
}
BTW:
\def
is a low-level TeX macro and if possible should be avoided in a LaTeX document. It's better to use LaTeX's
\newcommand
instead.
You also might be interested in the chemformula package for writing chemical formulae like water:
\ch{H2O}
.
Last but not least I also suggest taking a look at the siunitx package which not only is good for taking care of SI units but also for alignment of numbers in a table.
Personally I'd probably typeset the table something like this:
Code: Select all
\documentclass[12pt,a4paper]{report}
\usepackage[utf8]{inputenc}
\usepackage{array}
\usepackage{booktabs}
\usepackage{chemformula}
\usepackage{siunitx}
\newcommand*\tnote[1]{\textsuperscript{\textit{#1}}}
\begin{document}
\begin{table}
\centering
\caption[AIM analysis]{AIM analysis of electron density. (\tnote{a} some
notes on these values\ldots)}
\label{table:aimPt_isol}
\begin{tabular}{
l
*{2}{S[table-format=2.2]}
S[table-format=2.2,table-space-text-post={\tnote{a}}]
S[table-format=2.2]
}
\toprule
Complex & {\ch{Cl/O(OH)}} & {\ch{O(H2O)/N7(G)}} & {\ch{N(Y)}} & {\ch{N(NH3)}} \\
\midrule
Reactants \\
\cmidrule{1-1}
\ch{DDP-Cl} & 8,38 & 8,47 & 11,27\tnote{a} & 12,48 \\
\ch{DDP-OH} & 12,46 & 8,77 & 10,41\tnote{a} & 12,32 \\
\ch{Pt-Tz-OH} & 13,11 & 10,53 & 11,47 & 11,97 \\
\bottomrule
\end{tabular}
\end{table}
\end{document}

- table.png (28.78 KiB) Viewed 9743 times
Regards