“同上”表示法

“同上”表示法

当我有一张表,其中一行具有与上面相同的内容,那么在乳胶中是否有相应的表示?

在德国,我们有时会------- " --------说这里的这句话和上面的一样。

因此,不要这样做:

| title | description          |
| Bla   | no description       |
| Blubb | no description       |
| Blop  | no description       |
| Blip  | no description       |

有类似这样的内容:

| title | description          |
| Bla   | no description       |
| Blubb | ---------"---------- |
| Blop  | ---------"---------- |
| Blip  | ---------"---------- |

也许不是虚线,而是直线。有没有这样的命令,或者任何其他方式来表示一条线在另一条线的上方,而不写“见上方”?

忘了说了:我使用longtable环境。我的列类型是{c|lp{4cm}p{4cm}}

答案1

以下是您可能需要的草稿,使用xhfill包裹(对于领导者)和\textquotedbl(通过T1编码fontenc,正如建议的那样有同上符号吗?):

在此处输入图片描述

\documentclass[a4paper]{scrartcl}
\usepackage[T1]{fontenc}% http://ctan.org/pkg/fontenc
\usepackage{longtable}% http://ctan.org/pkg/longtable
\usepackage{xhfill}% http://ctan.org/pkg/xhfill
\newcommand{\ditto}[1][.4pt]{\xrfill{#1}~\textquotedbl~\xrfill{#1}}
\begin{document}

\begin{longtable}{c|lp{4cm}p{4cm}}
\hline
Title & Heading & Description & Blop \\
Bla   & A & no description & Blop \\
Blubb & B & \ditto & Blip  \\
Blop  & C & \ditto & Blubb \\
Blip  & D & \ditto[1pt] & Blop  \\
\hline
\end{longtable}
\end{document}​

xhfill不是真的是必需的,但它足够小,可以按原样使用。 绘制的引线/规则的默认宽度\xrfill.4pt根据 的定义\ditto[<width>],除非另有说明。

相关内容