was ist mit meiner ctable los?

was ist mit meiner ctable los?

Ich kann das Problem mit der folgenden Tabelle nicht genau bestimmen und wäre für Hilfe dankbar. Es ist bestimmt etwas Einfaches, aber ich kann es nicht erkennen ...

\documentclass{article} 
\usepackage{ctable}

\begin{document}

\ctable[
caption = Summary of model characteristics.,
label = tab:modelSummary,
doinside=\scriptsize,
pos=h
]{lllllll}{
\tnote{For UK grid.}
\tnote[b]{ENTEC emissions are used for shipping.}
\tnote[c]{Based on analysis of extracted `baseline' air-masses.}
}{                  \FL
model    & type       & boundary           & meteorology & chemistry    & grid\tmark   & emissions\tmark[b] \NN
     &            & conditions         &             & (km)         &              &  \ML
aea     & Eulerian   & STOCHEM            & WRF3        & CB05         & 12           & NAEI/EMEP \NN
aqum    & Eulerian   & GEMS/MACC          & UM          & UKCA/RAQ     & ?            & NAEI/EMEP \NN
     &            &                    &             &              &              & ENTEC \NN
emep    & Eulerian   & EMEP-unified       & WRF3.1.1    & EMEP-unified & 5            & NAEI/EMEP \NN
hert    & Eulerian   & GEMS               & WRF3.2.1    & CB05         & 18           & TNO \NN
kcl     & Eulerian   & STOCHEM            & WRF3.1      & CB05         & 9            & NAEI/EMEP \NN
name    & Eulerian   & Mace Head\tnote[c] & UM          & STOCHEM      & $\approx$10? & NAEI/EMEP \NN
     &            &                    &             &              &              & ENTEC \NN
osrm    & Lagrangian & ?                  & NAME (UM)   & STOCHEM      & 10           & NAEI/EMEP \NN
     &            &                    &             &              &              & ENTEC \NN
ptm     & Lagrangian & Mace Head?         & UM          & MCM3.1       & $\approx$10? & NAEI/EMEP \NN
     &            &                    &             &              &              & GEIA \NN
wrfchem & Eulerian   & ?                  & ?           & ?         & ?          & ? \LL
}


\end{document}

Gibt:

Misplaced alignment tab character &.
\\tnote ...uperscript {\normalfont \textit {#1}}}&
                                                  #2\NN \fi 
l.31 }

Antwort1

Das Problem ist die Linie

name    & Eulerian   & Mace Head\tnote[c] & UM          & STOCHEM      & $\approx$10? & NAEI/EMEP \NN

Sie müssen \tnoteFolgendes ändern \tmark:

name    & Eulerian   & Mace Head\tmark[c] & UM          & STOCHEM      & $\approx$10? & NAEI/EMEP \NN

Ihr vollständiger Code:

\documentclass{article} 
\usepackage{ctable}

\begin{document}

\ctable[
caption = Summary of model characteristics.,
label = tab:modelSummary,
doinside=\scriptsize,
pos=h
]{lllllll}{
\tnote{For UK grid.}
\tnote[b]{ENTEC emissions are used for shipping.}
\tnote[c]{Based on analysis of extracted `baseline' air-masses.}
}{                  \FL
model    & type       & boundary           & meteorology & chemistry    & grid\tmark   & emissions\tmark[b] \NN
     &            & conditions         &             & (km)         &              &  \ML
aea     & Eulerian   & STOCHEM            & WRF3        & CB05         & 12           & NAEI/EMEP \NN
aqum    & Eulerian   & GEMS/MACC          & UM          & UKCA/RAQ     & ?            & NAEI/EMEP \NN
     &            &                    &             &              &              & ENTEC \NN
emep    & Eulerian   & EMEP-unified       & WRF3.1.1    & EMEP-unified & 5            & NAEI/EMEP \NN
hert    & Eulerian   & GEMS               & WRF3.2.1    & CB05         & 18           & TNO \NN
kcl     & Eulerian   & STOCHEM            & WRF3.1      & CB05         & 9            & NAEI/EMEP \NN
name    & Eulerian   & Mace Head\tmark[c] & UM          & STOCHEM      & $\approx$10? & NAEI/EMEP \NN
     &            &                    &             &              &              & ENTEC \NN
osrm    & Lagrangian & ?                  & NAME (UM)   & STOCHEM      & 10           & NAEI/EMEP \NN
     &            &                    &             &              &              & ENTEC \NN
ptm     & Lagrangian & Mace Head?         & UM          & MCM3.1       & $\approx$10? & NAEI/EMEP \NN
     &            &                    &             &              &              & GEIA \NN
wrfchem & Eulerian   & ?                  & ?           & ?         & ?          & ? \LL
}


\end{document}

Bildbeschreibung hier eingeben

verwandte Informationen