100字范文,内容丰富有趣,生活中的好帮手!
100字范文 > LaTeX生成复选框(打勾打叉) todo list

LaTeX生成复选框(打勾打叉) todo list

时间:2022-10-03 22:46:56

相关推荐

LaTeX生成复选框(打勾打叉) todo list

文章目录

前言方案小结参考文献

前言

本文旨在讲述:如何在LaTeX中生成复选框(可以打勾打叉的那种),制作todo list。

创作时间:9月30日06:43:55

写这篇文章,主要是因为似乎在百度没有看到合适的方案,所以记录之。

方案

1) 先在\begin{document}之前添加:

% for to-do-list, check box\usepackage{enumitem,amssymb}\newlist{todolist}{itemize}{2}\setlist[todolist]{label=$\square$}% for check symbol \usepackage{pifont}\newcommand{\cmark}{\ding{51}}%\newcommand{\xmark}{\ding{55}}%\newcommand{\done}{\rlap{$\square$}{\raisebox{2pt}{\large\hspace{1pt}\cmark}}\hspace{-2.5pt}}\newcommand{\wontfix}{\rlap{$\square$}{\large\hspace{1pt}\xmark}}

2)在正文中添加(示例代码):

\begin{itemize}\item 9月30日计划\begin{todolist}\item [\wontfix] 休息休息\item [\done] 吃饭\item [\done] 学习\item 8点开始学习。 \item 待完成。。。\end{todolist}\end{itemize}

3)对应效果展示:

小结

9月30日06:50:41

写作完毕。

参考文献

[1] How to create checkbox todo list? /questions/247681/how-to-create-checkbox-todo-list

(此为主要参考文献)

[2] Creating Boxed Check Mark /questions/16000/creating-boxed-check-mark

[3] Managing checkbox representation \url{/questions/111929/managing-checkbox-representation

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。