Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132928 views
License: OTHER
1
\documentclass[varwidth=true, border=2pt]{standalone}
2
\usepackage{tikz}
3
\usetikzlibrary{arrows,positioning}
4
\tikzset{
5
%Define standard arrow tip
6
>=stealth',
7
% Define arrow style
8
pil/.style={->,thick}
9
}
10
11
\begin{document}
12
\begin{tikzpicture}
13
\draw[fill=gray!30] (27:0.90) -- node[right=-0.28cm, near end] {$\cdot$} (27:1.08)
14
arc (27:117:.18cm);
15
\draw[fill=green!30] (0,0) -- (90:.55cm) arc (90:27:.55cm);
16
\draw[pil,color=red] (0,0) -- node[right=2pt] {$\vec a$} (27:3cm);
17
\draw[pil,color=blue] (0,0) -- node[near end, right=-3pt] {$\vec b$} (90:2cm);
18
19
\draw[pil,color=violet] (0,0) -- node[near start, right=7pt] {$\vec b_{\vec a}$} (27:0.90cm);
20
\draw[color=gray, dashed] (27:0.90) -- node[near end, right] {} (90:2cm);
21
22
\draw(60:0.35cm) node {$\varphi$};
23
\end{tikzpicture}
24
\end{document}
25
26