答案1
这可以作为一个起点,优秀的用户可以在这里编辑和添加缺失的内容。
\documentclass{article}
\usepackage{pgfplots}
\usepackage{amssymb, amsmath}
\usepackage{tikz}
\usepackage{xcolor}
\pgfplotsset{compat=1.7}
\begin{document}
\pgfmathdeclarefunction{gauss}{2}{\pgfmathparse{1/(#2*sqrt(2*pi))*exp(-((x-#1)^2)/(2*#2^2))}%
}
\begin{tikzpicture}
\begin{axis}[no markers, domain=0:10, samples=100,
axis lines*=left, xlabel=fghjfgj, ylabel=fdgjfjfj,
height=6cm, width=10cm,
xtick={-3, -2, -1, 0, 1, 2, 3}, ytick=\empty,
enlargelimits=false, clip=false, axis on top]
\addplot[color=orange,line width=1.5pt, fill=cyan!20, domain=-2:2] {gauss(0,1)} \closedcycle;
\addplot [color=orange,line width=1.5pt, fill=white, domain=-3:-2] {gauss(0,1)} \closedcycle;
\addplot [color=orange,line width=1.5pt,fill=white, domain=2:3] {gauss(0,1)} \closedcycle;
\end{axis}
\end{tikzpicture}
\end{document}