我经常使用,\marginpar{}
但对我来说很无聊。有没有办法添加灰色背景和圆形黑色边缘,使其看起来像这样:
答案1
第一种解决方案,只需使用tikz
\marginpar
这是一个更新命令并使用TikZ
提供非常灵活的装饰的解决方案
\documentclass{article}
\usepackage{tikz}
\usepackage{lipsum}
\let\oldmarginpar\marginpar
% renew the \marginpar command to draw
% a node; it has a default setting which
% can be overwritten
\renewcommand{\marginpar}[2][rectangle,draw,fill=orange,rounded corners]{%
\oldmarginpar{%
\tikz \node at (0,0) [#1]{#2};}%
}
\begin{document}
\marginpar{margin text here}
\lipsum[1]
\marginpar[fill=red,text=yellow,circle]{margin text here}
\lipsum[2]
\end{document}
第二种解决方案,使用mdframed
这个使用mdframed
包中的框架,并定义了一个environment
而不是一个command
。我从tufte
文档类来定义环境mymarginpar
\documentclass{article}
\usepackage[xcolor]{mdframed}
\usepackage{lipsum}
%====================================
% shamelessly copied from tufte documentclass
%====================================
\makeatletter
% Margin float environment
\newsavebox{\@my@margin@floatbox}
\newenvironment{@my@margin@float}[1][-1.2ex]%
{%
\begin{lrbox}{\@my@margin@floatbox}%
\begin{minipage}{\marginparwidth}%
\hbox{}\vspace*{#1}%
\noindent%
}
{\end{minipage}%
\end{lrbox}%
\marginpar{\usebox{\@my@margin@floatbox}}%
}
% marginpar environment
\newenvironment{mymarginpar}[1][-1.2ex]%
{\begin{@my@margin@float}[#1]%
\begin{mdframed}[backgroundcolor=black!30,linecolor=red]%
}%
{\end{mdframed}\end{@my@margin@float}}
\makeatother
\begin{document}
\begin{mymarginpar}
margin text here
\end{mymarginpar}
\lipsum
\end{document}
如果您想要圆角,您可以研究的tikz-method
,mdframed
请参阅文档了解详情。