diff --git a/docs/parts/reference/tables-index.tex b/docs/parts/reference/tables-index.tex index 811cb76..a24e35f 100644 --- a/docs/parts/reference/tables-index.tex +++ b/docs/parts/reference/tables-index.tex @@ -30,8 +30,6 @@ This outputs as Left content & Right Content\\ \end{fullTable} -You may also use the \verb|labeledTable| environment, which takes as fourth argument the label you want to give the table a label to reference using \verb|\ref{tab:}| - \subsection{Index} diff --git a/main/tables.tex b/main/tables.tex index cb447c3..287fde6 100644 --- a/main/tables.tex +++ b/main/tables.tex @@ -31,16 +31,3 @@ \caption{\tableCaption} \end{table} } - -% Labeled table. #1 layout, #2 title row, #3 caption, #4 label -\newenvironment{labeledTable}[4]{ - \edef\tableLabel{#4} - \edef\tableCaption{#3} - \begin{table}[h!] - \begin{tables}{#1}{#2} - }{ - \end{tables} - \caption{\tableCaption} - \label{\tableLabel} - \end{table} -}