我想将算法放在 tufte 风格书的页边空白处。我使用的是 algorithm2e。我不知道该怎么做,或者是否有可能。请帮忙?这是一个例子,但它将算法放在正文中而不是页边空白处:
\documentclass{tufte-book}
\usepackage{algorithm2e}
\begin{document}
\begin{algorithm}
\While{hungry}{
make cookies\;
eat cookies\;
}
\end{algorithm}
\end{document}
答案1
把它放在环境中怎么样marginfigure
?
\documentclass{tufte-book}
\usepackage{algorithm2e}
\usepackage{blindtext}
\begin{document}
\Blindtext[1]
\begin{marginfigure}
\begin{algorithm}[H]
\While{hungry}{
make cookies; \newline
eat cookies;
}
\caption{Story of my life}
\end{algorithm}
\end{marginfigure}
\Blindtext[1]
\end{document}