mscroggs / realhats

realhats LaTeX package
http://www.realhats.xyz
MIT License
104 stars 2 forks source link

how to remove distance between letters and remove italic format? #29

Closed m43stro closed 1 year ago

m43stro commented 1 year ago

First of all, thanks for the great package gentleman!

Now the issue: I tried it in one word:

\hat[crown]{B}OX

The results looks like this:

crown realhats latex usage

using it with: \documentclass[11pt]{article}

Packages:

mscroggs commented 1 year ago

The italic can be removed by doing \hat[crown]{\text{B}} (the hats assume math mode)

You could hackily remove the spacing by using negative hspace. I'll look into whether we can do this in a non hacky way

m43stro commented 1 year ago

thank you @mscroggs

\kern-1em \hat[crown]{\text{B}} \kern-0.8em

fixed in a hacky way my issue