Please, can someone explain how to patch Philex to customize the spacing between examples, subexamples and subsubexamples, respectively.
For example, if I want spacing between subexamples but no spacing between subsubexamples, and if I want even more spacing between examples than between subexamples.
Related page : Using linguex, how can I change the spacing between subexamples?
MWE :
\documentclass[12pt,oneside]{article}
\usepackage{philex}
\usepackage{etoolbox}
\newlength{\SubItemSkip}
\setlength{\SubItemSkip}{.66\baselineskip}
\makeatletter
\patchcmd{\a}{\itemsep\z@}{\itemsep\SubItemSkip}{}{}
\makeatother
\begin{document}
\lb{tests}{
\lba{inforx}{Possible modification by `in/for \textit{x} time'.}
\lbb{fc}{Possible modification by \textit{frequent}/\textit{constant}.}
\lbb{control}{Possible Implicit Agent Control.}
\lbz{byp}{\textit{By}-phrases and, when available, possessives realize arguments.}}
\lb{examples}{
\lba{inforx-ex}{
\lba{inx-ex}{La destruction de la ville par l'armée en quelques heures nous a stupéfaits.}
\lbz{forx-ex}{Le chef de service a ordonné la surveillance du patient par les internes durant plusieurs jours.}}}
\end{document}


philexexample that shows what you're doing. It seems likely that the solution I gave in the linked answer could be made to work but I know nothing aboutphilex. – Alan Munn Mar 08 '22 at 16:09philexdocument seems to do what you want. If that's not what you want then explain what the problem is. – Alan Munn Mar 08 '22 at 16:19