I use the package Covington for examples, which when used with the tabular environment by default places the example number (e.g. (1)) to the left of the example horizontally but centered vertically with the example. I was wondering how to go about placing the number in the upper left-hand corner of the example (i.e. top justified vertically speaking) while still using tabular. Or do I have to abandon tabular?
Here is my MWE in addition to the result I get from using it. I just want the (1) in this example to be on the same line as “V” and the rest of the first row.
Code: Select all
\documentclass{article}
\usepackage{covington}
\begin{document}
\begin{example}
\begin{tabular}{lll}
V & xxx & `water' \\
CV & xxx & `brother' \\
CVG & xxx & `two' \\
CGVG & xxx & `tail' \\
\end{tabular}
\end{example}
\end{document}
