I'm trying to arrange a poem with one word followed by a block of text followed by one word aligned with the bottom. I keep getting stuck
\documentclass[11pt]{article}
\usepackage{tabularx}
\usepackage{array}
\usepackage{lipsum}
\begin{document}
\begin{tabular}[b]{r p{.8\textwidth} b{.1\textwidth}}
Top & \lipsum[1] & Bottom\\
Top & \lipsum[2] & Bottom\\
\end{tabular}
\end{document}
Obviously I want the word "Bottom" aligned to the bottom.
I've looked here, here, and several other posts, but those solutions haven't been working for me- perhaps because my middle column is very large.


tabular, buttabbing, and shift the "bottom" element off to the right with an\rlap. i've just concocted something like that recently, but it's on another computer that i won't have access to until tomorrow. (the application was a riff on a glossary, and the third element was a reference page number.) – barbara beeton Apr 12 '16 at 02:18