In some countries, death announcements are typeset as follows. There is a text, that is subjected to the usual typographic rules and the text is surrounded by a thick black border that leaves no white space.
Here is a quick try on half an A4 page.
\documentclass[12pt]{article}
\setlength{\parindent}{0pt}
\usepackage[papersize={210mm,148.5mm},margin=0mm]{geometry}
\usepackage{tikz,lipsum}
\pagestyle{empty}
\begin{document}%
\begin{tikzpicture}[remember picture,overlay]
\node[coordinate,inner sep=0pt,outer sep=0pt] at (current page.north west) (nw) {} ;
\node[coordinate,inner sep=0pt,outer sep=0pt] at (current page.south east) (se) {} ;
\node[coordinate,inner sep=0pt,outer sep=0pt] at (current page.north east) (ne) {} ;
\node[coordinate,inner sep=0pt,outer sep=0pt] at (current page.south west) (sw) {} ;
\draw[line width=9mm] (nw) -- (ne) -- (se) -- (sw) -- (nw) ;
\end{tikzpicture}
\vfill
\begin{center}
\begin{minipage}[t]{16cm}
\lipsum[1-2]
\end{minipage}
\end{center}
\vfill
\end{document}
I would like something more flexible, e.g., regarding margins with the black border. I have the feeling that what I have done is quite rough. Can you suggest something?




minipage. – Steven B. Segletes Mar 09 '18 at 12:44