A previous post "How to elongate down arrow?"(How to elongate down arrow?) tells us how to increase the length of the arrow. As a next step, how can one increase the width of the arrow?
Asked
Active
Viewed 184 times
0
-
Welcome to TeX.SE! You should be more specific. How is produced this arrow? As part f some (math) font or it can be drawn for example by TikZ? – Zarko Jul 17 '21 at 18:08
-
1You may check for TikZ, pgfmanual, there you'll find lots of arrows and hints for customization. – Harald Lichtenstein Jul 17 '21 at 19:22
-
To build on https://www.latex4technics.com/?note=GIM... – user12585 Jul 17 '21 at 22:31
1 Answers
1
Based on the code you linked in your comment (by the way, do not link code but put it in your question):
\documentclass[a4paper,10pt]{article}
\usepackage{tikz}
\usetikzlibrary{arrows.meta}
\tikzset{
myarrow/.style={
line width=3pt,
}
}
\newcommand{\arrowup}{%
\tikz[baseline=12pt]{\draw [->, myarrow] (0,0) -- ++(0,20pt);}
}
\newcommand{\arrowdown}{%
\tikz[baseline=12pt]{\draw [<-, myarrow] (0,0) -- ++(0,20pt);}
}
\begin{document}
\begin{center}
This is some text.\linebreak
\arrowdown\linebreak
And some more.\linebreak
\arrowup\linebreak
And even more.
\end{center}
\end{document}
CarLaTeX
- 62,716
