I have a table that will have substantial amounts of text in the final 2 columns, and I can't figure out how to define the columns in a way that works for that. My original attempt was as follows:
\begin{tabulary}{\textwidth}{ | c | c | c | c | p{2.5 in} | l | }
This has the result of making the final column not break, and extend well past the edge of the page (does not conform to \textwidth). I could do something like this:
\begin{tabulary}{\textwidth}{ | c | c | c | c | p{2.5 in} | p{2.5 in} | }
I dislike that, because then the original \textwidth definition is being totally overridden, meaning I need to hard code widths for the first 4 columns as well, and I miss out on LaTeX's ability to juggle widths dynamically to make stuff look nice. For reference, leaving all widths undefined and using "L" for both of the final columns crushes the second to last column down in a way that looks awkward, because the final column has a lot more text in it.
