是否可以在文本中插入脚注

是否可以在文本中插入脚注

是否可以像图片中那样在文本内添加脚注?如果可以,怎么做?我没有 MWE。

我正在使用这个memoir课程。

在此处输入图片描述

答案1

请始终提供最小工作示例(MWE)在你能走多远的问题上,至少要避免我们从头开始做解决方案的例子

这种方法使用wrapfig包来制作文本剪切。但是,请注意,包裹图有几个限制,因此不能随意放置在任何地方并期望获得良好的效果。请参阅包的手册。

妇女权利委员会:


姆韦


\documentclass[11pt,a5paper]{article}
\usepackage{geometry}
\usepackage{sidenotes}
\newcounter{foo}
\setcounter{foo}{1}
\def\smark{\textsuperscript{(\textbf{\alph{foo}})}\addtocounter{foo}{1} } 
\def\thesidenote{{\bfseries\alph{foo}}} 
\def\notestyle{\footnotesize\sffamily{\thesidenote]} }
\usepackage{arydshln}
\usepackage{wrapfig} \intextsep0em \columnsep1em
\usepackage{lipsum}
\begin{document}

\lipsum[1][2-3]
\lipsum[5][1-3] % Place it at the end of line o before the paragraph.
\begin{wrapfigure}[3]{r}[1cm]{3cm} 
\begin{tabular}{;{1pt/1pt}p{3cm}}
\notestyle\lipsum[1][1] \\
\end{tabular}
\end{wrapfigure}
\lipsum[3][1-2]\smark{}
\lipsum[3][3-8]

\lipsum*[2][1-5] 
\begin{wrapfigure}[4    ]{l}[1cm]{5cm}
\begin{tabular}{p{4.5cm};{1pt/1pt}}
\notestyle \lipsum[12][1-4]
\end{tabular}

\end{wrapfigure}
\lipsum[3][1-3]\smark
\lipsum[4][1-6]

\end{document}

相关内容