私の ctable に何が問題なのですか?

私の ctable に何が問題なのですか?

下の表の問題が正確に特定できないようです。助けていただければ幸いです。何か単純なことなのは確かですが、わかりません...

\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}

与えるもの:

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

答え1

問題はラインだ

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

\tnote次のように変更する必要があります\tmark:

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

完全なコード:

\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}

ここに画像の説明を入力してください

関連情報