This question is based off the answer for the How to write a perfect equation parameters description? question:
I would like to have the parameters defined using \singlespacing as I am currently using \doublespacing for my thesis spacing. Both the suggested conditions and conditions* environments have proven of great use and I have also attempted to adapt the conditions* to reflect the no break after where: variant which I wish to implement.
Defining \singlespacing as I have done causes the conditions to have an unwanted indent and a missing \endgroup inserted error though visually it works
Defining the conditions* as I have done by adapting the above-mentioned variant also causes an unwanted indent and I cannot work out how to insert the \singlespacing parameter without causing errors.
Here is my MWE with all my modifications made:
\documentclass{scrreprt}
\usepackage{array,tabularx}
\usepackage{setspace}
\doublespace
\newenvironment{conditions}[1][where:]
{\singlespace#1 \begin{tabular}[t]{>{$}l<{$} @{${}:{}$} l}}
{\doublespace\end{tabular}\\[\belowdisplayskip]}
\newenvironment{conditions*}[1][where:]
{#1 \begin{tabular}[t]{>{$}l<{$} @{}>{${}}c<{{}$}@{} l}}
{\end{tabular}\\[\belowdisplayskip]}
\begin{document}
An equation just to start
\begin{equation}
P+N=S_{d}
\end{equation}
\begin{conditions}
P & notional permeability factor \\
N & number of waves \\
S_{d} & damage level
\end{conditions}
Some text after the equation.
Another equation with symbols
\begin{equation}
P+N=S_{d}
\end{equation}
\begin{conditions*}
P & : & notional permeability factor \\
N & \sim & number of waves \\
S_{d} & \propto & damage level
\end{conditions*}
and so this is where we continue with some more text after the equation.
\end{document}

\doublespacingwith thesetspacepackage explaining that the\linespread{1.5}command was more trouble than its worth. I am still none the wiser. Thank you for all. – Fiztban Jan 29 '15 at 18:21kpfontsand my text is in Roman\fontfamily{jkp}how do I allow the second column inconditionsand third column inconditions*to be in romanjkpfont? – Fiztban Feb 25 '15 at 15:28