Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Add citation page to website #1549

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 3, 2012
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions doc/_templates/citing.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{% extends "layout.html" %}
{% set title = "Citing matplotlib" %}
{% block body %}

<h1>Citing matplotlib</h1>
<p>
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:
</p>
<pre>
@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
}
</pre>
{% endblock %}
12 changes: 12 additions & 0 deletions doc/_templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,18 @@ <h1>Toolkits</h1>
pathto('mpl_toolkits/axes_grid/index') }}">axes_grid</a> and more.
</p>

<h1>Citing matplotlib</h1>

<p>
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
<a href="{{ pathto('citing') }}">ready-made citation entry</a>.
</p>

<h1>Open source</h1>

<p>Please
Expand Down
1 change: 1 addition & 0 deletions doc/_templates/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<li><a href="{{ pathto('search') }}">search</a>|&nbsp;</li>
<li><a href="{{ pathto('examples/index') }}">examples</a>|&nbsp;</li>
<li><a href="{{ pathto('gallery') }}">gallery</a>|&nbsp;</li>
<li><a href="{{ pathto('citing') }}">citation</a>|&nbsp;</li>
<li><a href="{{ pathto('contents') }}">docs</a> &raquo;</li>
{% endblock %}

Expand Down