I've been looking for a particular format feature recently, but haven't been able to find a way to do it.
I would like to show interaction patterns in a dialogue by placing phrases from two different lines into brackets (or any kind of visual marker, if possible). A picture is worth a thousand words, so I have attached an extract of an article from G.H. Lerner on Overlapping (source: http://www.soc.ucsb.edu/faculty/lerner/ ... letion.pdf).
What is usually recommended for this amongst linguistics Latex users is the use of the tabbing environment. The problem is that I want to number the lines as well (the conversation I'm working on is quite a stretch), and lineno, as far as I've found, seems to skip the tabbing environment:
Code: Select all
Code, edit and compile here:
\begin{document}\begin{linenumbers}Y : t'as bien aim\'{e} le truc ?D : ouais j'ai bien aim\'{e}:\begin{tabbing}D : et euh: alors Charlotte aime pas la voix de \= PierreY : \> ah non?\end{tabbing}D : \c{c}a c'est c'est des choses qui arrivent hein\end{linenumbers}\end{document}
(Plus I think tabular and table might not be the most elegant way to proceed. But if they could do the trick, I'd be happy to use them.)
Code: Select all
Code, edit and compile here:
\begin{document}\begin{linenumbers}Y : t'as bien aim\'{e} le truc ?D : ouais j'ai bien aim\'{e}:\begin{edtable}{tabular}{ l l }D : et euh: alors Charlotte aime pas la voix de & PierreY : & ah non?\end{edtable}D : \c{c}a c'est c'est des choses qui arrivent hein\end{linenumbers}\end{document}
Thanks a lot for your help,
Damien