Doppelte Unterstreichung, eine davon gestrichelt

Doppelte Unterstreichung, eine davon gestrichelt

Weiß jemandbeliebigTextverarbeitungsprogramm, das eine doppelte Unterstreichung durchführen kann; eine normale Linie und die andere eine gestrichelte Linie?

vorzugsweise ein Linux-Native

etwas Ähnliches wie das hier:

Probe

Es ist auch in Ordnung, wenn die gestrichelte Linie die oberste ist.

Antwort1

LaTeX kann das. Undviel mehr.

Probieren Sie es aus mitTeilenLaTeX, es ist kostenlos.

Wenn Ihr LaTeX-Setup funktioniert, versuchen Sie diesen Code:

\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}

Hier ist ein Screenshot der Ausgabe des obigen Codes:

Bildbeschreibung hier eingeben

verwandte Informationen