diff options
author | Karl Berry <karl@freefriends.org> | 2014-01-15 00:30:42 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2014-01-15 00:30:42 +0000 |
commit | a4268e90f9d9013767d4aee201908389ccc22120 (patch) | |
tree | fc8a3a3778acea955d07f0c25617cf920c876c0f /Master/texmf-dist/doc | |
parent | 6c1d55d86cd79dc40f66222e8dcb23a12ae00200 (diff) |
easy-todo (14jan14)
git-svn-id: svn://tug.org/texlive/trunk@32677 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc')
-rw-r--r-- | Master/texmf-dist/doc/latex/easy-todo/README | 4 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/easy-todo/easy-todo.pdf | bin | 130400 -> 135147 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/easy-todo/easy-todo.tex | 53 |
3 files changed, 30 insertions, 27 deletions
diff --git a/Master/texmf-dist/doc/latex/easy-todo/README b/Master/texmf-dist/doc/latex/easy-todo/README index f0bb918d4b7..178c5fdff43 100644 --- a/Master/texmf-dist/doc/latex/easy-todo/README +++ b/Master/texmf-dist/doc/latex/easy-todo/README @@ -1,5 +1,3 @@ - README - The easy-todo package allows to create TODO notes in documents and show the list of TODOs as an index with references. - +The easy-todo package allows you to create, track, show and hide notes in a document. diff --git a/Master/texmf-dist/doc/latex/easy-todo/easy-todo.pdf b/Master/texmf-dist/doc/latex/easy-todo/easy-todo.pdf Binary files differindex 8e7a098944b..5913aee6d94 100644 --- a/Master/texmf-dist/doc/latex/easy-todo/easy-todo.pdf +++ b/Master/texmf-dist/doc/latex/easy-todo/easy-todo.pdf diff --git a/Master/texmf-dist/doc/latex/easy-todo/easy-todo.tex b/Master/texmf-dist/doc/latex/easy-todo/easy-todo.tex index dfeddbacffb..fbffc1020d5 100644 --- a/Master/texmf-dist/doc/latex/easy-todo/easy-todo.tex +++ b/Master/texmf-dist/doc/latex/easy-todo/easy-todo.tex @@ -1,52 +1,57 @@ \documentclass[a4paper]{article} -\usepackage{listings} -\usepackage[enabled,section]{easy-todo} +\usepackage[obeyFinal]{easy-todo} \begin{document} \title{The \texttt{easy-todo} package} - \author{Juan Rada-Vilela} - \date{November, 2013} + \author{by Juan Rada-Vilela (\texttt{jcrada@fuzzylite.com})} + \date{January, 2014} \maketitle \begin{abstract} - The \texttt{easy-todo} package allows to create TODO notes in a document and show the list of TODOs as an index with references. + The \texttt{easy-todo} package allows you to create, track, show and hide notes in a document. In addition, the package allows you to create a summary of notes with their respective points of reference. \end{abstract} \section{Options} - When including the package, the following options are available: + The following options are available: \begin{description} - \item [enabled] Shows the TODO notes as well as the index. - \item [enable] Same as before. - \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 [disable] Same as before. - \item [final] Same as disabled. + \item [enable] Show the notes and the index. + \item [disable] Hide the notes and the index. + \item [obeyFinal] Hide the notes except when the documentclass is \textbf{final}. This option overrides the options \textbf{enable} and \textbf{disable}. \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\}] Creates a note with text ``\texttt{note}''. - \item [\textbackslash todoi\{note-i\}] Creates an empty note with information ``\texttt{note-i}'' appearing only at the index. - \item [\textbackslash todoii\{note-ii\}\{information\}] Creates a note with ``\texttt{note-ii}'' inplace and ``\texttt{information}'' at the index. - \item [\textbackslash listoftodos] Creates the list of TODOs. + \item [\textbackslash todo\{note\}] Creates a note that shows the text ``\texttt{note}''. + \item [\textbackslash todoi\{note\}] Creates a note that only shows an automatically generated number. The text ``\texttt{note}'' appears in the index. + \item [\textbackslash todoii\{note\}\{information\}] Creates a note that shows the text ``\texttt{note}''. The text ``\texttt{information}'' appears at the index. + \item [\textbackslash listoftodos] Creates the list of notes. \end{description} + \section{Example} + \texttt{\textbackslash usepackage[obeyFinal]\{easy-todo\}} + + This is a todo \todo{note} that appears in full everywhere. This is a todoi \todoi{note i} that appears as a number and the note at the index. This is a todoii \todoii{hint}{information} note that shows a hint in place and the information at the index. All these notes disappear when using \texttt{\textbackslash documentclass[final]...}, or when using instead \texttt{\textbackslash usepackage[disable]\{easy-todo\}}. + \section{Changelog} + + \subsection{Version 3.0} + \begin{itemize} + \item Added option \textbf{obeyFinal} + \item Removed spaces caused by notes when hidden. + \item Option \textbf{section} is default. + \item Removed options \textbf{enabled}, \textbf{disabled} and \textbf{final}. + \end{itemize} + + \subsection{Version 2.0} \begin{itemize} \item Added options \textbf{enable} and \textbf{disable} \item Added commands \textbf{todoi}, \textbf{todoii} \end{itemize} - - This is a todo \todo{note} that appears in full everywhere. This is a todoi \todoi{note i} that appears as a number and the note at the index. This is a todoii \todoii{hint}{information} note that shows a hint at the place and the information at the index. - - \listoftodos + + \listoftodos \end{document} |