This question piggybacks off of the question/answer here, where one answer mentions how to create a phonological rule using the phonrule package.
MWE here:
\documentclass[a4paper,12pt,twoside,onecolumn]{memoir}
\usepackage{phonrule}
\begin{document}
\phon{x}{\oneof{
\envr{w}{z} \\
\envl{v}{\phonfeat{
+feature x \\
-feature y}}}}
\end{document}
Results in:
You can see that output and environments are centered. Is there any way to un-center them and/or left-align them? The centering that it does appears to be an intentional addition in v1.2.0 of phonrule. But there is nothing else in the documentation regarding alignment.
I need it to be the standard left-aligned version - that is, left-aligned output and left-aligned environment. Something like this (exact spacing is flexible):
Trying to throw in any type of alignment generally breaks the phonrule environment and it won't compile or it aligns the entire figure/example, rather than just the individual (output + environment) sections.
I have been using roughly the same as the other answer from the above question which utilizes \mbox. This is fine, but adding additional outputs and environments is either messy or requires a new command based on the differences. phonrule generally does all this in a much cleaner and more expandable way, which is why I'm looking into being able to modify the alignment.


