Changeset 7279:a2b7fe8a6ac0


Ignore:
Timestamp:
11/03/07 15:06:50 (6 years ago)
Author:
Mike Hansen <mhansen@…>
Branch:
default
Children:
7280:6cf033099a24, 7330:66f1b1def3aa, 8361:9944c60981f8
Tags:
2.8.12.alpha1
Message:

Documentation fixes -- #1087

Location:
sage
Files:
36 edited

Legend:

Unmodified
Added
Removed
  • sage/algebras/free_algebra_element.py

    r7242 r7279  
    7979 
    8080    def _latex_(self): 
    81         """ 
     81        r""" 
    8282        Return latex representation of self. 
    8383 
  • sage/combinat/alternating_sign_matrix.py

    r6439 r7279  
     1r""" 
     2Alternating Sign Matrices 
     3""" 
    14#***************************************************************************** 
    25#       Copyright (C) 2007 Mike Hansen <mhansen@gmail.com>,  
  • sage/combinat/cartesian_product.py

    r6439 r7279  
     1r""" 
     2Cartesian Products 
     3""" 
    14#***************************************************************************** 
    25#       Copyright (C) 2007 Mike Hansen <mhansen@gmail.com>,  
  • sage/combinat/choose_nk.py

    r7201 r7279  
     1""" 
     2Alternating sign matrices 
     3""" 
     4#***************************************************************************** 
     5#       Copyright (C) 2007 Mike Hansen <mhansen@gmail.com>,  
     6# 
     7#  Distributed under the terms of the GNU General Public License (GPL) 
     8# 
     9#    This code is distributed in the hope that it will be useful, 
     10#    but WITHOUT ANY WARRANTY; without even the implied warranty of 
     11#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
     12#    General Public License for more details. 
     13# 
     14#  The full text of the GPL is available at: 
     15# 
     16#                  http://www.gnu.org/licenses/ 
     17#***************************************************************************** 
    118from sage.rings.arith import binomial 
    219import random as rnd 
  • sage/combinat/combination.py

    r7201 r7279  
     1r""" 
     2Combinations 
     3""" 
    14#***************************************************************************** 
    25#       Copyright (C) 2007 Mike Hansen <mhansen@gmail.com>,  
  • sage/combinat/combinatorial_algebra.py

    r7201 r7279  
     1r""" 
     2Combinatorial Algebras 
     3""" 
    14#***************************************************************************** 
    25#       Copyright (C) 2007 Mike Hansen <mhansen@gmail.com>,  
  • sage/combinat/composition.py

    r6594 r7279  
     1r""" 
     2Compositions 
     3""" 
    14#***************************************************************************** 
    25#       Copyright (C) 2007 Mike Hansen <mhansen@gmail.com>,  
  • sage/combinat/composition_signed.py

    r6439 r7279  
     1r""" 
     2Signed Compositions 
     3""" 
    14#***************************************************************************** 
    25#       Copyright (C) 2007 Mike Hansen <mhansen@gmail.com>,  
  • sage/combinat/dyck_word.py

    r6594 r7279  
     1r""" 
     2Dyck Words 
     3""" 
     4#***************************************************************************** 
     5#       Copyright (C) 2007 Mike Hansen <mhansen@gmail.com>,  
     6# 
     7#  Distributed under the terms of the GNU General Public License (GPL) 
     8# 
     9#    This code is distributed in the hope that it will be useful, 
     10#    but WITHOUT ANY WARRANTY; without even the implied warranty of 
     11#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
     12#    General Public License for more details. 
     13# 
     14#  The full text of the GPL is available at: 
     15# 
     16#                  http://www.gnu.org/licenses/ 
     17#***************************************************************************** 
     18 
    119import sage.combinat.misc as misc 
    220from combinat import catalan_number 
  • sage/combinat/finite_class.py

    r7201 r7279  
     1r""" 
     2Finite Combinatorial Classes 
     3""" 
    14#***************************************************************************** 
    25#       Copyright (C) 2007 Mike Hansen <mhansen@gmail.com>,  
  • sage/combinat/graph_path.py

    r6594 r7279  
     1r""" 
     2Paths in Directed Acyclic Graphs 
     3""" 
    14#***************************************************************************** 
    25#       Copyright (C) 2007 Mike Hansen <mhansen@gmail.com>,  
  • sage/combinat/hecke_algebra.py

    r7201 r7279  
     1r""" 
     2Hecke Algebra 
     3""" 
    14#***************************************************************************** 
    25#       Copyright (C) 2007 Mike Hansen <mhansen@gmail.com>,  
  • sage/combinat/integer_list.py

    r6439 r7279  
     1r""" 
     2Tools for generating lists of integers in lexicographic order. 
     3""" 
    14#***************************************************************************** 
    25#       Copyright (C) 2007 Mike Hansen <mhansen@gmail.com>,  
  • sage/combinat/kfpoly.py

    r7201 r7279  
     1r""" 
     2Kostka-Foulkes Polynomials 
     3""" 
    14#***************************************************************************** 
    25#       Copyright (C) 2007 Mike Hansen <mhansen@gmail.com>,  
  • sage/combinat/misc.py

    r6594 r7279  
     1r""" 
     2Miscellaneous 
     3""" 
    14#***************************************************************************** 
    25#       Copyright (C) 2007 Mike Hansen <mhansen@gmail.com>,  
  • sage/combinat/necklace.py

    r6439 r7279  
    11""" 
     2Necklaces 
     3 
     4 
     5Algorithm from 
    26 
    37A fast algorithm to generate necklaces with fixed content 
  • sage/combinat/partition.py

    r6959 r7279  
     1r""" 
     2Partitions 
     3""" 
    14#***************************************************************************** 
    25#       Copyright (C) 2007 Mike Hansen <mhansen@gmail.com>,  
  • sage/combinat/partition_algebra.py

    r6908 r7279  
     1r""" 
     2Partition/Diagram Algebras 
     3""" 
    14#***************************************************************************** 
    25#       Copyright (C) 2007 Mike Hansen <mhansen@gmail.com>,  
  • sage/combinat/permutation.py

    r7210 r7279  
     1r""" 
     2Permutations 
     3""" 
    14#***************************************************************************** 
    25#       Copyright (C) 2007 Mike Hansen <mhansen@gmail.com>,  
  • sage/combinat/q_analogues.py

    r6594 r7279  
     1r""" 
     2q-Analogues 
     3""" 
    14#***************************************************************************** 
    25#       Copyright (C) 2007 Mike Hansen <mhansen@gmail.com>,  
  • sage/combinat/ribbon.py

    r7201 r7279  
     1r""" 
     2Ribbon Tableaux 
     3""" 
    14#***************************************************************************** 
    25#       Copyright (C) 2007 Mike Hansen <mhansen@gmail.com>,  
  • sage/combinat/schubert_polynomial.py

    r7210 r7279  
    1  
     1r""" 
     2Schubert Polynomials 
     3""" 
    24#***************************************************************************** 
    35#       Copyright (C) 2007 Mike Hansen <mhansen@gmail.com>,  
  • sage/combinat/set_partition.py

    r6594 r7279  
     1r""" 
     2Set Partitions 
     3""" 
    14#***************************************************************************** 
    25#       Copyright (C) 2007 Mike Hansen <mhansen@gmail.com>,  
  • sage/combinat/set_partition_ordered.py

    r6439 r7279  
     1r""" 
     2Ordered Set Partitions 
     3""" 
    14#***************************************************************************** 
    25#       Copyright (C) 2007 Mike Hansen <mhansen@gmail.com>,  
  • sage/combinat/sfa.py

    r7207 r7279  
    7878h[10] 
    7979 
    80 #Print style 
    8180sage: P3 = Partitions(3) 
    8281sage: P3.list() 
     
    18151814 
    18161815    def transition_matrix(self, basis, n ): 
    1817         """ 
    1818         Returns the transition matrix between the n^th homogeneous 
     1816        r""" 
     1817        Returns the transition matrix between the $n^th$ homogeneous 
    18191818        component of self and basis. 
    1820  
    1821          
    18221819        """ 
    18231820        if n not in self._transition_matrices: 
  • sage/combinat/skew_partition.py

    r7201 r7279  
     1r""" 
     2Skew Partitions 
     3""" 
    14#***************************************************************************** 
    25#       Copyright (C) 2007 Mike Hansen <mhansen@gmail.com>,  
  • sage/combinat/skew_tableau.py

    r7201 r7279  
     1r""" 
     2Skew Tableaux 
     3""" 
    14#***************************************************************************** 
    25#       Copyright (C) 2007 Mike Hansen <mhansen@gmail.com>,  
  • sage/combinat/subset.py

    r6594 r7279  
     1r""" 
     2Subsets 
     3""" 
    14#***************************************************************************** 
    25#       Copyright (C) 2007 Mike Hansen <mhansen@gmail.com>,  
  • sage/combinat/subword.py

    r6439 r7279  
     1r""" 
     2Subwords 
     3""" 
    14#***************************************************************************** 
    25#       Copyright (C) 2007 Mike Hansen <mhansen@gmail.com>,  
  • sage/combinat/symmetric_group_algebra.py

    r7201 r7279  
     1r""" 
     2Symmetric Group Algebra 
     3""" 
    14#***************************************************************************** 
    25#       Copyright (C) 2007 Mike Hansen <mhansen@gmail.com>,  
  • sage/combinat/tableau.py

    r7201 r7279  
     1r""" 
     2Tableaux 
     3""" 
    14#***************************************************************************** 
    25#       Copyright (C) 2007 Mike Hansen <mhansen@gmail.com>,  
  • sage/combinat/tools.py

    r6439 r7279  
     1r""" 
     2Tools 
     3""" 
    14#***************************************************************************** 
    25#       Copyright (C) 2007 Mike Hansen <mhansen@gmail.com>,  
  • sage/combinat/tuple.py

    r6439 r7279  
     1r""" 
     2Tuples 
     3""" 
    14#***************************************************************************** 
    25#       Copyright (C) 2007 Mike Hansen <mhansen@gmail.com>,  
  • sage/combinat/word.py

    r7201 r7279  
     1r""" 
     2Words 
     3""" 
    14#***************************************************************************** 
    25#       Copyright (C) 2007 Mike Hansen <mhansen@gmail.com>,  
  • sage/misc/latex.py

    r7242 r7279  
    614614 
    615615def latex_variable_name(x): 
    616     """ 
     616    r""" 
    617617    Return latex version of a variable name. 
    618618 
     
    621621    2)  If the variable name is suffixed by a number, we put the number in the subscript. 
    622622    3)  If the variable name contains an '_' we start the subscript at the underscore. 
    623         Note that #3 trumps rule #2. 
     623        Note that \#3 trumps rule \#2. 
    624624    4)  If a component of the variable is a greek letter, escape it properly. 
    625625    5)  Recurse nicely with subscripts. 
  • sage/rings/polynomial/polynomial_ring.py

    r7242 r7279  
    378378 
    379379    def _latex_(self): 
    380         """ 
     380        r""" 
    381381        EXAMPLES: 
    382382            sage: S.<alpha12>=ZZ[] 
Note: See TracChangeset for help on using the changeset viewer.