5

How to draw a black arrow , please ?

I've tried using this $\Rightarrow$, but it wouldn't work properly.

Thanks a lot!

Djouma
  • 779

1 Answers1

10

Three possibilities (there are many more; search the pgf manual for the arrows.meta library); adjust the settings according to your needs:

\documentclass{beamer}
\usepackage{tikz}
\usetikzlibrary{arrows.meta,shapes.arrows}

\begin{document}

\begin{frame}
\tikz\draw[->,line width=8pt] (0,0) -- (3,0);

\tikz\draw[-Latex,line width=8pt] (0,0) -- (3,0);

\tikz\node at (2,0) [fill=black,shape=single arrow,text width=2cm,text height=2.5ex] {};
\end{frame}

\end{document}

enter image description here

Gonzalo Medina
  • 505,128
  • how would i place any of these arrows on top of other things in the background without disturbing them? using your code directly shifts things under the arrow out of the way. – abcd Nov 05 '16 at 21:01