[Tex/LaTex] Resize Greek letter in an equation

lettersmath-mode

Is there a way to resize Greek letters if they are in an equation?

This is the code of the equation (for example):

\begin{equation}
G_{\mathds{1}\sigma}={\epsilon}({\sigma})\delta_{\mathds{1}},\pi_{\ell}\sigma=1\Rightarrow\qquad\epsilon{\sigma}=1\qquad\pi(\sigma)=\mathds{1}\\
\end{equation}

I would like to make only the \epsilon and the \delta larger.

Best Answer

You can use \mathlarger from the relsize package, but as Heiko has mentioned in his answer, it looks quite odd:

\documentclass{article}

\usepackage{dsfont}
\usepackage{relsize}

\begin{document}

\begin{equation}
  G_{\mathds{1}\sigma} = \mathlarger\epsilon(\sigma)\mathlarger\delta_{\mathds{1}}, \enskip
  \pi_{\ell}\sigma = 1
  \qquad \Longrightarrow \qquad
  \mathlarger\epsilon\sigma = 1, \enskip
  \pi(\sigma) = \mathds{1}
\end{equation}

\end{document}

output

It you want \epsilon and \delta to be larger throughout the entire document and don't have to use them for other stuff in the document, you can use the following:

\documentclass{article}

\usepackage{dsfont}
\usepackage{relsize}

\let\origEpsilon\epsilon
\renewcommand*\epsilon{\mathlarger\origEpsilon}
\let\origDelta\delta
\renewcommand*\delta{\mathlarger\origDelta}

\begin{document}

\begin{equation}
  G_{\mathds{1}\sigma} = \epsilon(\sigma)\delta_{\mathds{1}}, \enskip
  \pi_{\ell}\sigma = 1
  \qquad \Longrightarrow \qquad
  \epsilon\sigma = 1, \enskip
  \pi(\sigma) = \mathds{1}
\end{equation}

\end{document}