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í?
Respuesta1
Primera solución, solo usandotikz
Aquí hay una solución que renueva el \marginpar
comando y se utiliza TikZ
para proporcionar decoraciones muy flexibles.
\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 elmdframed
paquete para el marco y define un environment
en lugar de un command
. He copiado un código deltufte
clase de documento para definir un entornomymarginpar
\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-method
sección mdframed
; consulte la documentación para obtener más detalles.