请考虑以下示例,取自pst-plot
手动的:
\documentclass{article}
\usepackage[margin = 2cm]{geometry}
\usepackage{pst-plot}
\begin{document}
\begin{pspicture}(-1.4,-0.5)(12,5)
\psaxes[Dx=100,dx=1,Dy=0.00075,dy=1]{->}(0,0)(12,5)[$x$,-90][$y$,180]
\psplot[linecolor=red, plotstyle=curve,linewidth=2pt,plotpoints=200]{0}{11}%
[/const1 3.3 10 8 neg exp mul def /s 10 def
/const2 6.04 10 6 neg exp mul def ] % optional PS commands
{const1 x 100 mul dup mul mul Euler const2 neg x 100 mul dup mul mul exp mul 2000 mul}
\end{pspicture}
\end{document}
当我编译时,LaTeX 会抛出警告
Overfull \hbox (312.98018pt too wide) detected at line 9
对我。
谁能告诉我如何消除这个警告?(我认为这可能与此有关,\psaxes
但我完全不确定。)
PS 在其他 PSTricks 图中也会出现这种情况。我不记得在第一次创建一些(现在)旧文档时看到过这些警告,因此我感觉某个 PSTricks 软件包的最新版本中引入了一个“错误”,但我不确定。
答案1
使用文档类选项draft
,您会看到 x 轴标签的框已满。原因是标签是在 TeX 级别上设置的,框的宽度为 0pt。因此,每个带有标签的 x 轴都会收到此警告,但这并没有什么坏处。