答案1
也许这可以让你开始:
以下是代码:
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{positioning,arrows.meta}
\begin{document}
\begin{tikzpicture}[>=Straight Barb]
\draw[fill=black](105:1.6)--(285:0.6)-| cycle; % filled triangle
\draw[orange](105:1.8)--(285:0.8);
\draw[thick](0,2)node[above]{Security 2}--(0,0)--(2,0)node[right]{Security 1};
\foreach \x [count=\xi] in {15,45,75} {
\draw[->](0,0)--(\x:1.8);
\node at (\x:2){$x_{\xi}$};
}
\end{tikzpicture}
\end{document}
编辑
例如,您可以通过向标签添加来缩小标签。如果您想在 x 和 y 方向上按不同的因子缩放,您可以通过向xscale yscale\small
添加来放大整个图片。scale=3
tikzpicture environment -- there's also
and
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{positioning,arrows.meta}
\begin{document}
\begin{tikzpicture}[>=Straight Barb,scale=3]
\draw[fill=black](105:1.6)--(285:0.6)-| cycle; % filled triangle
\draw[orange](105:1.8)--(285:0.8);
\draw[thick](0,2)node[above]{\small Security 2}--(0,0)--(2,0)node[right]{\small Security 1};
\foreach \x [count=\xi] in {15,45,75} {
\draw[->](0,0)--(\x:1.8);
\node at (\x:2){$x_{\xi}$};
}
\end{tikzpicture}
\end{document}