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

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

誰でも知っているどれでも二重下線(片方は通常の線、もう片方は破線)を引けるワードプロセッサはありますか?

できればLinuxネイティブ

これに似たもの:

サンプル

破線が上側であっても問題ありません。

答え1

LaTeXはそれができる。そしてもっとたくさん

試してみるシェアLaTeX、 それは無料です。

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}

上記コードの出力のスクリーンショットを以下に示します。

ここに画像の説明を入力してください

関連情報