In a two-column document, I would like some text to be positioned at the bottom right of the right column. The text is inside tabular and flushright. An MWE is:
\documentclass[twocolumn]{article}
\usepackage{lipsum}
\begin{document}
\lipsum[1-4]
\vfill
\begin{flushright}
\begin{tabular}[b]{p{3cm} r}
some text & 0
\end{tabular}
\end{flushright}
\end{document}
However, there is some vertical space below (see image) which I would like to remove so the part "some text 0" fully aligns with the left column at the bottom.
I believe I would need to edit the spacing for both flushright and tabular in this instance but don't know how (other than just manually adding a negative space via \vspace{-1.5em}). Help appreciated!
EDIT: To explain why I use/need the tabular, here is working example less minimal but more similar to my needs. It already uses some of the answers below.
\documentclass[twocolumn]{article}
\usepackage{lipsum}
\usepackage[demo]{graphicx}
\usepackage{array}
\begin{document}
\lipsum[1-4]
\vspace*{\fill}
\noindent
\makebox[\linewidth][r]{
\begin{tabular}[b]{ b{3cm} r@{}}
some long, line-wrapped text &
\includegraphics[width=2cm]{img}
\end{tabular}
}
\end{document}
But there still seems to be some small space below the box.



tabular, I can't just replace it by{some text \quad 0}. Your solution does a great job, but if I place thetabularfrom above where you have{some text \quad 0}I still have a (small) space below. Could I remove this, too? Thanks! – Bernd Sep 06 '13 at 13:47\noindent\makebox{}by\raggedleft text text ... ...or include a tabular at that point, the baselines may not quite line up with the first column as latex doesn't really try to do that. – David Carlisle Sep 06 '13 at 14:00tabularinside themakebox(since\raggedleftdoesn't work with the combination of line-wrapped text and an image, see my update above) the bottom still does not match (though it's a lot better). Are you saying it just won't work? – Bernd Sep 06 '13 at 14:19g(you see the line rise up in my original one line example if you add a g. You could hide hide the depth of the box \raisebox{0pt}[0pt]{...} would do it but if the natural column break put a descender at the end of the first column you'd be wrong again, that could be fixed but would require opening up latex internals (perhaps at the weekend, not now:-) – David Carlisle Sep 06 '13 at 14:53