1. ホーム
  2. latex

[解決済み] ラテックス製サイド・バイ・サイド・テーブルのラベリング

2022-02-08 17:01:20

質問内容

latexで2つのテーブルを並べていますが、refタグで使用するために別々にラベル付けすることができません。refタグを使用して、文章中にその名前を参照する方法はないでしょうか?例えば、表1では...、表2では...といった具合です。

何かコメントはありますか?

\begin{table}[ht]
\parbox{.45\linewidth}{
\centering
\begin{tabular}{|l|l|l|}
    \hline
        person id & seq id & feature vector$_1$  \\\hline
        1 & 1 & 1 \\
        1 & 2 & 1 \\ \hline
        1 & 1 & 1 \\ \hline
        1 & 1 & 1 \\ \hline

    \end{tabular}
\caption{HRV Dataset}
    }
\hfill
\parbox{.45\linewidth}{
\centering
\begin{tabular}{|l|l|l|l|}
\hline
person id & seq id & feature vector$_1$ & feature vector$_2$ \\\hline

1 & 1 &1 \\
1 & 2 & 1 \\ \hline
1 & 1 &1\\ \hline
1 & 1 & 1 \\ \hline
% \begin{tabular}{|l|l|l|l|}


% \end{tabular}
\end{tabular}
\caption{BAC Dataset}}
\end{table}

解決方法は?

を追加すれば問題ないでしょう。 \label の中にある \caption またはその直後で、同じ構文(例えば \parbox または minipage - 下記参照)。また、いくつかの booktabs ピチピチと...

\documentclass{article}

\usepackage{booktabs,makecell}

\begin{document}

\begin{table}
  \begin{minipage}{.5\linewidth}
    \centering
    \begin{tabular}{ *{3}{c} }
      \toprule
      \makecell{person \\ id} & \makecell{seq \\ id} & \makecell{feature \\ vector$_1$} \\
      \midrule
      1 & 1 & 1 \\
      1 & 2 & 1 \\
      1 & 1 & 1 \\
      1 & 1 & 1 \\
      \bottomrule
    \end{tabular}
    \caption{HRV Dataset}\label{tab:first}
  \end{minipage}%
  \begin{minipage}{.5\linewidth}
    \centering
    \begin{tabular}{ *{4}{c} }
      \toprule
      \makecell{person \\ id} & \makecell{seq \\ id} & \makecell{feature \\ vector$_1$} & \makecell{feature \\ vector$_2$} \\
      \midrule
      1 & 1 & 1 & 4 \\
      1 & 2 & 1 & 3 \\
      1 & 1 & 1 & 2 \\
      1 & 1 & 1 & 1 \\
      \bottomrule
    \end{tabular}
    \caption{BAC Dataset}\label{tab:second}
  \end{minipage}
\end{table}

See Table~\ref{tab:first} and Table~\ref{tab:second}\ldots

\end{document}