答案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}