Latex / PsTricks

Latex / PsTricks
  1. 生成拉格朗日中值定理的图形表示。

你可以在区间 [0, 1/2] 上取函数 f(x) = x(x-1)(x-2)。

答案1

运行xelatex

\documentclass{article}
\usepackage{pst-plot}
\begin{document}

\psset{llx=-0.5cm,lly=-0.5cm,labelFontSize=\footnotesize}
\begin{psgraph}[xticksize=-4pt 0,Dx=0.2,Dy=0.2,
      arrows=->](0,0)(-0.1,-0.1)(0.6,0.6){5cm}{5cm}
   \psplot[linewidth=2pt,linecolor=blue,algebraic]{0}{0.5}{x*(x-1)*(x-2) }
\end{psgraph}   

\end{document}

在此处输入图片描述

相关内容