刪除表格中的整行

刪除表格中的整行

我想刪除表格中的整行。

一個不太好看的解決方案是使用soulpackage 並刪除每個單元格中的文字。

\documentclass[border=5pt]{article}
\usepackage{multirow}
\usepackage{tabls}
\usepackage{booktabs}
\usepackage{rotating}
\usepackage{soul}

\begin{document}


\begin{sidewaystable}[htbp]
  \centering
    \begin{tabular}{ lcc|cc|cc|cc|cc }
\cmidrule{2-11}          & \multicolumn{2}{c}{\textbf{1 week}} & \multicolumn{2}{c}{\textbf{2 weeks}} & \multicolumn{2}{c}{\textbf{3 weeks}} & \multicolumn{2}{c}{\textbf{4 weeks}} & \multicolumn{2}{c}{\textbf{5 weeks}} \\
\cmidrule{2-11} 
\cmidrule{2-11}    \multicolumn{1}{l}{} & $<\rho>$ & \#vals. & $<\rho>$ & \#vals. & $<\rho>$ & \#vals. & $<\rho>$ & \#vals. & $<\rho>$ & \#vals. \\
    \hline
    \st{Bridging Centrality} & \st{0.38}  & \st{2}     & \st{0.52}  & \st{3}     & \st{0.48}  & \st{6}     & \st{0.52}  & \st{12}    & \st{0.45}  & \st{5} \\
    \hline
    Bridging Centrality & 0.38  & 2    & 0.52  & 3     & 0.48  & 6     & 0.52  & 12    & 0.45  & 5 \\
    \hline
    \end{tabular}%
  \label{tab:addlabel}%
    \caption{$<\rho>$ is the mean of the correlation coefficients that have a significant ($<0.05$) p-value. \#vals indicates the number (out of 20) of correlation coefficient that are significant.}
\end{sidewaystable}%

\end{document}

那裡有更好的東西嗎?

答案1

這是一種簡單的方法,無需soul: a simple\hline和 a \vspace

\documentclass[border=5pt]{article}
\usepackage{multirow}
\usepackage{tabls}
\usepackage{booktabs}
\usepackage{rotating}

 \begin{document}


\begin{sidewaystable}[htbp]
  \centering
    \begin{tabular}{ lcc|cc|cc|cc|cc }
\cmidrule{2-11} & \multicolumn{2}{c}{\textbf{1 week}} & \multicolumn{2}{c}{\textbf{2 weeks}} & \multicolumn{2}{c}{\textbf{3 weeks}} & \multicolumn{2}{c}{\textbf{4 weeks}} & \multicolumn{2}{c}{\textbf{5 weeks}} \\
\cmidrule{2-11}
\cmidrule{2-11} \multicolumn{1}{l}{} & $<\rho>$ & \#vals. & $<\rho>$ & \#vals. & $<\rho>$ & \#vals. & $<\rho>$ & \#vals. & $<\rho>$ & \#vals. \\
    \hline
    Bridging Centrality & 0.38 & 2 & 0.52 & 3 & 0.48 & 6 & 0.52 & 12 & 0.45 & 5 \\[-2.2ex]
    \hline\noalign{\vspace{\dimexpr 2.2ex-\doublerulesep}}
    \hline
    Bridging Centrality & 0.38 & 2 & 0.52 & 3 & 0.48 & 6 & 0.52 & 12 & 0.45 & 5 \\
\hline
    \end{tabular}%
  \label{tab:addlabel}%
    \caption{$<\rho>$ is the mean of the correlation coefficients that have a significant ($<0.05$) p-value. \#vals indicates the number (out of 20) of correlation coefficient that are significant.}
\end{sidewaystable}%

\end{document} 

在此輸入影像描述

答案2

{NiceTabular}在的環境中nicematrix,您可以輕鬆地使用 TikZ 和在陣列中建立的節點繪製任何您想要的規則nicematrix

\documentclass[border=5pt]{article}
\usepackage{booktabs}
\usepackage{rotating}
\usepackage{nicematrix,tikz}

\begin{document}

\begin{sidewaystable}[htbp]
\centering
\newcolumntype{'}{!{\vrule}}
\begin{NiceTabular}{ lcc'cc'cc'cc'cc }
    \cmidrule{2-11} & \multicolumn{2}{c}{\textbf{1 week}} & \multicolumn{2}{c}{\textbf{2 weeks}} & \multicolumn{2}{c}{\textbf{3 weeks}} & \multicolumn{2}{c}{\textbf{4 weeks}} & \multicolumn{2}{c}{\textbf{5 weeks}} \\
    \cmidrule{2-11}
    \cmidrule{2-11} \multicolumn{1}{l}{} & $\langle\rho\rangle$ & \#vals. & $\langle\rho\rangle$ & \#vals. & $\langle\rho\rangle$ & \#vals. & $\langle\rho\rangle$ & \#vals. & $\langle\rho\rangle$ & \#vals. \\
    \hline
    Bridging Centrality & 0.38 & 2 & 0.52 & 3 & 0.48 & 6 & 0.52 & 12 & 0.45 & 5 \\
    \hline
    Bridging Centrality & 0.38 & 2 & 0.52 & 3 & 0.48 & 6 & 0.52 & 12 & 0.45 & 5 \\
    \hline
\CodeAfter
   \tikz \draw [red,double] (3.5-|1) -- (3.5-|last) ; 
\end{NiceTabular}%
\label{tab:addlabel}%
\caption{$\langle\rho\rangle$ is the mean of the correlation coefficients that have a significant ($<0.05$) p-value. \#vals
  indicates the number (out of 20) of correlation coefficient that are significant.} 
\end{sidewaystable}%

\end{document} 

上述程式碼的輸出

相關內容