3

We know how to typeset the commonly used diagonal dots, i.e., \ddots, whose slope is -1.

Now I want to produce dots with slope 1, which is perpendicular to \ddots.

Does anyone know how to do it?

Werner
  • 603,163
booksee
  • 185
  • 7

3 Answers3

1

How about using \iddots?

It requires the mathdots package though.

EDIT:

There is a discussion on your problem here

shyamupa
  • 908
1

The MnSymbol package provides a \udots macro, which does exactly what you want. When you're looking for some symbol, consult the Com­pre­hen­sive LaTeX Sym­bol List; you stand a good chance to find it in there.

enter image description here

\documentclass{article}

\usepackage{amsmath}
\usepackage{MnSymbol}

\begin{document}
\begin{tabular}{ll}
    diagonal dots ($\text{slope} = -1$) & $\ddots$ \\
    diagonal dots ($\text{slope} = 1$)  & $\udots$
\end{tabular}

\end{document}
David Carlisle
  • 757,742
jub0bs
  • 58,916
0

It depends on tools. If the package graphicx is acceptable, the solution may be as follows

\documentclass{article}

\usepackage[demo]{graphicx}
\begin{document}

\[
A\ddots B \scalebox{-1}[1]{$\ddots$} C
\]

\end{document}

enter image description here