對於我論文中的表格,我想顯示一條僅跨越 5 列中的 3 列的垂直線。
我目前的表是:
\begin{table}[h]
\centering
\captionsetup{singlelinecheck=false}
\caption[Temperatur-Zyklus-Konditionen für präperative PCR-Reaktionen]{\textbf{Temperatur-Zyklus-Konditionen für präperative PCR-Reaktionen}}
\label{t:praeppcrcycler}
\centering
\begin{tabular}{lll}
\midrule
Temperatur & Zeit & \\
\midrule
98 \si{\degreeCelsius} & 3 min & \\
& & \\
98 \si{\degreeCelsius} & 30 s & \\
58 \si{\degreeCelsius} & 20-30 s & 30-35x \\
72 \si{\degreeCelsius} & 20-60 s & \\
& & \\
72 \si{\degreeCelsius} & 3 min & \\
4 \si{\degreeCelsius} & $\infty$ & \\
\end{tabular}
\end{table}
不過,我確實想新增一條橫跨第 3 列、第 3 行到第 5 行的垂直線,如下圖所示
任何幫助表示讚賞!
答案1
這裡是。我稍微簡化並改進了您的程式碼:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage{booktabs, caption, multirow, siunitx}
\begin{document}
\begin{table}[!htb]
\captionsetup{singlelinecheck=false, justification=RaggedRight}
\sisetup{range-phrase=--, range-units=single}
\caption[Temperatur-Zyklus-Konditionen für präperative PCR-Reaktionen]{\textbf{Temperatur-Zyklus-Konditionen für präperative PCR-Reaktionen}}
\label{t:praeppcrcycler}
\centering
\begin{tabular}{lll}
\midrule
Temperatur & Zeit & \\
\midrule
\SI {98}{\celsius} & \phantom{0}\SI{3}{min} & \\
& & \\
\SI{98}{\celsius} & \SI{30}{s} & \multicolumn{1}{|c}{} \\
\SI{58}{\celsius} & \SIrange{20}{30}{s} & \multicolumn{1}|c}{30–35$\times$} \\
\SI{72}{\celsius} & \SIrange{20}{60}{s} & \multicolumn{1}{|c}{} \\
& & \\
\SI{72}{\celsius}& \phantom{0}\SI{3}{min} & \\
\phantom{0}\SI{4}{\celsius} & \phantom{0}$\infty$ & \\
\midrule
\end{tabular}
\end{table}
\end{document}
答案2
以下內容可能是您正在尋找的內容。
\documentclass[ngerman]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel,booktabs,siunitx}
\usepackage[skip=0.333\baselineskip,textfont=bf,
singlelinecheck=false]{caption}
\begin{document}
\begin{table}[h]
\centering
\caption{Temperatur-Zyklus-Konditionen für präperative PCR-Reaktionen}
\label{t:praeppcrcycler}
\centering
\begin{tabular}{@{}lll@{}}
\midrule
Temperatur & Zeit & \\
\midrule
\SI{98}{\degreeCelsius} & 3\,min & \\[2ex]
\SI{98}{\degreeCelsius} & 30\,s &
\smash{\begin{tabular}[t]{|l@{}}
\\ 30--35$\times$ \\ \\
\end{tabular}} \\
\SI{58}{\degreeCelsius} & 20--30\,s & \\
\SI{72}{\degreeCelsius} & 20--60\,s & \\[2ex]
\SI{72}{\degreeCelsius} & 3\,min & \\
\SI{4}{\degreeCelsius} & $\infty$ & \\
\bottomrule
\end{tabular}
\end{table}
\end{document}
答案3
這是一個解決{NiceTabular}
方案nicematrix
。此環境類似於{tabular}
( 的array
) 經典環境,但在行、列和單元格下創建 PGF/Tikz 節點。因此,可以透過在\CodeAfter
( \tikz \draw (4-|3) -- (7-|3) ;
) 中放置一條指令,使用 Tikz 在主數組之後繪製任何您想要的規則。
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage{ragged2e}
\usepackage{booktabs, caption, siunitx}
\usepackage{nicematrix}
\usepackage{tikz}
\begin{document}
\begin{table}[!htb]
\captionsetup{singlelinecheck=false, justification=RaggedRight}
\sisetup{range-phrase=--, range-units=single}
\caption[Temperatur-Zyklus-Konditionen für präperative PCR-Reaktionen]{\textbf{Temperatur-Zyklus-Konditionen für präperative PCR-Reaktionen}}
\label{t:praeppcrcycler}
\centering
\begin{NiceTabular}{lll}
\midrule
Temperatur & Zeit & \\
\midrule
\qty{98}{\celsius} & \phantom{0}\qty{3}{min} \\
& & \\
\qty{98}{\celsius} & \qty{30}{s} \\
\qty{58}{\celsius} & \qtyrange{20}{30}{s} & 30–35$\times$ \\
\qty{72}{\celsius} & \qtyrange{20}{60}{s} \\
& & \\
\qty{72}{\celsius}& \phantom{0}\qty{3}{min} \\
\phantom{0}\qty{4}{\celsius} & \phantom{0}$\infty$ \\
\midrule
\CodeAfter \tikz \draw (4-|3) -- (7-|3) ;
\end{NiceTabular}
\end{table}
\end{document}
也可以使用命令\Block
(內建{NiceTabular}
)及其密鑰borders
。
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage{ragged2e}
\usepackage{booktabs, caption, siunitx}
\usepackage{nicematrix}
\usepackage{tikz}
\begin{document}
\begin{table}[!htb]
\captionsetup{singlelinecheck=false, justification=RaggedRight}
\sisetup{range-phrase=--, range-units=single}
\caption[Temperatur-Zyklus-Konditionen für präperative PCR-Reaktionen]{\textbf{Temperatur-Zyklus-Konditionen für präperative PCR-Reaktionen}}
\label{t:praeppcrcycler}
\centering
\begin{NiceTabular}{lll}
\midrule
Temperatur & Zeit & \\
\midrule
\qty{98}{\celsius} & \phantom{0}\qty{3}{min} \\
& & \\
\qty{98}{\celsius} & \Block[borders=right]{3-1}{} \qty{30}{s} \\
\qty{58}{\celsius} & \qtyrange{20}{30}{s} & 30–35$\times$ \\
\qty{72}{\celsius} & \qtyrange{20}{60}{s} \\
& & \\
\qty{72}{\celsius}& \phantom{0}\qty{3}{min} \\
\phantom{0}\qty{4}{\celsius} & \phantom{0}$\infty$ \\
\midrule
\end{NiceTabular}
\end{table}
\end{document}
輸出是相同的。