如何让单词浮动到段落的左侧

如何让单词浮动到段落的左侧

我试图实现与下图所示的效果相同的效果。基本上,我希望一个单词或几个单词浮动在首次引入该术语的段落的左侧。

这显著提高了可读性和背景部分中使用的所有术语的识别性,但我不知道如何做到这一点。

我可以使用哪些 LaTeX 包来实现这种效果?

浮动字

答案1

这通常被称为\marginpar

在此处输入图片描述

\documentclass{article}

\usepackage{newpxtext}

\begin{document}

In most collections, the same concept may be referred to using different
words. This issue, known as \marginpar{\textsc{synonymy}}\emph{synonymy}, has an impact on the recall of most
information retrieval systems. For example, you would want a search for
\textsf{aircraft} to match \textsf{plane} (but only for references to an \emph{airplane}, not a woodworking
plane), and for a search on \textsf{thermodynamics} to match references to \textsf{heat} in
appropriate discussions.

\end{document}

\marginpar[<left>]{<right>}可以通过处于模式时在左侧或右侧定位twoside。您还可以考虑使用marginnote包裹,取决于使用深度。

相关内容