0

I wonder how can I have these kind of D's in latex ?

enter image description here

1 Answers1

4

The first one is available through package txfonts. The second one is like \DJ (package fontenc required). Also a poor's-man approximation can be made:

\documentclass{article}
\usepackage{txfonts}
\usepackage[T1]{fontenc}
\def\otherD{\rlap{\hskip.2ex\rule[.65ex]{1.4ex}{.5pt}}\emph{D}}

\begin{document}
$\mathcal{D}$ \emph{\DJ} \otherD{}
\end{document}

Result

JLDiaz
  • 55,732