This file is indexed.

/usr/share/doc/python-pyx-doc/manual/_sources/intro.txt is in python-pyx-doc 0.12.1-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
.. _intro:

************
Introduction
************

PyX is a Python package for the creation of vector graphics. As such it readily
allows one to generate encapsulated PostScript files by providing an abstraction
of the PostScript graphics model.  Based on this layer and in combination with
the full power of the Python language itself, the user can just code any
complexity of the figure wanted. PyX distinguishes itself from other similar
solutions by its TeX/LaTeX interface that enables one to make direct use of the
famous high quality typesetting of these programs.

A major part of PyX on top of the already described basis is the provision of
high level functionality for complex tasks like 2d plots in publication-ready
quality.


Organisation of the PyX package
===============================

The PyX package is split into several modules, which can be categorised in the
following groups

+----------------------------------+------------------------------------------+
| Functionality                    | Modules                                  |
+==================================+==========================================+
| basic graphics functionality     | :mod:`canvas`, :mod:`path`, :mod:`deco`, |
|                                  | :mod:`style`, :mod:`color`, and          |
|                                  | :mod:`connector`                         |
+----------------------------------+------------------------------------------+
| text output via TeX/LaTeX        | :mod:`text` and :mod:`box`               |
+----------------------------------+------------------------------------------+
| linear transformations and units | :mod:`trafo` and :mod:`unit`             |
+----------------------------------+------------------------------------------+
| graph plotting functionality     | :mod:`graph` (including submodules) and  |
|                                  | :mod:`graph.axis` (including submodules) |
+----------------------------------+------------------------------------------+
| EPS file inclusion               | :mod:`epsfile`                           |
+----------------------------------+------------------------------------------+

These modules (and some other less import ones) are imported into the module
namespace by using   ::

   from pyx import *

at the beginning of the Python program.  However, in order to prevent namespace
pollution, you may also simply use ``import pyx``. Throughout this manual, we
shall always assume the presence of the above given import line.