2
\begin{cases}
First line\\
Second line\\
third line\\
\vdots

\end{cases}

is giving like, enter image description here

Instead of the left open brace, if I want an Arrow mark, how I can do it?

One way is this,

$\left\uparrow \begin{array}{l}
First line\\
Second line\\
third line\\
\vdots
\end{array}
\right.$

which gives like

enter image description here

But the arrow is looking thin..I want a thick(may be ultrathick and in some colors) arrow.

If there is any other shapes I can draw means i will be happy..

How to do that??


After getting some comments, I am linking this question, which also narrates my problem.

David
  • 1,964

2 Answers2

3

A solution with thick arrow and some colors:

\documentclass{article}
\usepackage{smartdiagram}
\begin{document}
\smartdiagram[priority descriptive diagram]{%
Third line, 
Second line, 
First line}
\end{document}

mwe

Fran
  • 80,769
2

Maybe a double arrow helps?

$\left\Uparrow \begin{array}{l}
First line\\
Second line\\
third line\\
\vdots
\end{array}
\right.$

output 1

Colour is also possible:

\usepackage{xcolor}
...
$\color{blue}\left\Uparrow \color{black}\begin{array}{l}
First line\\
Second line\\
third line\\
\vdots
\end{array}
\right.$

output 2

jarauh
  • 2,762
  • 15
  • 27