:orphan: .. Some of the content of this page is derived from pydata-sphinx-theme under .. the following license: .. BSD 3-Clause License .. Copyright (c) 2018, pandas .. All rights reserved. .. Redistribution and use in source and binary forms, with or without .. modification, are permitted provided that the following conditions are met: .. * Redistributions of source code must retain the above copyright notice, this .. list of conditions and the following disclaimer. .. * Redistributions in binary form must reproduce the above copyright notice, .. this list of conditions and the following disclaimer in the documentation .. and/or other materials provided with the distribution. .. * Neither the name of the copyright holder nor the names of its .. contributors may be used to endorse or promote products derived from .. this software without specific prior written permission. .. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" .. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE .. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE .. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE .. FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL .. DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR .. SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER .. CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, .. OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE .. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. This page does not contain any Ocean content - it is used for testing aspects of the theme. ----- Title ----- ~~~~~~~~ Subtitle ~~~~~~~~ Subsubtitle ~~~~~~~~ Subsubsubtitle ______________ ------------- Inline Markup ------------- Paragraphs contain text and may contain inline markup: *emphasis*, **strong emphasis**, ``inline literals``, standalone hyperlinks (http://www.python.org), external hyperlinks (Python_), internal cross-references (Title_), external hyperlinks with embedded URIs (`Python web site `__), footnote references (manually numbered [1]_, anonymous auto-numbered [#]_, labeled auto-numbered [#label]_, or symbolic [*]_), and citation references ([12]_). Character-level inline markup is also possible (although exceedingly ugly!) in *re*\ ``Structured``\ *Text*. Problems are indicated by |problematic| text (generated by processing errors; this one is intentional). --------- Footnotes --------- .. [1] A footnote contains body elements, consistently indented by at least 3 spaces. This is the footnote's second paragraph. .. [#label] Footnotes may be numbered, either manually (as in [1]_) or automatically using a "#"-prefixed label. This footnote has a label so it can be referred to from multiple places, both as a footnote reference ([#label]_) and as a hyperlink reference (label_). .. [#] This footnote is numbered automatically and anonymously using a label of "#" only. .. [*] Footnotes may also use symbols, specified with a "*" label. Here's a reference to the next footnote: [*]_. .. [*] This footnote shows the next symbol in the sequence. .. [4] Here's an unreferenced footnote, with a reference to a nonexistent footnote: [5]_. --------- Citations --------- .. [11] This is the citation I made, let's make this extremely long so that we can tell that it doesn't follow the normal responsive table stuff. .. [12] This citation has some ``code blocks`` in it, maybe some **bold** and *italics* too. Heck, lets put a link to a meta citation [13]_ too. .. [13] This citation will have two backlinks. ---- Math ---- This is a test. Here is an equation: :math:`X_{0:5} = (X_0, X_1, X_2, X_3, X_4)`. Here is another: .. math:: :label: This is a label \nabla^2 f = \frac{1}{r^2} \frac{\partial}{\partial r} \left( r^2 \frac{\partial f}{\partial r} \right) + \frac{1}{r^2 \sin \theta} \frac{\partial f}{\partial \theta} \left( \sin \theta \, \frac{\partial f}{\partial \theta} \right) + \frac{1}{r^2 \sin^2\theta} \frac{\partial^2 f}{\partial \phi^2} You can add a link to equations like the one above :eq:`This is a label` by using ``:eq:``. ------ Python ------ Code block .. code-block:: python print('Hello world') Example >>> print('Hello world') Hello world ----------- Admonitions ----------- .. Attention:: Directives at large. .. Caution:: Don't take any wooden nickels. .. DANGER:: Mad scientist at work! .. Error:: Does not compute. .. Hint:: It's bigger than a bread box. .. Important:: - Wash behind your ears. - Clean up your room. - Including the closet. - The bathroom too. - Take the trash out of the bathroom. - Clean the sink. - Call your mother. - Back up your data. .. Note:: This is a note. Equations within a note: :math:`G_{\mu\nu} = 8 \pi G (T_{\mu\nu} + \rho_\Lambda g_{\mu\nu})`. .. Tip:: 15% if the service is good. +---------+ | Example | +=========+ | Thing1 | +---------+ | Thing2 | +---------+ | Thing3 | +---------+ .. WARNING:: Strong prose may provoke extreme mental exertion. Reader discretion is strongly advised. .. admonition:: And, by the way... You can make up your own admonition too. ------------ Deprecations ------------ .. versionadded:: v0.1 This is a version added message. .. versionchanged:: v0.2 This is a version changed message. .. deprecated:: v0.3 This is a deprecation message.