\marginpar 帶有灰色背景和圓形黑色邊緣的邊框

\marginpar 帶有灰色背景和圓形黑色邊緣的邊框

我經常使用\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框架的包,並定義 anenvironment而不是 a 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-methodmdframed有關詳細信息,請參閱文檔。

相關內容