summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/easy-todo
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/latex/easy-todo')
-rw-r--r--Master/texmf-dist/doc/latex/easy-todo/README2
-rw-r--r--Master/texmf-dist/doc/latex/easy-todo/easy-todo.pdfbin0 -> 38538 bytes
-rw-r--r--Master/texmf-dist/doc/latex/easy-todo/easy-todo.tex44
3 files changed, 46 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/easy-todo/README b/Master/texmf-dist/doc/latex/easy-todo/README
new file mode 100644
index 00000000000..e59dfa40364
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/easy-todo/README
@@ -0,0 +1,2 @@
+This package allows to add TODO notes all along the document and
+show the list of TODOs as an index. \ No newline at end of file
diff --git a/Master/texmf-dist/doc/latex/easy-todo/easy-todo.pdf b/Master/texmf-dist/doc/latex/easy-todo/easy-todo.pdf
new file mode 100644
index 00000000000..9076ab73290
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/easy-todo/easy-todo.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/easy-todo/easy-todo.tex b/Master/texmf-dist/doc/latex/easy-todo/easy-todo.tex
new file mode 100644
index 00000000000..440efb05d9b
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/easy-todo/easy-todo.tex
@@ -0,0 +1,44 @@
+\documentclass[a4paper]{article}
+\usepackage{listings}
+\usepackage[enabled,section]{easy-todo}
+
+\begin{document}
+ \title{The \texttt{easy-todo} package}
+ \author{Juan Rada-Vilela}
+ \date{January, 2011}
+
+ \maketitle
+
+ \begin{abstract}
+ The \texttt{easy-todo} package allows to add TODO notes all along the document and show the list of TODOs as an index with references.
+ \end{abstract}
+
+ \section{Options}
+ When including the package, the following options are available:
+
+ \begin{description}
+ \item [enabled] Shows the TODO notes as well as the index.
+ \item [disabled] Hides the TODO notes as well as the index. Useful for printing drafts without the TODO notes but keeping them in the document.
+ \item [final] Same as disabled.
+ \item [chapter] Prints the list of TODOs as a chapter.
+ \item [section] Prints the list of TODOs as a section.
+ \end{description}
+
+ For example:
+\lstset{language=TeX}
+\begin{lstlisting}
+\usepackage[enabled,section]{easy-todo}
+\end{lstlisting}
+
+ \section{Commands}
+ \begin{description}
+ \item [\textbackslash todo\{note\}] Adds in the same location a TODO note with text \texttt{note}.
+ \item [\textbackslash listoftodos] Creates the list of TODOs in the same location as used.
+ \end{description}
+
+ \todo{This is a TODO note}
+
+ \todo{I wish there was more to mention about this package, but it is so simple that it is straight-forward to understand the beginner's code}
+
+ \listoftodos
+\end{document} \ No newline at end of file