答案1
所提供的\atxy
宏将允许您在页面周围放置东西,而不管边距如何。
\documentclass{article}
\usepackage{everypage}
\usepackage{xcolor,graphicx}
\usepackage{lipsum}
% THESE ARE LaTeX DEFAULTS; CAN CHANGE IF NEEDED.
\def\PageTopMargin{1in}
\def\PageLeftMargin{1in}
\newcommand\atxy[3]{%
\AddThispageHook{\smash{\hspace*{\dimexpr-\PageLeftMargin-\hoffset+#1\relax}%
\raisebox{\dimexpr\PageTopMargin+\voffset-#2\relax}{#3}}}}
\atxy{5.17in}{0in}{\textcolor{blue!70}{\rule[-\paperheight]{4pt}{\paperheight}}}
\atxy{5.5in}{10.8in}{\includegraphics[width=2in]{example-image}}
\atxy{5.5in}{.4in}{\parbox[t]{2in}{\sffamily{\LARGE LUMIEO S84}\\\\\normalsize
Here goes text. Text about the product and some short important info.}}
\begin{document}
\begin{minipage}[t]{3in}
\lipsum[1-2]
\end{minipage}\qquad
\begin{minipage}[t]{1.5in}
\lipsum[4]
\end{minipage}
\end{document}