[Tex/LaTex] How to insert Greek letters (having trouble with \greekletter)

greek

This is my code:

\begin{equations}
\begin{align}
\lamba = \frac{x}{2}
\end{align}
\end{equations}

But \lamba appears just as a blank space.

Best Answer

You would find comprehensive documentation online about typesetting equations. You can also Google for examples, you'll find several examples along with explanation. One such compilation is by Stefan M. Moser.

Below is a MWE to help you get started.

You would have to use the amsmath package.

To typeset inline equations, you may use the LaTeX shorthand \(...\) or the Tex shorthand $...$. For numbered equations, you would have to use the equation environment. See below for examples:

\documentclass{article}
\usepackage{amsmath}

\begin{document}
We can use the \LaTeX~shorthand for inline equations such as \( \alpha = \beta +
\gamma + \lambda \).

For numbered equations we can use the \texttt{equation} environment.
  \begin{equation}
    \alpha = \beta + \gamma + \lambda
  \end{equation}

If we do not want the equations to be numbered, we may use the
\texttt{equation*} environment.
    \begin{equation*}
    \alpha = \beta + \gamma + \lambda
  \end{equation*}

The \texttt{align} and/or \texttt{eqnarray} environment is used to group together multiple
equations and align them using \texttt{\&}
\begin{align}
    \alpha &= \beta + \gamma * \lambda \\
    \theta &= \frac{\alpha}{4}
\end{align} 
\end{document}

screenshot