Re: [sage-support] Re: Use of \Bold in latex methods, and SageTeX

2017-05-08 Thread John Cremona
Thanks John. On 8 May 2017 at 20:45, John H Palmieri wrote: > Hi John, > > Within Sage, you can get the appropriate command with > > > sage: from sage.misc.latex_macros import sage_configurable_latex_macros > sage: sage_configurable_latex_macros > ['\\newcommand{\\Bold}[1]{\\mathbf{#1}}'] > sage:

[sage-support] Re: Use of \Bold in latex methods, and SageTeX

2017-05-08 Thread John H Palmieri
Hi John, Within Sage, you can get the appropriate command with sage: from sage.misc.latex_macros import sage_configurable_latex_macros sage: sage_configurable_latex_macros ['\\newcommand{\\Bold}[1]{\\mathbf{#1}}'] sage: print(sage_configurable_latex_macros[0]) \newcommand{\Bold}[1]{\mathbf{#1}}