假設我寫了一個表兩次,並希望第二個表與第一個表具有相同的編號。有了方程式,我就知道怎麼做了。然而,對於表格來說這不起作用。以下是我的想法,但出現錯誤:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
x = 1
\label{eq1}
\end{equation}
\begin{equation}
x \not= 2
\tag{\ref{eq1}}
\end{equation}
\begin{table}[h]
\begin{tabular}{c}
hello
\end{tabular}
\caption{this is a talbe}
\label{table}
\end{table}
\begin{table}[h]
\begin{tabular}{c}
hello
\end{tabular}
\caption{this is a talbe}
\tag{\ref{table}}
\end{table}
\end{document}
有人知道如何正確引用嗎?
答案1
這是一個技巧。\tabtag{table}
之前使用\caption
。
\documentclass{article}
\usepackage{amsmath}
\newcommand{\tabtag}[1]{%
\renewcommand{\thetable}{\ref{#1}}%
\addtocounter{table}{-1}}
\begin{document}
\begin{equation}
x = 1
\label{eq1}
\end{equation}
\begin{equation}
x \not= 2
\tag{\ref{eq1}}
\end{equation}
\begin{table}
\begin{tabular}{c}
hello
\end{tabular}
\caption{this is a table}
\label{table}
\end{table}
\begin{table}
\begin{tabular}{c}
hello
\end{tabular}
\tabtag{table}
\caption{this is a table}
\end{table}
\begin{table}
\begin{tabular}{c}
hello
\end{tabular}
\caption{this is a table}
\end{table}
\end{document}