页边距中的垂直侧文本

页边距中的垂直侧文本

我正在使用文章文档类。我想在一页上创建一个左边距,并从底部开始垂直显示文本。

结果

我尝试使用迷你页面和旋转包,但无法成功。

答案1

欢迎!这是使用 的一种可能方法tikzpagenodes

\documentclass{article}
\usepackage{tikzpagenodes}
\usepackage{lipsum}% just for dummy text
\begin{document}
\begin{tikzpicture}[overlay,remember picture]
 \draw ([xshift=-1em]current page text area.west|-current page.south) 
 --
  ([xshift=-1em]current page text area.west|-current page.north)
  node[pos=0.1,sloped,anchor=south west,font=\sffamily] {Some side text};
\end{tikzpicture}
\lipsum[1-10]
\end{document}

在此处输入图片描述

答案2

解决方案如下eso-pic

\documentclass{article}
\usepackage{eso-pic, rotating}
\usepackage{lipsum}%

\begin{document}   

\AddToShipoutPictureBG*{\AtTextLowerLeft{\llap{\rotatebox[origin=lb]{90}{\large\sffamily Some side text}\quad\rule{0.8pt}{\textheight}\enspace}}}
\lipsum[1-10]

\end{document} 

在此处输入图片描述

相关内容