无法制作填满页面的垂直线

无法制作填满页面的垂直线

强文本

大家好,我正在尝试做这个,这是在 Word 中做的,您可以在其中插入带线的边距框。但我似乎只能做到:1:带线的边距框,这样正常文本在写太多时就不会将其推开。2:将徽标放在左下角。3:将图像下方的文本设为两列。

我尝试过 minipage、rule、tabular、changebar、marginnote 等多种不同的方法。到目前为止

答案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}

在此处输入图片描述

相关内容