\usepackage{pgfplots}
\usepackage{tikz}
下面列出一个简单的示例代码:
\begin{center}
\begin{tikzpicture}
% 修改标题样式,把标题放到图形下方
\pgfplotsset{every axis title/.style={at={(0.5,-0.3)},above,yshift=6pt}}
\begin{axis}[
title = {图1-1\quad 真正唯一解},
width = 7cm,
height = 5cm,
axis lines = middle,
ymin = -1.5,
ymax = 3.5,
xmin = -5,
xmax = 5,
xlabel = $x_{1}$,
ylabel = $x_{2}$,
]
\addplot[color = red]{(x + 1) / 2};
\addplot[color = blue]{(x + 3) / 3};
\end{axis}
\end{tikzpicture}
\end{center}
效果如下:
默认的标题是在上方居中,但我要的是下方居中,所以做了一些修改。
原文地址:http://blog.51cto.com/12441164/2091980