Processing math: 100%
Ask Your Question
0

Is it possible to color a string in a list ?

asked 1 year ago

Cyrille gravatar image

is there a way to color a string inside a list say

L = ["1","2","3"]

and I want to display 2 in red

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
0

answered 1 year ago

rburing gravatar image

updated 1 year ago

If you're using an interface that supports LaTeX output, such as a Jupyter notebook:

sage: show(["1", LatexExpr(r"{\color{red} 2}"), "3"])

[1,2,3]

To automate it, you could do e.g.

sage: show([LatexExpr(r"{\color{red} " + latex(x) + "}") if x == "2" else x for x in L])

or

sage: show([LatexExpr(r"{\color{red} " + latex(x) + "}") if k == 1 else x for k, x in enumerate(L)])
Preview: (hide)
link

Comments

I have tried to adapt your solution to a list of list but I certainly make an error M=[[1, 0],[0,1]] show([[LatexExpr(r"{\color{red} " + x + "}") if k == 1 else x for k, x in enumerate(M[i])]for i in range(len(M))])

Cyrille gravatar imageCyrille ( 1 year ago )

I've updated the answer: use latex(x) in the string concatenation.

rburing gravatar imagerburing ( 1 year ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 1 year ago

Seen: 226 times

Last updated: Mar 15 '24