I have a problem regarding changing values of parameters of linguex. In the documentation it says that you can change the value of \Extopsep, which is responsible for spacing before and after the enviroment. I tried this with \setlength{\Extopsep}{.3\baselineskip}. Could there maybe be a problem with the package setspace in combination with linguex which i am using too?
This is how my Programm looks
\documentclass[12pt, a4paper]{article}
\usepackage{setspace}
\usepackage{linguex}
\let\eachwordone=\it
\setlength{\Extopsep}{.3\baselineskip}
\begin{document}
\begin{spacing}{1.5}
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.
\exg.
At vero eos et accusam \
et justo duo dolores et \
ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
\end{spacing}
\end{document}
The spacing before the example seems to be much larger than after. I can't seem to find out the issue with my code. Could anyone maybe help me with this?
EDIT:
It seems to be the case that as soon as you try to modify baselinestretch in any way the spacing comes out incorrect. I also tried it without setspace and instead with \linespread{1.5} and it still didn't come out right - using setspace doesn't really seem to make a difference.
\documentclass[12pt, a4paper]{article}
\linespread{1.5}
\usepackage{linguex}
\let\eachwordone=\it
\AtBeginDocument{\setlength{\Extopsep}{.3\baselineskip}}
\begin{document}
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.
\exg.
At vero eos et accusam \
et justo duo dolores et \
ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
\end{document}
The spacing is still uneven, even in the absence of a setspace enviroment, the problem seems to occur because of linguex alone



