Is it possible to make a footnote inside the text like in the image? If so, how? I’ve no MWE.
I’m using the memoir class.
Is it possible to make a footnote inside the text like in the image? If so, how? I’ve no MWE.
I’m using the memoir class.
Please provide always a minimal working example (MWE) in your questions of how far you can go, at least to avoid us make the example of the solution from scratch
This approach use the wrapfig package to make the text cuts. However, note that a wrapfigure have several constraints, so it cannot be placed anywhere without care and expect a good result. See the manual of the package.
The MWE:
\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}
;{1pt/1pt}, what does it do?
– user574859
Sep 16 '23 at 10:35
;)
– Fran
Sep 16 '23 at 16:49
pullquotepackage. See Two-column text with circular insert. – Alan Munn Sep 15 '23 at 16:10