# HG changeset patch
# User J. H. Palmieri <palmieri@math.washington.edu>
# Date 1250804800 25200
# Node ID 28d15d32f8ebf257800ef7a10f21322644267bd4
# Parent 987595c34159f375a93efe5579e134e262465396
ref patch for #6673
diff -r 987595c34159 -r 28d15d32f8eb doc/common/static/jsmath_sage.js
a
|
b
|
|
140 | 140 | // bold: ['{\\bf #1}', 1] |
141 | 141 | // } |
142 | 142 | // |
143 | | // Sage-specific jsMath macros. |
| 143 | // Sage-specific jsMath macros -- see sage/misc/latex_macros.py. |
144 | 144 | macros: { |
145 | 145 | ZZ : '{\\Bold{Z}}', |
146 | 146 | RR : '{\\Bold{R}}', |
diff -r 987595c34159 -r 28d15d32f8eb sage/misc/latex_macros.py
a
|
b
|
|
151 | 151 | # documentation), and look at the resulting tex file in |
152 | 152 | # SAGE_DOC/output/latex/en/tutorial. The preamble should contain |
153 | 153 | # \newcommand's for each of the entries here. |
| 154 | # |
| 155 | # WARNING: if you change the following list, then you should make |
| 156 | # corresponding changes to sage/doc/common/static/jsmath_sage.js, a |
| 157 | # javascript file used when building the documentation. (Search for |
| 158 | # "macros:" in that file.) |
154 | 159 | macros = [["ZZ"], |
155 | 160 | ["RR"], |
156 | 161 | ["CC"], |