I need a box with the following properties
- framed
- fixed width
- content text is centered
- manual line breaks in the content text are possible
The closest I have is:
\documentclass{article}
\usepackage{minibox}
\begin{document}
\minibox[frame,c]{line 1\\longer line 2}
\end{document}
But I don't find a way to fix the width of the box. I want to set it to a fixed value, which is be wider than the automatic width.
