論文の表では、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}
( ) に似ていますが、行、列、セルの下に PGF/Tikz ノードを作成します。そのため、 ( )array
に命令を入れることで、Tikz を使用してメイン配列の後に必要なルールを描画することができます。\CodeAfter
\tikz \draw (4-|3) -- (7-|3) ;
\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}
出力は同じです。