我有以下代码,它将我带到第一幅图所示的图形。
现在我想将图例条目的文本(在此示例中为:exp(x) 和 x²+2x+1)放在红线和蓝线下方(如第二幅图所示),而不是放在线条旁边。
\documentclass{article}
\usepackage{pgfplots}
\usepackage{tikz}
\begin{document}
\begin{figure}[h]
\centering
\begin{tikzpicture}
\begin{axis}[
ymajorgrids,
xmin = 0, xmax = 8,
ymin = 0, ymax = 100,
legend style = {at = {(0.15,-0.2)}, anchor = west, draw = none},
legend columns = 2,
]
\addplot[color=red]{exp(x)};
\addlegendentry{exp(x)}
\addplot [domain=-10:10, samples=100, color=blue] {x^2 + 2*x + 1};
\addlegendentry{\(x^2 + 2x + 1\)}
\end{axis}
\end{tikzpicture}
\end{figure}
\end{document}
有没有简单的方法可以实现这一点?