在 Tikzi 中,我需要绘制从 0 到 1 的 y 轴,并以 0.2 为刻度,例如 0、0.2.0.4 到 1.0。我能够绘制 x 轴和 y 轴,但当指定 0 到 1 的范围时,y 轴会缩小。有人能告诉我如何设置 y 轴范围以及如何放大此图表吗,我如何才能以适当的纵横比放大它以适合文章,因为它看起来很小。我得到的输出是这样的,x 轴和 y 轴的值 0 出现了两次,而这些值应该只出现一次。
这是我的代码
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
/% draw x , y lines
\draw[thick,->] (0,0) -- (4.5,0) node[anchor=north west] {x axis};
\draw[thick,->] (0,0) -- (0,4.5) node[anchor=south east] {y axis};
% draw x ,y points (Values)
\foreach \x in {0,1,2,3,4}
\draw (\x cm,1pt) -- (\x cm,-1pt) node[anchor=north] {$\x$};
\foreach \y in {0,1,2,3,4}
\draw (1pt,\y cm) -- (-1pt,\y cm) node[anchor=east] {$\y$};
\end{tikzpicture}
\end{document}
答案1
一种可能的方法是:
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
% draw x , y lines
\draw[thick,->] (0,0) -- (5.9,0) node[below left] {x axis};
\draw[thick,->] (0,0) -- (0,5.9) node[below left] {y axis};
% draw x ,y points (Values)
\foreach \i [count=\j from 0] in {0.2, 0.4, 0.6, 0.8, 1}
{
\draw (\j,2pt) -- ++ (0,-4pt) node[below] {$\j$};
\draw (2pt,\j+1) -- ++ (-4pt,0) node[left] {$\i$};
}
\end{tikzpicture}
\end{document}
编辑: 现在省略了 y 轴上的零点。