长桌上的垂直线

长桌上的垂直线

我希望垂直线与水平线稍微分离。我正在使用

\usepackage{longtable}.

\footnotesize

\begin{longtable}{r | p{10cm}}

\caption{My caption 1\label{1}}\\

\hline

\endfirsthead

\caption[]{(continued)}\\

\endhead

\hline

\endlastfoot

\textsc{Newspaper Name}&\emph{Daily Triplicate}\\

\textsc{Availability}&text\\

\textsc{founded}&date\\

\textsc{Circulation}&number\\

\textsc{Coverage}&text\\

\textsc{Frequency}&text\\

\hline

\textsc{Newspaper Name}&\emph{Eureka Times-Standard}\\

\textsc{Availability}&text\\

\textsc{founded}&1997date\\

\textsc{Circulation}&number\\

\textsc{Coverage}&text\\

\textsc{Frequency}&text\\

\end{longtable}

答案1

您可以使用booktabs和其toprulemidrulebottomrule

\documentclass{article}
\usepackage{booktabs,longtable,array}

\begin{document}

\newcolumntype{K}{>{\scshape}r}

\footnotesize
\begin{longtable}{@{}K | p{10cm}@{}}
\caption{My caption 1\label{1}}\\
\toprule
\endfirsthead
\caption[]{(continued)}\\
\endhead

\bottomrule

\endlastfoot

Newspaper Name  &   \emph{Daily Triplicate}\\
Availability    &   text    \\
founded         &   date    \\
Circulation     &   number  \\
Coverage        &   text    \\
Frequency       &   text    \\

\midrule

Newspaper Name  &   \emph{Eureka Times-Standard}\\
Availability    &   text        \\
founded         &   1997date    \\
Circulation     &   number      \\
Coverage        &   text        \\
Frequency       &   text        \\

\end{longtable}

\end{document}

作为免费奖励,您可以获得更好(且更正确)的行间距。

编辑:我通过加载清理了代码array,并定义了一个新的K列来删除\textsc{}第一列中的所有内容。还@{}删除了第 1 列左侧和第 2 列右侧不必要的空间。

另外,我邀请你阅读第 2 节booktab 手册,并重新考虑使用垂直线。 在此处输入图片描述

相关内容