所以我一直在想如何沿着页面的周边运行文本,使其环绕并相应地旋转:文本正常沿着上部运行,然后在右上角“向右转”(所以现在它旋转了 90 度,我们需要旋转纸张才能正确阅读),在右下角向左转,现在上下颠倒,依此类推。
页面中间还会有一些文本。
干杯!
答案1
您可以使用tikz
withdecorations.text
来获取
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{decorations.text}
\begin{document}
\begin{tikzpicture}[overlay,remember picture]
\draw[decorate, decoration={text along path,text
align=center,text={|\sffamily|It has been argued that all codes written by cats
are catcodes. You may believe it or not. However, be assured that cats do not like
computers because they typically have a mouse attached.}}]
([yshift=-1em]current page.north west) -| ([xshift=-1em]current page.south east);
\end{tikzpicture}
\end{document}
如果您使用tikzpagenodes
,您可以在文本区域周围运行文本。