diff options
Diffstat (limited to 'doc/source')
-rw-r--r-- | doc/source/_templates/indexcontent.html | 2 | ||||
-rw-r--r-- | doc/source/conf.py | 3 | ||||
-rw-r--r-- | doc/source/user/index.rst | 2 | ||||
-rw-r--r-- | doc/source/user/quickstart.rst | 2 |
4 files changed, 6 insertions, 3 deletions
diff --git a/doc/source/_templates/indexcontent.html b/doc/source/_templates/indexcontent.html index 372b89a01..4cbe7d4d5 100644 --- a/doc/source/_templates/indexcontent.html +++ b/doc/source/_templates/indexcontent.html @@ -20,7 +20,7 @@ <p class="biglink"><a class="biglink" href="{{ pathto("user/quickstart") }}">NumPy quickstart</a><br/> <span class="linkdescr">Aimed at domain experts or people migrating to NumPy</span></p> <p class="biglink"><a class="biglink" href="{{ pathto("user/numpy-for-matlab-users") }}">NumPy for MATLAB users</a><br/> - <p class="biglink"><a class="biglink" href="{{ pathto("user/tutorials_index") }}">NumPy Tutorials</a><br/> + <p class="biglink"><a class="biglink" href="https://numpy.org/numpy-tutorials/">NumPy Tutorials</a><br/> <span class="linkdescr">Learn about concepts and submodules</span></p> <p class="biglink"><a class="biglink" href="{{ pathto("user/howtos_index") }}">NumPy How Tos</a><br/> <span class="linkdescr">How to do common tasks with NumPy</span></p> diff --git a/doc/source/conf.py b/doc/source/conf.py index 874b5e96a..587307cf9 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -165,6 +165,9 @@ html_theme_options = { "github_url": "https://github.com/numpy/numpy", "twitter_url": "https://twitter.com/numpy_team", "collapse_navigation": True, + "external_links": [ + {"name": "Learn", "url": "https://numpy.org/numpy-tutorials/"} + ], } diff --git a/doc/source/user/index.rst b/doc/source/user/index.rst index 9cfdfa1aa..b3ecc3a95 100644 --- a/doc/source/user/index.rst +++ b/doc/source/user/index.rst @@ -21,7 +21,7 @@ details are found in :ref:`reference`. numpy-for-matlab-users building c-info - NumPy Tutorials <https://numpy.org/numpy-tutorials> + NumPy Tutorials <https://numpy.org/numpy-tutorials/features.html> howtos_index depending_on_numpy diff --git a/doc/source/user/quickstart.rst b/doc/source/user/quickstart.rst index 6143b1a3d..dd5773878 100644 --- a/doc/source/user/quickstart.rst +++ b/doc/source/user/quickstart.rst @@ -1482,4 +1482,4 @@ Further reading - `SciPy Tutorial <https://docs.scipy.org/doc/scipy/reference/tutorial/index.html>`__ - `SciPy Lecture Notes <https://scipy-lectures.org>`__ - A `matlab, R, IDL, NumPy/SciPy dictionary <http://mathesaurus.sf.net/>`__ -- `Linear algebra on n-dimensional arrays (Tutorial) <https://numpy.org/numpy-tutorials/content/tutorial-svd.html>`__ +- :doc:`tutorial-svd <content/tutorial-svd>` |