From d4f1d5411fe2493f523678070bb3e0328d4aed47 Mon Sep 17 00:00:00 2001 From: Damon McDougall Date: Sun, 2 Dec 2012 10:41:33 -0600 Subject: [PATCH] Add citation page to website --- doc/_templates/citing.html | 27 +++++++++++++++++++++++++++ doc/_templates/index.html | 12 ++++++++++++ doc/_templates/layout.html | 1 + 3 files changed, 40 insertions(+) create mode 100644 doc/_templates/citing.html diff --git a/doc/_templates/citing.html b/doc/_templates/citing.html new file mode 100644 index 000000000000..ad5620256882 --- /dev/null +++ b/doc/_templates/citing.html @@ -0,0 +1,27 @@ +{% extends "layout.html" %} +{% set title = "Citing matplotlib" %} +{% block body %} + +

Citing matplotlib

+

+If matplotlib contributes to a project that leads to a scientific publication, +please acknowledge this fact by citing the project. You can use this +BibTeX entry: +

+
+@Article{Hunter:2007,
+  Author    = {Hunter, J. D.},
+  Title     = {Matplotlib: A 2D graphics environment},
+  Journal   = {Computing In Science \& Engineering},
+  Volume    = {9},
+  Number    = {3},
+  Pages     = {90--95},
+  abstract  = {Matplotlib is a 2D graphics package used for Python
+  for application development, interactive scripting, and
+  publication-quality image generation across user
+  interfaces and operating systems.},
+  publisher = {IEEE COMPUTER SOC},
+  year      = 2007
+}
+
+{% endblock %} diff --git a/doc/_templates/index.html b/doc/_templates/index.html index c25b4472883d..b2660716e562 100644 --- a/doc/_templates/index.html +++ b/doc/_templates/index.html @@ -171,6 +171,18 @@

Toolkits

pathto('mpl_toolkits/axes_grid/index') }}">axes_grid and more.

+

Citing matplotlib

+ +

+ matplotlib is the brainchild of John Hunter (1968-2012), who has put an + inordinate amount of effort into producing a piece of software utilized by + thousands of scientists worldwide. + + If matplotlib contributes to a project that leads to a scientific publication, + please acknowledge this fact by citing the project. You can use this + ready-made citation entry. +

+

Open source

Please diff --git a/doc/_templates/layout.html b/doc/_templates/layout.html index 939a9c485606..905af3769199 100644 --- a/doc/_templates/layout.html +++ b/doc/_templates/layout.html @@ -6,6 +6,7 @@

  • search
  • examples
  • gallery
  • +
  • citation
  • docs »
  • {% endblock %}