仅在某些列中有垂直线

仅在某些列中有垂直线

对于我的论文中的表格,我想显示一条仅跨越 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} 

输出是一样的。

相关内容