Merge docs repo
[cython.git] / docs / src / tutorial / data.py
1 {
2  'title': 'Cython Tutorial',
3  'paper_abstract': '''
4 Cython is a programming language based on Python with extra
5 syntax to provide static type declarations. This takes advantage of the 
6 benefits of Python while allowing one to achieve the speed of C. 
7 In this paper we describe the Cython language and show how it can 
8 be used both to write optimized code and to interface with external 
9 C libraries. 
10 ''',
11  'authors': [
12      {'first_names': 'Stefan',
13       'surname': 'Behnel',
14       'address': '',
15       'country': 'Germany',
16       'email_address': 'stefan\_ml@behnel.de',
17       'institution': ''},
18      {'first_names': 'Robert W.',
19       'surname': 'Bradshaw',
20       'address': '',
21       'country': 'USA',
22       'email_address': 'robertwb@math.washington.edu',
23       'institution': '''University of Washington\\footnote{
24         Department of Mathematics, University of Washington, Seattle, WA, USA
25       }'''},
26      {'first_names': 'Dag Sverre',
27       'surname': 'Seljebotn',
28       'address': '',
29       'country': 'Norway',
30       'email_address': 'dagss@student.matnat.uio.no',
31       # I need three institutions w/ full address... leave it
32       # all here until we get to editing stage
33       'institution': '''University of Oslo\\footnote{Institute of Theoretical Astrophysics,
34         University of Oslo, P.O. Box 1029 Blindern, N-0315 Oslo, Norway}\\footnote{Department
35         of Mathematics, University of Oslo, P.O. Box 1053 Blindern,
36         N-0316 Oslo, Norway}\\footnote{Centre of Mathematics for
37         Applications, University of Oslo, P.O. Box 1053 Blindern, N-0316
38         Oslo, Norway}'''}
39  ],
40 }