为什么有了最新版本的MikTeX
+TeXworks
仍然输出不好?pdf 输出是完美的。
有什么解决方案以及我该怎么做?
跟进:2024/01/30。
我刚刚注意到,即使安装了 2024 年 1 月 27 日的更新后,TeXworks 的问题(如图所示)仍然存在。我寻求您的帮助。谢谢。
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{figure}
\centering
\begin{tikzpicture}
\draw[->] (-3,0) -- (3,0) node[right] {$x$};
\draw[->] (0,-3) -- (0,3) node[above] {$y$};
\draw[blue, thick, domain=-2.5:2.5, samples=100] plot (\x, {\x^2});
\node[blue, above right] at (2.5, 6) {$y = x^2$};
\draw[red, thick, domain=-2.5:2.5, samples=100] plot (\x, {-\x^2});
\node[red, below right] at (2.5, -6) {$y = -x^2$};
\end{tikzpicture}
\caption{Two Parabolas: $y = x^2$ and $y = -x^2$}
\end{figure}
\end{document}