\marginpar borde con fondo gris y bordes negros redondos

\marginpar borde con fondo gris y bordes negros redondos

A menudo uso \marginpar{}lo que me resulta aburrido. ¿Hay alguna manera de agregar un fondo gris y bordes negros redondeados para que se vea así?

Par de margen buscado

Respuesta1

Primera solución, solo usandotikz

Aquí hay una solución que renueva el \marginparcomando y se utiliza TikZpara proporcionar decoraciones muy flexibles.

ingrese la descripción de la imagen aquí

\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}

Segunda solución, usandomdframed

Este usa elmdframedpaquete para el marco y define un environmenten lugar de un command. He copiado un código deltufteclase de documento para definir un entornomymarginpar

captura de pantalla

\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}

Si desea esquinas redondeadas, puede investigar la tikz-methodsección mdframed; consulte la documentación para obtener más detalles.

información relacionada