如何删除 pdfplots 中的框和刻度标记?

如何删除 pdfplots 中的框和刻度标记?

假设我有一个简单的函数,想要在 pgfplots 中绘制。

在此处输入图片描述

我用来绘制此图的代码(删除了前言)是:

\begin{tikzpicture} 
\begin{axis}[thick, smooth, no markers]
\addplot {x^2+2}; 
\end{axis} 
\end{tikzpicture}

我想删除函数周围的所有内容。我尝试在线查看如何完成此操作(以及 pgfplots 文档),但无法使其工作。我该如何做到这一点?

答案1

hide axis

在此处输入图片描述

\documentclass{standalone}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
  hide axis,
  every axis plot/.style={thick, smooth, no markers}
  ]
\addplot {x^2+2}; 
\end{axis} 
\end{tikzpicture}
\end{document}

相关内容