4

I wish to use such a symbol in an itemize environment.

I found these symbols: \triangleright and \rhd from this question. Here is a MWE:

\documentclass[oneside,11pt]{book}

\usepackage[semibold,tt=false]{libertine} \usepackage{libertinust1math} \usepackage{enumitem}

\begin{document}

\begin{itemize}[label=$\triangleright$] \item A \item B \end{itemize}

\begin{itemize}[label=$\rhd$] \item A \item B \end{itemize}

\end{document}

mwe

Can you please help me find closed analogues of the above?

Andrew
  • 1,249

1 Answers1

5

Something like this?

\documentclass{article}
\usepackage[semibold,tt=false]{libertine}
\usepackage{libertinust1math}
\usepackage{enumitem}
\begin{document}
\begin{itemize}[label=\(\blacktriangleright\)]
    \item A
    \item B
\end{itemize}
\end{document}
Vincent
  • 20,157
  • Perfect. Thank you. Should I put it in math mode? – Andrew Nov 30 '20 at 20:36
  • Also, where did you find it? Did you find it in that collection of 15,000 symbols? – Andrew Nov 30 '20 at 20:37
  • 2
    It is one of the AMS symbols. – Bernard Nov 30 '20 at 20:42
  • 1
    @Andrew Yes you should put it in math mode, otherwise you will get an error. In my answer it is in math mode since it is between \( and \). In this case I must say I simply remembered the command, but in general to find standard symbols you can try detexify. – Vincent Nov 30 '20 at 20:48