이 테이블을 사용하는 데 어려움을 겪고 계시다면 도움을 주시면 감사하겠습니다. 정말 감사합니다
\documentclass[a4paper,12pt]{report}
\usepackage{multirow}
\usepackage{siunitx,booktabs}%for table decimals number
\usepackage[export]{adjustbox} \begin{table}[!htbp]
\centering
\begin{tabular}{>{\bfseries}l
S[table-format=-1.2(2)]
S[table-format=table-format=1.1e1] }
\toprule
{\textbf{Approach}} & $\boldsymbol{\beta}$ & $\boldsymbol{\chi^{2}}$ \\
\midrule
1 & -0.61(17) & Inf. \\
2 & -0.60(17) & Inf. \\
3 & -0.59(18) & 3$\times$10$^6$\\
4 & -0.56(20) & Inf. \\
\bottomrule
\end{tabular}
\caption[]
\label{}
\end{table}
\FloatBarrier
답변1
헤더에 굵은 글씨체를 사용하지 않겠습니다. 두 개의 서로 다른 수학 엔터티입니다 \bm{\beta}
.\beta
또한 첫 번째 열은 굵은 글씨로 표시할 필요가 없습니다. 숫자가 하나만 있는 세 번째 열은 숫자와 c
함께 가 될 수 있습니다. \num
요약되지 않은 버전인 경우 숫자가 아닌 항목을 중괄호로 묶어야 합니다.
\documentclass[a4paper,12pt]{report}
\usepackage{amsmath,bm}
\usepackage{siunitx,booktabs}%for table decimals number
\begin{document}
\begin{table}[!htbp]
\centering
\begin{tabular}{
>{\bfseries}l
S[table-format=-1.2(2)]
c
}
\toprule
Approach & {$\bm{\beta}$} & $\bm{\chi^{2}}$ \\
\midrule
1 & -0.61(17) & Inf. \\
2 & -0.60(17) & Inf. \\
3 & -0.59(18) & \num{3e6} \\
4 & -0.56(20) & Inf. \\
\bottomrule
\end{tabular}
\caption{A caption}
\label{label}
\end{table}
\begin{table}[!htbp]
\centering
\begin{tabular}{
l
S[table-format=-1.2(2)]
c
}
\toprule
Approach & {$\beta$} & $\chi^{2}$ \\
\midrule
1 & -0.61(17) & Inf. \\
2 & -0.60(17) & Inf. \\
3 & -0.59(18) & \num{3e6} \\
4 & -0.56(20) & Inf. \\
\bottomrule
\end{tabular}
\caption{A caption}
\label{label2}
\end{table}
\begin{table}[!htbp]
\centering
\begin{tabular}{
l
S[table-format=-1.2(2)]
S[table-format=1.0e1]
}
\toprule
Approach & {$\beta$} & $\chi^{2}$ \\
\midrule
1 & -0.61(17) & {Inf.} \\
2 & -0.60(17) & {Inf.} \\
3 & -0.59(18) & 3e6 \\
4 & -0.56(20) & {Inf.} \\
\bottomrule
\end{tabular}
\caption{A caption}
\label{label3}
\end{table}
\end{document}
답변2
이것은 테이블이어야 하며 컴파일 가능해야 합니다.
\documentclass[a4paper,12pt]{report}
\usepackage{multirow}
\usepackage{siunitx}
\usepackage{booktabs}
\usepackage{amsmath}
\begin{document}
\begin{table}[!htbp]
\centering
\begin{tabular}{>{\bfseries}c % I think centred column looks better here
S[table-format=-1.2(2)]
S[table-format=1.1e1] }
\toprule
Approach & $\boldsymbol{\beta}$ & $\boldsymbol{\chi^{2}}$ \\
\midrule
1 & -0.61(17) & {Inf.} \\
2 & -0.60(17) & {Inf.} \\
3 & -0.59(18) & 3e6 \\
3 & -0.59(18) & 3.0e6 \\ % for comparison
4 & -0.56(20) & {Inf.} \\
\bottomrule
\end{tabular}
\caption{test}
\label{tab:test}
\end{table}
\end{document}
답변3
\documentclass[a4paper,12pt]{report}
\usepackage{amsmath}
\usepackage{booktabs}
\usepackage{siunitx}
\begin{document}
\begin{table}[htbp]
\centering
\caption[]{My nice table}
\label{tab:mytable}
\begin{tabular}{>{\bfseries}l
S[table-format=-1.2(2)]
S[table-format= 1.0e1] }
\toprule
Approach & {$\boldsymbol{\beta}$} & {$\boldsymbol{\chi^{2}}$} \\
\midrule
1 & -0.61(17) & {Inf.} \\
2 & -0.60(17) & {Inf.} \\
3 & -0.59(18) & 3e6 \\
4 & -0.56(20) & {Inf.} \\
\bottomrule
\end{tabular}
\end{table}
or
\begin{table}[htbp]
\sisetup{separate-uncertainty}%
\centering
\caption[]{My nice table again}
\label{tab:mytable}
\begin{tabular}{>{\bfseries}c
S[table-format=-1.2(2)]
S[table-format= 1.0e1] }
\toprule
Approach & {$\boldsymbol{\beta}$} & {$\boldsymbol{\chi^{2}}$} \\
\midrule
1 & -0.61(17) & {Inf.} \\
2 & -0.60(17) & {Inf.} \\
3 & -0.59(18) & 3e6 \\
4 & -0.56(20) & {Inf.} \\
\bottomrule
\end{tabular}
\end{table}
\end{document}