Package todonotes: Display a todo only the listoftodoslistoftodos is empty for the document with...
I would say: "You are another teacher", but she is a woman and I am a man
How do conventional missiles fly?
Would Slavery Reparations be considered Bills of Attainder and hence Illegal?
Can a rocket refuel on Mars from water?
Stopping power of mountain vs road bike
Is the Joker left-handed?
Combinations of multiple lists
AES: Why is it a good practice to use only the first 16bytes of a hash for encryption?
How to draw the figure with four pentagons?
Theorems that impeded progress
Why are electrically insulating heatsinks so rare? Is it just cost?
Intersection of two sorted vectors in C++
Were any external disk drives stacked vertically?
I'm flying to France today and my passport expires in less than 2 months
Watching something be written to a file live with tail
I Accidentally Deleted a Stock Terminal Theme
Why is it a bad idea to hire a hitman to eliminate most corrupt politicians?
How much of data wrangling is a data scientist's job?
Why do I get two different answers for this counting problem?
Alternative to sending password over mail?
Reserved de-dupe rules
Is it possible to run Internet Explorer on OS X El Capitan?
What killed these X2 caps?
Is it inappropriate for a student to attend their mentor's dissertation defense?
Package todonotes: Display a todo only the listoftodos
listoftodos is empty for the document with todotodonotes' listoftodos with multi-paragraph todo{}sHow does one create a counted command (e.g. TODO) for use in a list?Change header of listoftodossiamltex + todonotes packagetodonotes: How to make multiple listoftodos?todonotes: custom sort of listoftodos entriesHow use todonotes without adding items to Todo listtodonotes: Use only left or only right margin?Adding timestamps in latex documents to mark when document was written, not compiled?
I know the todonotes
package gives me nolist
option when calling todo
in order to hide a given entry from the listoftodos
.
However, I can't find a way in the documentation to do the opposite of this. I'd like to add an entry to the list without having something appear later on where I place the todo
itself. Is this possible?
todonotes
add a comment |
I know the todonotes
package gives me nolist
option when calling todo
in order to hide a given entry from the listoftodos
.
However, I can't find a way in the documentation to do the opposite of this. I'd like to add an entry to the list without having something appear later on where I place the todo
itself. Is this possible?
todonotes
add a comment |
I know the todonotes
package gives me nolist
option when calling todo
in order to hide a given entry from the listoftodos
.
However, I can't find a way in the documentation to do the opposite of this. I'd like to add an entry to the list without having something appear later on where I place the todo
itself. Is this possible?
todonotes
I know the todonotes
package gives me nolist
option when calling todo
in order to hide a given entry from the listoftodos
.
However, I can't find a way in the documentation to do the opposite of this. I'd like to add an entry to the list without having something appear later on where I place the todo
itself. Is this possible?
todonotes
todonotes
edited 1 hour ago
Kurt
40.7k850164
40.7k850164
asked 6 hours ago
Brennon BortzBrennon Bortz
1654
1654
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You have two possibilitys:
You can print all text in the margin completely in white with
newcommand{mytodo}[1]{%
todo[linecolor=white, backgroundcolor=white,bordercolor=white, textcolor=white]{#1}%
}
You can fool
todonotes
and create the entry in the list of to dos by your own:
newcommand{mysectodo}[1]{%
addcontentsline{tdo}{todo}{#1}%
}
With the following complete code
documentclass{article}
usepackage[utf8]{inputenc}
usepackage{todonotes}
usepackage{blindtext}
newcommand{mytodo}[1]{% <==========================================
todo[linecolor=white, backgroundcolor=white,bordercolor=white, textcolor=white]{#1}%
}
newcommand{mysectodo}[1]{% <=======================================
addcontentsline{tdo}{todo}{#1}%
}
begin{document}
listoftodos
test todo[inline]{some fixme notes about this text 1}
blindtext
todo{some fixme notes about this text 2}
blindtext
textbf{test}
mytodo{some fixme notes about this text 3} % <================
textbf{test} blindtext
emph{test}
mysectodo{some fixme notes about this text 4} % <=============
emph{test} blindtext
todo{some fixme notes about this text 5}
blindtext
end{document}
you get the result:
As you can see in the image above (yellow part, marked with 3) the mytodo
is not visable, but it tooks place (*could be a problem with more todo
s). Marked with 4 you can see the place where I added command mysectodo
. It needs no place in the margin, but writes the entry in the list of todos ...
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f483263%2fpackage-todonotes-display-a-todo-only-the-listoftodos%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You have two possibilitys:
You can print all text in the margin completely in white with
newcommand{mytodo}[1]{%
todo[linecolor=white, backgroundcolor=white,bordercolor=white, textcolor=white]{#1}%
}
You can fool
todonotes
and create the entry in the list of to dos by your own:
newcommand{mysectodo}[1]{%
addcontentsline{tdo}{todo}{#1}%
}
With the following complete code
documentclass{article}
usepackage[utf8]{inputenc}
usepackage{todonotes}
usepackage{blindtext}
newcommand{mytodo}[1]{% <==========================================
todo[linecolor=white, backgroundcolor=white,bordercolor=white, textcolor=white]{#1}%
}
newcommand{mysectodo}[1]{% <=======================================
addcontentsline{tdo}{todo}{#1}%
}
begin{document}
listoftodos
test todo[inline]{some fixme notes about this text 1}
blindtext
todo{some fixme notes about this text 2}
blindtext
textbf{test}
mytodo{some fixme notes about this text 3} % <================
textbf{test} blindtext
emph{test}
mysectodo{some fixme notes about this text 4} % <=============
emph{test} blindtext
todo{some fixme notes about this text 5}
blindtext
end{document}
you get the result:
As you can see in the image above (yellow part, marked with 3) the mytodo
is not visable, but it tooks place (*could be a problem with more todo
s). Marked with 4 you can see the place where I added command mysectodo
. It needs no place in the margin, but writes the entry in the list of todos ...
add a comment |
You have two possibilitys:
You can print all text in the margin completely in white with
newcommand{mytodo}[1]{%
todo[linecolor=white, backgroundcolor=white,bordercolor=white, textcolor=white]{#1}%
}
You can fool
todonotes
and create the entry in the list of to dos by your own:
newcommand{mysectodo}[1]{%
addcontentsline{tdo}{todo}{#1}%
}
With the following complete code
documentclass{article}
usepackage[utf8]{inputenc}
usepackage{todonotes}
usepackage{blindtext}
newcommand{mytodo}[1]{% <==========================================
todo[linecolor=white, backgroundcolor=white,bordercolor=white, textcolor=white]{#1}%
}
newcommand{mysectodo}[1]{% <=======================================
addcontentsline{tdo}{todo}{#1}%
}
begin{document}
listoftodos
test todo[inline]{some fixme notes about this text 1}
blindtext
todo{some fixme notes about this text 2}
blindtext
textbf{test}
mytodo{some fixme notes about this text 3} % <================
textbf{test} blindtext
emph{test}
mysectodo{some fixme notes about this text 4} % <=============
emph{test} blindtext
todo{some fixme notes about this text 5}
blindtext
end{document}
you get the result:
As you can see in the image above (yellow part, marked with 3) the mytodo
is not visable, but it tooks place (*could be a problem with more todo
s). Marked with 4 you can see the place where I added command mysectodo
. It needs no place in the margin, but writes the entry in the list of todos ...
add a comment |
You have two possibilitys:
You can print all text in the margin completely in white with
newcommand{mytodo}[1]{%
todo[linecolor=white, backgroundcolor=white,bordercolor=white, textcolor=white]{#1}%
}
You can fool
todonotes
and create the entry in the list of to dos by your own:
newcommand{mysectodo}[1]{%
addcontentsline{tdo}{todo}{#1}%
}
With the following complete code
documentclass{article}
usepackage[utf8]{inputenc}
usepackage{todonotes}
usepackage{blindtext}
newcommand{mytodo}[1]{% <==========================================
todo[linecolor=white, backgroundcolor=white,bordercolor=white, textcolor=white]{#1}%
}
newcommand{mysectodo}[1]{% <=======================================
addcontentsline{tdo}{todo}{#1}%
}
begin{document}
listoftodos
test todo[inline]{some fixme notes about this text 1}
blindtext
todo{some fixme notes about this text 2}
blindtext
textbf{test}
mytodo{some fixme notes about this text 3} % <================
textbf{test} blindtext
emph{test}
mysectodo{some fixme notes about this text 4} % <=============
emph{test} blindtext
todo{some fixme notes about this text 5}
blindtext
end{document}
you get the result:
As you can see in the image above (yellow part, marked with 3) the mytodo
is not visable, but it tooks place (*could be a problem with more todo
s). Marked with 4 you can see the place where I added command mysectodo
. It needs no place in the margin, but writes the entry in the list of todos ...
You have two possibilitys:
You can print all text in the margin completely in white with
newcommand{mytodo}[1]{%
todo[linecolor=white, backgroundcolor=white,bordercolor=white, textcolor=white]{#1}%
}
You can fool
todonotes
and create the entry in the list of to dos by your own:
newcommand{mysectodo}[1]{%
addcontentsline{tdo}{todo}{#1}%
}
With the following complete code
documentclass{article}
usepackage[utf8]{inputenc}
usepackage{todonotes}
usepackage{blindtext}
newcommand{mytodo}[1]{% <==========================================
todo[linecolor=white, backgroundcolor=white,bordercolor=white, textcolor=white]{#1}%
}
newcommand{mysectodo}[1]{% <=======================================
addcontentsline{tdo}{todo}{#1}%
}
begin{document}
listoftodos
test todo[inline]{some fixme notes about this text 1}
blindtext
todo{some fixme notes about this text 2}
blindtext
textbf{test}
mytodo{some fixme notes about this text 3} % <================
textbf{test} blindtext
emph{test}
mysectodo{some fixme notes about this text 4} % <=============
emph{test} blindtext
todo{some fixme notes about this text 5}
blindtext
end{document}
you get the result:
As you can see in the image above (yellow part, marked with 3) the mytodo
is not visable, but it tooks place (*could be a problem with more todo
s). Marked with 4 you can see the place where I added command mysectodo
. It needs no place in the margin, but writes the entry in the list of todos ...
answered 1 hour ago
KurtKurt
40.7k850164
40.7k850164
add a comment |
add a comment |
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f483263%2fpackage-todonotes-display-a-todo-only-the-listoftodos%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown