如何在页面右侧写一段话?

如何在页面右侧写一段话?

我正在使用\documentclass{book},希望我可以在页面的右侧写一段话。

请问有什么可以帮忙的吗?

答案1

您没有指定“右角”是整个页面的右角,还是仅仅是右上角,仅仅是文本区域顶部行的​​右侧,或者是页眉的角落……但无论如何,它应该可以使用包来修复具有某些绝对位置的框textpos。根据需要进行更改:

姆韦

\documentclass{book}
\usepackage[absolute]{textpos}
\usepackage{lipsum}
\begin{document}
\thispagestyle{plain}
\begin{textblock}{6}(9,.5)
\lipsum[2]
\end{textblock}
\vspace*{4em}
\lipsum[3-6]
\end{document}

答案2

如果您希望段落与右侧对齐,可以使用\raggedleft来实现。

如果您想在边距放置一个段落,您可以使用该\marginpar命令。

对于第一种情况,

Here is my normal text.\par
{\raggedleft Here is the text I want aligned right.\par}
Here is more normal text.

对于第二种情况,

Here is my normal paragraph text.\marginpar{This text will appear in the right margin,
next to my normal paragraph.} Here is more normal paragraph text.

相关内容