[解決済み] ラテックス製サイド・バイ・サイド・テーブルのラベリング
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}
関連
-
[解決済み】LaTeXで変数を定義する方法はありますか?
-
[解決済み] LaTeXのリストで箇条書きを隠すにはどうしたらいいですか?
-
[解決済み] LaTeXでPDFファイルを挿入する
-
[解決済み] LaTeXの表でテキストを折り返すには?
-
[解決済み] このLaTeX文書にインデントでコードを挿入する
-
[解決済み] LaTeXでドキュメントのフォントを変更するには?
-
[解決済み] 専門書のようなLaTeXのソースコード一覧表示
-
[解決済み】IPython NotebookでLaTeXを記述する方法は?
-
[解決済み】git + LaTeX ワークフロー
-
[解決済み] Latexでリストを複数の列に分割する
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン
おすすめ
-
[解決済み] pdflatex - synctex=1 -interaction=nonstopmode %.tex コマンドを開始できませんでした。
-
[解決済み] LaTeX: 2行目からインデント
-
[解決済み] LaTeXのオプション引数
-
[解決済み] Miktexが突然コンパイルできなくなった
-
[解決済み] 制御シーケンスが未定義です。
-
Latexがエラーを報告する $ inserted.insertテキストがない
-
ラテックス ! 挿入された \endcsname が欠落しています。
-
[解決済み] latexで&&を入力するにはどうすればよいですか?
-
[解決済み] このLaTeX文書にインデントでコードを挿入する
-
[解決済み] Latexでリストを複数の列に分割する