79731915

Date: 2025-08-11 10:02:49
Score: 1
Natty:
Report link

To answer the first half: If you don't need to ever use the double-less-than symbol, (and double-greater-than) you can simply redefine them using a show-rule:

#show symbol(math.lt.double): symbol(math.angle.l.double)
#show symbol(math.gt.double): symbol(math.angle.r.double)

However, this will change all instances of math.lt.double, not just the ones you get with <<.

It is possible to only apply this change to math-mode, by doing:

#show math.equation: it =>{
  show symbol(math.lt.double): symbol(math.angle.l.double)
  show symbol(math.gt.double): symbol(math.angle.r.double)
  it
}

I don't know how to achieve the second half, replacing +- with ± in math-mode.

Reasons:
  • Blacklisted phrase (1): how to achieve
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: AsgerHB