我的代码有问题tex
。我正在尝试创建一个线图,但现在输出失真且缩放不正确。有人知道如何解决这个问题吗?这是我的代码:
\documentclass[mnsc,blindrev]{informs3}
\begin{document}
\tikzset{axis line style/.style={thin, gray, -stealth}}
\newcommand*{\TickSize}{2pt}%
\begin{figure}
\begin{tikzpicture}
\draw [<->] (0,5) node[left, font=\itshape] -- (0,0) -- (5,0) node[below, font=\itshape]{Project phase};
\draw [thick, dash dot] (2,26.9) -- (3,23.1) -- (4,19.2) -- (5,15.3) node[right]{FG};
\draw [thick, dashed] (2,24.6) -- (3,22.4) -- (4,20.1) -- (5,17.8) node[right]{FN};
\draw [thick] (2,25.9) -- (3,26.7) -- (4,27.5) -- (5,28.3) node[right]{TG};
\draw [thick, dotted] (2,25.9) -- (3,26.8) -- (4,27.6) -- (5,28.4) node[right]{TN};
\foreach \x in {1,...,4} {%
\draw ($(\x,0) + (0,-\TickSize)$) -- ($(\x,0) + (0,\TickSize)$);
}
\foreach \y in {1,...,4} {%
\draw ($(0,\y) + (-\TickSize,0)$) -- ($(0,\y) + (\TickSize,0)$);
}
\end{tikzpicture}
\end{figure}
\end{document}
最终结果应该看起来像这个草图,除了我需要 y 轴上的新值和数字。
感谢你们!