In my document I want the fcolorbox the same width as the graphics, but I can't get it right. The left side is aligned (wich is good) but the right side is not (which is bad ...)
What is going wrong here?
\documentclass[11pt,landscape,twoside]{article}
\usepackage[english,dutch]{babel}
\usepackage{multicol}
\usepackage{xcolor}
\usepackage{graphicx}
\graphicspath{{../graph/}{../tek/}}
\begin{document}
\begin{multicols}{3}
\parbox[t]{1.0\linewidth}{
\includegraphics[width=1.0\linewidth]{joec.jpg}\hfill
\vspace{-5.0pt}
\fcolorbox{gray}{gray}{\parbox{1.0\linewidth-2\fboxsep-2\fboxrule}{
\color{white}
\raggedleft{\small{text text text} }
}
}
}
\end{multicols}
\end{document}
