From 5d9414ddc4ec72d6b32ac88e9aa94a0fe2433dab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Labb=C3=A9?= Date: Thu, 4 Nov 2021 11:28:44 +0100 Subject: [PATCH] 32650: .. note -> .. NOTE --- src/sage/plot/animate.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/sage/plot/animate.py b/src/sage/plot/animate.py index 96388659111..e3557569e78 100644 --- a/src/sage/plot/animate.py +++ b/src/sage/plot/animate.py @@ -565,7 +565,7 @@ def gif(self, delay=20, savefile=None, iterations=0, show_path=False, sage: a.gif(savefile=td + 'my_animation_2.gif', show_path=True, use_ffmpeg=True) # optional -- ffmpeg Animation saved to .../my_animation_2.gif. - .. note:: + .. NOTE:: If neither ffmpeg nor ImageMagick is installed, you will get an error message like this:: @@ -634,7 +634,7 @@ def _gif_from_imagemagick(self, savefile=None, show_path=False, sage: td = tmp_dir() sage: a._gif_from_imagemagick(savefile=td + 'new.gif') # optional -- imagemagick - .. note:: + .. NOTE:: If imagemagick is not installed, you will get an error message like this:: @@ -760,7 +760,7 @@ def show(self, delay=None, iterations=None, **kwds): This method does not return anything. Use :meth:`save` if you want to save the figure as an image. - .. note:: + .. NOTE:: Currently this is done using an animated gif, though this could change in the future. This requires that either @@ -806,7 +806,7 @@ def show(self, delay=None, iterations=None, **kwds): sage: a.show(50, 3) # optional -- ImageMagick - .. note:: + .. NOTE:: If you don't have ffmpeg or ImageMagick installed, you will get an error message like this:: @@ -892,7 +892,7 @@ def ffmpeg(self, savefile=None, show_path=False, output_format=None, sage: a.ffmpeg(savefile=td + 'new.mpg', show_path=True) # optional -- ffmpeg Animation saved to .../new.mpg. - .. note:: + .. NOTE:: If ffmpeg is not installed, you will get an error message like this::