Todo 和 rmd 生成的 LaTeX 文档

Todo 和 rmd 生成的 LaTeX 文档

如何todo在 R Markdown 生成的 LaTeX 文档中使用该包?

要加载包,可以使用 将它们添加到文档的标题中header-includes:。这可以成功与\usepackage{hyperref}及其样式 ( \hypersetup{colorlinks=true}) 配合使用,但似乎不允许添加内联todo{}

---
title: "Untitled"
author: "Test"
date: "7/24/2017"
output: pdf_document
header-includes:
   - \usepackage{todo}
   - \usepackage{hyperref}
   - \hypersetup{colorlinks=true}
---

[Link styling works](www.example.com) but \todo{todo does not}.

从而产生

在此处输入图片描述

答案1

一个好的替代方案是使用包\todo中的命令 todonotes。例如:

姆韦

---
title: "Untitled"
author: "Test"
date: "7/24/2017"
output: pdf_document
header-includes:
   - \usepackage[colorinlistoftodos]{todonotes}
   - \hypersetup{colorlinks=true,linkcolor=blue!30!black}
   - \geometry{rmargin=1.5in} 
---
[Link styling works](www.example.com)
\todo{Without load \texttt{hyperref} yourself!} 
as well as margin notes (but add some space to the right margin!)  
\todo[color=green!50,inline]{... or use  \texttt{todonotes} inline}.
\listoftodos

相关内容