
Existe uma maneira no Latex de obter um símbolo representando um trevo de quatro folhas? Em outras palavras, procuro um equivalente, \clubsuit
mas com quatro folhas.
Responder1
Como mencionado nos comentários, obbding
O pacote fornece dois símbolos de trevo de quatro folhas. Outra opção dotwemojis
o pacote também é fornecido.
\documentclass{article}
\usepackage{bbding,twemojis}
\begin{document}
\texttt{bbding}:
\begin{tabular}{rl}
\verb|\FourClowerOpen| & \FourClowerOpen \\
\verb|\FourClowerSolid| & \FourClowerSolid
\end{tabular}
\bigskip
\texttt{twemojis}:
\begin{tabular}{rl}
\verb|\twemoji{four leaf clover}| & \twemoji{four leaf clover}
\end{tabular}
\end{document}