参考LaTeX中的表格

Léo*_* 준영 181 latex

你怎么能引用一个表格,例如你得到Table 7的?

样本数据

Table \ref{table:questions} lorem lorem ipsun.

\begin{table}
\label{table:questions}
\begin{tabular}{| p{5cm} | p{5cm} | p{5cm} |}
  -- cut --
\end{tabular}
\end{table}
Run Code Online (Sandbox Code Playgroud)

我明白了

Table 2.5 lorem lorem ipsun.
Run Code Online (Sandbox Code Playgroud)

其中2.5是章节号.

dre*_*lax 335

您必须在标题后面放置标签,以便label存储表格的编号,而不是章节的编号.

\begin{table}
\begin{tabular}{| p{5cm} | p{5cm} | p{5cm} |}
  -- cut --
\end{tabular}
\caption{My table}
\label{table:kysymys}
\end{table}

Table \ref{table:kysymys} on page \pageref{table:kysymys} refers to the ...

  • @ 3kstc,我有同样的问题,通过将\ begin {table}从\ usepackage {float}更改为\ begin {table} [H]来解决 (6认同)
  • 出于某种原因,这会将表格和标题推送到页面底部,从而导致标题成为页面上的最后一个句子,其中表格位于标题之上._如何解决这个问题,以便它只是位于最后一个类型的句子下面?_我怀疑它与`\ beign {table}`和`\ end {table}`命令有关... (3认同)
  • @3kstc您可以尝试在 https://tex.stackexchange.com/ 上询问 (3认同)