xdanaux / moderncv

A modern curriculum vitae class for LaTeX
1.8k stars 556 forks source link

Bullets set too low #15

Open NilsEnevoldsen opened 8 years ago

NilsEnevoldsen commented 8 years ago

Bullets are set too low. This can be observed even in the sample documents, e.g. the bulleted achievements here.

I remember figuring this out years ago, but I don't remember the solution. I seem to recall something about the engine mattering (LuaLaTeX/pdfLatex).

aimtsou commented 8 years ago

This is related to modercvicons{awesome} coming from package{fontawesome}

jayree commented 8 years ago

I'm using this as a workaround...

\let\oldfaCircleO=\faCircleO \renewcommand{\faCircleO}{\protect\raisebox{0.8pt}{\oldfaCircleO}}

aimtsou commented 8 years ago

There is only a workaround unfortunately, since the font is placed too low. I am using almost the same workaround. \renewcommand\labelitemi{% \strut \raisebox{1.45pt}{\textcolor {color1}{\tiny \faCircleO }}}

dkp-1024 commented 6 years ago

Put this snippet of code at the starting of your document.

\renewcommand\labelitemi{
  \strut
  \raisebox{1pt}{\textcolor {color1}{\tiny \faCircleO }}
}

You can adjust the height of bullets by playing around with the number followed by \raisebox.