6

我有一个用 \newenvironment 定义的自定义表环境。我在这种环境中有一个标题,但我想在最后有它。

我的环境看起来(有点简化)是这样的:

\newenvironment{mytable}[2]{\begin{table}[hbtp]\caption{#1}\label{#1}\begin{center}\begin{tabular}{#2}}{\end{tabular}\end{center}\end{table}}

我想把标题放在最后,像这样:

\newenvironment{mytable}[2]{\begin{table}[hbtp]\label{#1}\begin{center}\begin{tabular}{#2}}{\caption{#1}\end{tabular}\end{center}\end{table}}

但这不起作用,因为我无法在环境结束时使用参数。我怎么解决这个问题?

4

2 回答 2

4

您需要存储标题和标签参数并稍后使用它们。(另外,\label 应该出现在 \caption 之后。)

像这样的东西应该工作:

\newcommand{\templabel}{}% stores the label
\newcommand{\tempcaption}{}% stores the caption

\newenvironment{mytable}[3]{%
  \gdef\templabel{#1}% store the label so we can use it later
  \gdef\tempcaption{#2}% store the caption so we can use it later
  \begin{table}[hbtp]% 
    \begin{center}%
      \begin{tabular}{#3}%
}{%
        \caption{\tempcaption}% use the stored caption
        \label{\templabel}% use the stored label (*after* the caption)
      \end{tabular}%
    \end{center}%
  \end{table}%
}

使用这样的环境:

\begin{mytable}{tab:example}{This is the caption for my example table.}{cc}
  Row 1 & First \\
  Row 2 & Second \\
  Row 3 & Third \\
\end{mytable}

我没有测试过这段代码。

于 2009-09-07T18:34:59.410 回答
-3

使用剪切和粘贴代替新环境?我很确定 \newenv。不打算以这种方式使用。这有什么意义?不是每次都打出来?

于 2009-09-07T18:12:26.210 回答