具有不同边框样式的表格?

具有不同边框样式的表格?

我需要创建这样的表格:

具有不同边框的表格

这可能吗?如果可能,如何实现?

谢谢

答案1

使用booktabstabular包(仅需一次编译即可获得最终结果):

\documentclass{article}
\usepackage{booktabs, tabularx}
\newcolumntype{L}{>{\raggedright\arraybackslash}X}

\begin{document}

\noindent%
\begin{tabularx}{\linewidth}{LcL}
        \toprule[2pt]
        \midrule
\textbf{Some text}  && \textbf{Some text}   \\
Another text        && Another text         \\
    \cmidrule{1-1}  \cmidrule{3-3}
\textbf{Some text}  && \textbf{Some text}   \\
Another text        && Another text         \\
    \cmidrule{1-1}  \cmidrule{3-3}
\textbf{Some text}  && \textbf{Some text}   \\
Another text        && Another text         \\
        \midrule
        \bottomrule[2pt]
    \end{tabularx}

\end{document}

在此处输入图片描述

或者

\documentclass{article}
\usepackage{ragged2e}
\usepackage{booktabs, tabularx}
\newcolumntype{L}{>{\hspace{0pt}\RaggedRight}X}

\usepackage{lipsum}
\begin{document}

\noindent%
\begin{tabularx}{\linewidth}{LcL}
        \toprule[2pt]
        \midrule
\textbf{Some text}  && \textbf{Some text}   \\
Another text        && Another text         \\
    \cmidrule{1-1}  \cmidrule{3-3}
\textbf{Some text}  && \textbf{Some text}   \\
Another text        && \lipsum[66]          \\
    \cmidrule{1-1}  \cmidrule{3-3}
\textbf{Some text}  && \textbf{Some text}   \\
Another text        && Another text         \\
        \midrule
        \bottomrule[2pt]
    \end{tabularx}

\end{document}

在此处输入图片描述

答案2

像这样

在此处输入图片描述

\documentclass{article}
\usepackage{nicematrix}
\usepackage{calc}
\usepackage{booktabs}

\newcolumntype{P}[1]{>{\raggedright\arraybackslash}p{#1\textwidth-2\tabcolsep- 
 1.5\arrayrulewidth}}
\newcolumntype{Y}[1]{>{\centering\arraybackslash}p{#1\textwidth-2\tabcolsep- 
 1.5\arrayrulewidth}}


\begin{document}
    
    \noindent
    \begin{NiceTabular}{P{0.4}Y{.1}P{0.4}}[]
        \toprule[2pt]
        \toprule 
        \textbf{Level 1} && \textbf{Level 2}\\ 
    blah blah blah && long long line\\\cmidrule{1-1}  \cmidrule{3-3}
            \textbf{Level 1} && \textbf{Level 2}\\ 
    blah blah blah && long long line\\\cmidrule{1-1}  \cmidrule{3-3}
            \textbf{Level 1} && \textbf{Level 2}\\ 
    blah blah blah && long long line\\
        \bottomrule
        \bottomrule[2pt]
    \end{NiceTabular}
    
\end{document}

相关内容