日历上的注释框

日历上的注释框

我想用乳胶制作一个日历,我想制作一个出现在日历末尾的笔记框,看起来像这样:我想要的是

我在这里获取了模板表格模板而且我不知道如何修改.sty 文件。

感谢您的阅读,如果您需要更多信息,请告诉我,我会编辑这篇文章

编辑:我通过使用这个新命令取得了一些进展:

\newtcolorbox[auto counter,
              number within=chapter,
              list inside=notas
              ]{notas}[1][]{%
    enhanced,
    title={{\begin{minipage}{0.99\linewidth}\textbf{\textit{#1}}\end{minipage}}},
    ,
    halign title=left,
    sharp corners,
    colback=white,
    coltitle=black,
    colbacktitle=white,
    boxrule=0pt,frame hidden,
    overlay unbroken={%
      \draw[black,double] (interior.north west)--(interior.south west);%
      },
    boxed title style={%
      colframe=white, 
      boxrule=0pt,
      colback=white,
      left=0pt,
      right=0pt},
    attach boxed title to top left={xshift={-5pt}},
}

\def\daysep{\vskip2pt\hrule\vskip4pt}

\def\timesep{\vskip6pt}

在日历环境之外像这样使用它:

\begin{notas}[Notas]
\textbf{12:30-14:30} \daysep Física cuántica I \timesep \textbf{12:30-14:30} \daysep Física cuántica I \timesep
\end{notas}

提供:

在此处输入图片描述

但我仍然不知道如何让它们像我画的一样出现在列中

答案1

使用包的一种方法multicol。日历部分与问题无关,因此在 MWE 中省略了它:

姆韦

\documentclass[a4paper]{article}
%\usepackage[margin=2cm]{geometry}
\usepackage[spanish]{babel}
\usepackage{multicol}
\usepackage{microtype}

\newcommand\nota[1]{\par\bigskip\noindent{\bfseries #1\smallskip\hrule\smallskip\noindent}\par}

\begin{document}

%\begin{calendar}
%\end{calendar}

\noindent
\fboxsep1em
\fboxrule2pt
\fbox{\parindent0pt\footnotesize\sffamily
\noindent\begin{minipage}{\dimexpr\linewidth-2\fboxsep-2\fboxrulewidth}
{\bfseries\large Notas:}\\[-2.5em] 
\begin{multicols}{5}\raggedright
\nota{Lunes} Ir al cine.
\nota{7:00} Grabar la peli de la tele.
\nota{}Call Of Dutty (Pablito \& Co.  revenge).\newcolumn
\nota{Martes} Ver la peli que grabé ayer. 
\nota{Martes tarde} Ir al teatro.
\nota{Martes noche} Ir otra vez al teatro. \newcolumn
\nota{Miércoles} Descanso de media semana.\newcolumn
\nota{Jueves} Escuchar música.
\nota{} Call of Duty.
\nota{} Escuchar música.
\nota{5:00 PM} Curso de Procastinación Avanzado.
\newcolumn
\nota{Viernes} Descansar (tanto trabajar no es bueno).
\end{multicols}
\end{minipage}}
\end{document}

相关内容