-
Notifications
You must be signed in to change notification settings - Fork 400
EthanDeng edited this page Nov 16, 2019
·
2 revisions
在 3.08 版本中,我们引入了旁注设置选项 marginpar=margintrue
以及测试命令 \elegantpar
,但是由此带来一堆问题。我们决定在 3.09 版本中将其删除,并且,在旁注命令得到大幅度优化之前,不会将此命令再次引入书籍模板中。对此造成各位用户的不方便,非常抱歉!不过我们保留了 marginpar
这个选项,你可以使用 marginpar=margintrue
获得保留右侧旁注的版面设计。然后使用系统自带的 \marginpar
或者 marginnote
宏包的 \marginnote
命令。
注 在使用旁注的时候,需要注意的是,文本和公式可以直接在旁注中使用。
% text
\marginpar{margin paragraph text}
% equation
\marginpar{
\begin{equation}
a^2 + b^2 = c^2
\end{equation}
}
但是浮动体(表格、图片)需要注意,不能用浮动体环境,需要使用直接插图命令或者表格命令环境。然后使用 \captionof
为其设置标题。为了得到居中的图表,可以使用 \centerline
命令或者 center
环境。更多详情请参考: Caption of Figure in Marginpar。
% graph with centerline command
\marginpar{
\centerline{
\includegraphics[width=0.2\textwidth]{logo.png}
}
\captionof{figure}{your figure caption}
}
% graph with center environment
\marginpar{
\begin{center}
\includegraphics[width=0.2\textwidth]{logo.png}
\captionof{figure}{your figure caption}
\end{center}
}