0

Can anybody recognize the font or symbol for this enter image description here. It is used as font for alphabetic letter S, in my text.

I did check almost all fonts and symbols but couldn't succeed in finding a good match. I need this symbol in Latex math mode.

Or a way, to design this symbol by myself to be use in Latex. thanks

kaka
  • 546
  • 2
  • 6
  • 20

1 Answers1

1
% arara: lualatex

\documentclass{article}
\usepackage{fontspec}
\usepackage{unicode-math}

\begin{document}
% search http://tex.stackexchange.com/a/58124 for a mathcal font you like (boondox and boondoxo look similar) and do:
$\mathcal{S}$
% or use LuaLaTeX or XeLaTeX with unicode-math and do:
\setmathfont{Latin Modern Math}$\mscrS$\setmathfont{Cambria Math}$\mscrS$\setmathfont{XITS Math}$\mscrS$
% or search some font on your system http://www.fileformat.info/info/unicode/font/fontlist.htm?text=%F0%9D%92%AE+-+MATHEMATICAL+SCRIPT+CAPITAL+S+%28U%2B1D4AE%29 and use fontspec (Xe- or LuaLaTeX):
\setmainfont{stix-italic.otf}\symbol{"1D4AE}
\end{document}

enter image description here

LaRiFaRi
  • 43,807