Skip to content

Commit f99dc67

Browse files
committed
fix LaTeX macro in docstrings
1 parent fd8331c commit f99dc67

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/sage/schemes/elliptic_curves/ell_finite_field.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1426,7 +1426,7 @@ def twists(self):
14261426
14271427
In characteristic 3, the number of twists is 2 except for
14281428
`j=0=1728`, when there are either 4 or 6 depending on whether the
1429-
field has odd or even degree over `\FF_3`::
1429+
field has odd or even degree over `\GF{3}`::
14301430
14311431
sage: K = GF(3**5)
14321432
sage: [E.ainvs() for E in EllipticCurve(j=K(1)).twists()]
@@ -1454,7 +1454,7 @@ def twists(self):
14541454
14551455
In characteristic 2, the number of twists is 2 except for
14561456
`j=0=1728`, when there are either 3 or 7 depending on whether the
1457-
field has odd or even degree over `\FF_2`::
1457+
field has odd or even degree over `\GF{2}`::
14581458
14591459
sage: K = GF(2**7)
14601460
sage: [E.ainvs() for E in EllipticCurve(j=K(1)).twists()]
@@ -1553,7 +1553,7 @@ def curves_with_j_0(K):
15531553
15541554
Examples:
15551555
1556-
For `K=\FF_q` where `q\equiv1\mod{6}` there are six curves, the sextic twists of `y^2=x^3+1`::
1556+
For `K=\GF{q}` where `q\equiv1\mod{6}` there are six curves, the sextic twists of `y^2=x^3+1`::
15571557
15581558
sage: from sage.schemes.elliptic_curves.ell_finite_field import curves_with_j_0
15591559
sage: sorted(curves_with_j_0(GF(7)), key = lambda E: E.a_invariants())
@@ -1571,7 +1571,7 @@ def curves_with_j_0(K):
15711571
Elliptic Curve defined by y^2 = x^3 + (2*z2+2) over Finite Field in z2 of size 5^2,
15721572
Elliptic Curve defined by y^2 = x^3 + (4*z2+1) over Finite Field in z2 of size 5^2]
15731573
1574-
For `K=\FF_q` where `q\equiv5\mod{6}` there are two curves,
1574+
For `K=\GF{q}` where `q\equiv5\mod{6}` there are two curves,
15751575
quadratic twists of each other by `-3`: `y^2=x^3+1` and
15761576
`y^2=x^3-27`::
15771577
@@ -1614,7 +1614,7 @@ def curves_with_j_1728(K):
16141614
16151615
Examples:
16161616
1617-
For `K=\FF_q` where `q\equiv1\mod{4} there are four curves, the quartic twists of `y^2=x^3+x`::
1617+
For `K=\GF{q}` where `q\equiv1\mod{4} there are four curves, the quartic twists of `y^2=x^3+x`::
16181618
16191619
sage: from sage.schemes.elliptic_curves.ell_finite_field import curves_with_j_1728
16201620
sage: sorted(curves_with_j_1728(GF(5)), key = lambda E: E.a_invariants())
@@ -1628,7 +1628,7 @@ def curves_with_j_1728(K):
16281628
Elliptic Curve defined by y^2 = x^3 + (z2+4)*x over Finite Field in z2 of size 7^2,
16291629
Elliptic Curve defined by y^2 = x^3 + (5*z2+4)*x over Finite Field in z2 of size 7^2]
16301630
1631-
For `K=\FF_q` where `q\equiv3\mod{4} there are two curves,
1631+
For `K=\GF{q}` where `q\equiv3\mod{4} there are two curves,
16321632
quadratic twists of each other by `-1`: `y^2=x^3+x` and
16331633
`y^2=x^3-x`::
16341634
@@ -1664,12 +1664,12 @@ def curves_with_j_0_char2(K):
16641664
.. NOTE::
16651665
16661666
The number of twists is either 3 or 7 depending on whether
1667-
the field has odd or even degree over `\FF_2`. See
1667+
the field has odd or even degree over `\GF{2}`. See
16681668
[Connell1999]_, pages 429-431.
16691669
16701670
Examples:
16711671
1672-
In odd degree, there are three isomorphism classes all with representatives defined over `\FF_2`::
1672+
In odd degree, there are three isomorphism classes all with representatives defined over `\GF{2}`::
16731673
16741674
sage: from sage.schemes.elliptic_curves.ell_finite_field import curves_with_j_0_char2
16751675
sage: K = GF(2**7)
@@ -1751,7 +1751,7 @@ def curves_with_j_0_char3(K):
17511751
.. NOTE::
17521752
17531753
The number of twists is either 4 or 6 depending on whether
1754-
the field has odd or even degree over `\FF_3`. See
1754+
the field has odd or even degree over `\GF{3}`. See
17551755
[Connell1999]_, pages 429-431.
17561756
17571757
Examples:

0 commit comments

Comments
 (0)