From bcb05a29ee46a15a11de1606944cab34a59c4c84 Mon Sep 17 00:00:00 2001 From: Divyansh Gupta Date: Tue, 3 Oct 2023 21:54:25 +0530 Subject: [PATCH] Modified index.rst file of Getting Started --- doc/users/getting_started/index.rst | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/doc/users/getting_started/index.rst b/doc/users/getting_started/index.rst index 68d62232ddc9..a7ebc8d4b0bb 100644 --- a/doc/users/getting_started/index.rst +++ b/doc/users/getting_started/index.rst @@ -29,11 +29,13 @@ Draw a first plot ----------------- Here is a minimal example plot: +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ .. plot:: :include-source: :align: center + import matplotlib.pyplot as plt import numpy as np @@ -43,8 +45,9 @@ Here is a minimal example plot: fig, ax = plt.subplots() ax.plot(x, y) plt.show() + -If a plot does not show up please check :ref:`troubleshooting-faq`. +* If a plot does not show up please check :ref:`troubleshooting-faq`. Where to go next ---------------- @@ -53,3 +56,6 @@ Where to go next types of plots you can create with Matplotlib. - Learn Matplotlib from the ground up in the :ref:`Quick-start guide `. + + +