How to prevent emoji from increasing line spacing?

I have an emoji inside a paragraph.

#set text(font: "New Computer Modern", size: 10pt)

#lorem(50) 😂 #lorem(50)

And the problem is that it increases line spacing. How to prevent this from happening?

image

you can set the text top-edge and bottom-edge to be e.g. "ascender" (or a fixed length) to make line spacing more consistent:

#set text(
  font: "New Computer Modern",
  size: 10pt,
  top-edge: "ascender"
)

#lorem(50) 😂 #lorem(50)

image

1 Like