-
-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Overhaul documentation (pydata_sphinx_theme) (#432)
* try pydata_sphinx_theme * tidy up conf.py * remove search templates * add citing page * minify svg logos * tidy index.rst * update faq * improve pages * add sphinx_design * add styles * add 404 pages * update build instructions * formatting
- Loading branch information
Showing
17 changed files
with
247 additions
and
391 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* -------------------- THEME OVERRIDES -------------------- */ | ||
|
||
html[data-theme="light"], | ||
html[data-theme="dark"] { | ||
--pst-color-primary: #4583ec; | ||
--pst-color-secondary: #d46700; | ||
--pst-color-table-row-zebra-low-bg: var(--bs-table-bg); | ||
--pst-color-table-row-hover-bg: transparent; | ||
--pst-color-inline-code: var(--pst-color-text-base); | ||
} | ||
|
||
html[data-theme="light"] { | ||
--pst-color-inline-code-links: #00358f; | ||
} | ||
|
||
html[data-theme="dark"] { | ||
--pst-color-inline-code-links: #00caeb; | ||
} | ||
|
||
#pst-back-to-top:hover { | ||
background-color: #a95200; | ||
} | ||
|
||
table caption { | ||
text-align: left; | ||
} | ||
|
||
/* -------------------- NAV BAR-------------------- */ | ||
|
||
html[data-theme="dark"] .navbar-brand p { | ||
color: white; | ||
} | ||
|
||
html[data-theme="dark"] .navbar-brand img { | ||
filter: invert(1); | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,8 +5,6 @@ | |
Functions | ||
######### | ||
|
||
.. contents:: Table of Contents | ||
:depth: 2 | ||
|
||
ANOVA and T-test | ||
---------------- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
.. _citing: | ||
|
||
Citation and logo | ||
################# | ||
|
||
Citing | ||
****** | ||
|
||
If you want to cite Pingouin, please use the publication in JOSS: | ||
|
||
Vallat, R. (2018). Pingouin: statistics in Python. *Journal of Open Source Software*, 3(31), 1026, `https://doi.org/10.21105/joss.01026 <https://doi.org/10.21105/joss.01026>`_ | ||
|
||
Here is a ready-made BibTeX entry: | ||
|
||
.. highlight:: none | ||
|
||
:: | ||
|
||
@article{Vallat2018, | ||
title = {Pingouin: statistics in Python}, | ||
volume = {3}, | ||
DOI = {10.21105/joss.01026}, | ||
number = {31}, | ||
journal = {Journal of Open Source Software}, | ||
publisher = {The Open Journal}, | ||
author = {Vallat, Raphael}, | ||
year = {2018}, | ||
month = nov, | ||
pages = {1026} | ||
} | ||
|
||
|
||
Logo | ||
**** | ||
|
||
Wide logo | ||
========= | ||
.. figure:: /pictures/logo_pingouin.png | ||
:align: left | ||
:alt: pingouin logo | ||
|
||
Quadratic logo | ||
============== | ||
.. figure:: /pictures/pingouin.png | ||
:align: left | ||
:alt: pingouin logo quadratic | ||
|
Oops, something went wrong.