How can I make the arrowhead bigger?

  • Context: MHB 
  • Thread starter Thread starter Dustinsfl
  • Start date Start date
Click For Summary
SUMMARY

The discussion focuses on enlarging arrowheads in TikZ, a popular package for creating graphics in LaTeX. Users recommend utilizing the \usetikzlibrary command and refer to section 30.5.1 "Arrow Tip Markings" in the PGF/TikZ manual version 2.10 for detailed instructions. A sample code snippet demonstrates how to implement larger arrowheads using the \arrow command with specified line widths. Resources such as StackExchange are also suggested for further guidance.

PREREQUISITES
  • Familiarity with LaTeX document preparation system
  • Basic understanding of TikZ package for graphics
  • Knowledge of PGF/TikZ manual, specifically version 2.10
  • Understanding of LaTeX code structure and syntax
NEXT STEPS
  • Explore the TikZ documentation for advanced arrow customization
  • Learn about the \usetikzlibrary command and its applications
  • Investigate other graphic enhancements in PGF/TikZ
  • Review examples on StackExchange related to TikZ arrow modifications
USEFUL FOR

This discussion is beneficial for LaTeX users, graphic designers, and researchers looking to enhance their document visuals using TikZ, particularly those interested in customizing arrow graphics.

Dustinsfl
Messages
2,217
Reaction score
5
Code:
\draw[->] (0,0) -- (3,0);

How can I make the arrowhead bigger?
 
Physics news on Phys.org
dwsmith said:
Code:
\draw[->] (0,0) -- (3,0);

How can I make the arrowhead bigger?

Hi dwsmith, :)

Although I have never done this, I think you can do this using the \usetikzlibrary command. Please refer >>this<< for a complete description.

Kind Regards,
Sudharaka.
 
dwsmith said:
How can I make the arrowhead bigger?
Yes, this is awkward in TikZ. The link to StackExchange seems a good resource. This is also described in section 30.5.1 "Arrow Tip Markings" in PGF/TikZ manual for version 2.10. Here is a code from there.

Code:
\begin{tikzpicture}[decoration={
markings,% switch on markings
mark=at position 1cm with {\node[red]{1cm};},
mark=at position .75 with {\arrow[blue,line width=2mm]{>}},
mark=at position -1cm with {\arrowreversed[black]{stealth};}}
]
\draw [help lines] grid (3,2);
\draw [postaction={decorate}] (0,0) -- (3,1) arc (0:180:1.5 and 1);
\end{tikzpicture}
 

Similar threads

  • · Replies 3 ·
Replies
3
Views
5K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 13 ·
Replies
13
Views
3K
Replies
2
Views
2K
  • · Replies 2 ·
Replies
2
Views
1K
  • · Replies 5 ·
Replies
5
Views
3K
  • · Replies 16 ·
Replies
16
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 61 ·
3
Replies
61
Views
4K
  • · Replies 7 ·
Replies
7
Views
4K