#gap between text's

7 messages · Page 1 of 1 (latest)

robust path
#

The writings leave a padding below, I couldn't find how to remove it in the document.

#
#text(size: 28pt, rgb(50, 59, 75), weight: "black")[
        Mariana 
        #text(size: 28pt, rgb(50, 59, 75), weight: "light")[Anderson]
      ]

      // Job Title
      #text(size: 16pt, rgb(50, 59, 75), weight: "light")[Software Developer]
hallow jasper
#

That's the paragraph/block spacing. You can either configure it globally with set block(spacing: ..) or if you just want to get rid of it there, insert v(0pt, weak: true) (or some other spacing you desire). The weak: true ensures that the spacing isn't added to the existing spacing, but that is replaces it.

robust path
hallow jasper
robust path