Skip to main content

Caption before Label

If you need to reference a table in a latex document, make sure you set the caption before the label, otherwise the table will be incorrectly referenced as the section it is in.

\begin{table}  \begin{center}
    \begin{tabular} {|l|r|}
      \hline
      Protein & number of functions\\
      \hline
      Cln3 & 1\\      
      MBF&5\\
      SBF&5\\
      Cln1,2&4\\      
      Cdh1&15\\      
      Swi5&17\\      
      Cdc20\&Cdc14&7\\      
      Clb5,6&6\\      
      Sic1&339\\      
      Clb1,2&64\\      
      Mcm1/SFF&5\\
      \hline
    \end{tabular}
  \end{center}
  \caption{Number of possible functions for each protein}
  \label{table:numFun}
\end{table}

Comments