1

How could I use a small 'y' symbol like greek in overleaf (latex)?

enter image description here

X seems like chi, however, I couldn't find greek 'y'.

The symbols are written in the page 40 of a book 2nd ed. 'The Elements of Statistical Learning -Data Mining, Inference, and Prediction'.

Hyunseung Kim
  • 493
  • 1
  • 6
  • 17

3 Answers3

4

As already mentioned in the other answer, the small greek gamma comes very close...
On second thought it looks like the "classic" x and y in somekind of math font, due to the italic like representation. The following should do the trick:

\documentclass{article}
\usepackage{eucal}

\begin{document}
  \[\CMcal{X,Y}\]
\end{document}

With the result:

enter image description here
In case you are looking for a mathematical symbol or any symbol in latex, have a look at Detexify. This tool comes in very handy, if you have to classify a symbol;-)

sebo1234
  • 608
  • 5
  • 18
-2

It's \gamma. That should work!

samuelnehool
  • 147
  • 15
-2

You may try to use math font packages.

enter image description here

\usepackage{amsmath}
\usepackage{amsfonts, eucal, mathrsfs}
\usepackage{amssymb}
\usepackage{calligra}
\usepackage{calrsfs}
\usepackage[mathscr]{euscript}
\usepackage{xparse}

$\mathcal{X, Y}$
$\mathbf{X, Y}$
$\mathrm{X, Y}$
$\mathds{X, Y}$
$\mathfrak{X, Y}$
$\mathbb{X, Y}$
$\mathbf{X, Y}$
$\mathit{X, Y}$
$\mathrm{X, Y}$
$\mathscr{X, Y}$
$\mathsf{X, Y}$
Hyunseung Kim
  • 493
  • 1
  • 6
  • 17