二重下線、そのうちの1つは破線


1

誰でも知っている どれか 二重下線を引くことができるワープロ。 1本の法線ともう1本の破線?

できればLinuxネイティブ

これに似たもの:

sample

破線が一番上の線でも問題ありません。


ほとんどのワードプロセッサには線画が含まれています。これを使用してこの効果を達成できます。
AFH

それは私がそれを回避する方法ですが、私はそれが "テキストの下線を引く"ことが必要です。 ty @AFH
Mina Michael

その場合は、必要な二重下線付きのフォントが必要です。自分でデザインする必要があります。また、ワードプロセッサは重要ではありません。
AFH

回答:


5

LaTeXはそれをすることができます。そして はるかに

試してみる ShareLaTeX 、 それは無料です。

LaTeXの設定がうまくいったら、次のコードを試してください。

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{tikz}

\title{\specdash{Some Text}}
\author{\specdashtwo{Author}}
\date{\specdashthree{20 October 2016}}

\newcommand{\specdash}[1]{%
    \tikz[baseline=(todotted.base)]{
        \node[inner sep=1pt,outer sep=0pt] (todotted) {#1};
        \draw (todotted.south west) -- (todotted.south east);
        \draw[densely dashed] ([yshift=-2pt]todotted.south west) -- ([yshift=-2pt]todotted.south east);
    }%
}%

\newcommand{\specdashtwo}[1]{%
    \tikz[baseline=(todotted.base)]{
        \node[inner sep=1pt,outer sep=0pt] (todotted) {#1};
        \draw[loosely dashed] ([yshift=-1pt]todotted.south west) -- ([yshift=-1pt]todotted.south east);
        \draw ([yshift=-3pt]todotted.south west) -- ([yshift=-3pt]todotted.south east);
    }%
}%

\newcommand{\specdashthree}[1]{%
    \tikz[baseline=(todotted.base)]{
        \node[inner sep=1pt,outer sep=0pt] (todotted) {#1};
        \draw[dotted] ([yshift=-1pt]todotted.south west) -- ([yshift=-1pt]todotted.south east);
        \draw[densely dashed] ([yshift=-3pt]todotted.south west) -- ([yshift=-3pt]todotted.south east);
    }%
}%

\begin{document}

\maketitle

\end{document}
\documentclass{article}

これは上記のコードの出力のスクリーンショットです。

enter image description here


SUへようこそ。私が質問、答え、を読んだとき、LaTeXはおそらくすぐに私の頭に浮かぶことになりました。証明に感謝します。この素晴らしい組版システムに興味を持っている他のすべての人のために、適切なSEサイトを訪問することを検討してください: tex.stackexchange.com
mpy
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.