[Tex/LaTex] How to fit a large equation that goes out of the page

equations

I have the following equation

\begin{equation}
    Ep = (Required Personality Level of Each Resource - Assigned Personality 
    Level of each Resources) \times (da\textsubscript{i})
\end{equation}

but it is too large as is.
How should I write it so it can fit nicely on the page?

Best Answer

Mathematical symbols where created to represent the meaning of longer descriptive words in a short form for easy inclusion in complex formulas with possible repetition. I would choose a suitable symbol/character to represent that long sentence like this (choose your own descriptive symbol):

\documentclass{article}
\begin{document}

\begin{equation}
  Ep = P_l \times da_i,
\end{equation}
%
where $P_l =$ Required Personality Level of Each Resource-Assigned Personality Level of all Resources

\end{document}

enter image description here

Related Question