在某些示例中,当他们想要选择下面的视图时,如何使用?如何选择数字?如果我想更改视图,如何实现?
[x={(0.866cm,0.5cm)}, y={(0.866cm,0.5cm)}, z={(0cm,1cm)}, scale=1]
答案1
OP 指定的轴对应于半径 2/\sqrt{3} 而不是 1,但可以按比例使用:
\documentclass{standalone}
\usepackage{tikz}
\usepackage{tikz-3dplot}
\begin{document}
\tdplotsetmaincoords{60}{135}
\begin{tikzpicture}[tdplot_main_coords,scale=1.1547]
\draw[thick,->] (0,0,0) -- (1,0,0) node[anchor=north east]{$x$};
\draw[thick,->] (0,0,0) -- (0,1,0) node[anchor=north west]{$y$};
\draw[thick,->] (0,0,0) -- (0,0,1) node[anchor=south]{$z$};
\end{tikzpicture}
\end{document}