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?













1















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?










share|improve this question





























    1















    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?










    share|improve this question



























      1












      1








      1


      1






      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?










      share|improve this question
















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 1 hour ago









      Kurt

      40.7k850164




      40.7k850164










      asked 6 hours ago









      Brennon BortzBrennon Bortz

      1654




      1654






















          1 Answer
          1






          active

          oldest

          votes


















          0














          You have two possibilitys:





          1. 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}%
            }



          2. 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:



          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 todos). 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 ...






          share|improve this answer
























            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
            });


            }
            });














            draft saved

            draft discarded


















            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









            0














            You have two possibilitys:





            1. 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}%
              }



            2. 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:



            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 todos). 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 ...






            share|improve this answer




























              0














              You have two possibilitys:





              1. 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}%
                }



              2. 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:



              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 todos). 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 ...






              share|improve this answer


























                0












                0








                0







                You have two possibilitys:





                1. 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}%
                  }



                2. 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:



                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 todos). 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 ...






                share|improve this answer













                You have two possibilitys:





                1. 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}%
                  }



                2. 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:



                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 todos). 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 ...







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered 1 hour ago









                KurtKurt

                40.7k850164




                40.7k850164






























                    draft saved

                    draft discarded




















































                    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.




                    draft saved


                    draft discarded














                    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





















































                    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







                    Popular posts from this blog

                    Paper upload error, “Upload failed: The top margin is 0.715 in on page 3, which is below the required...

                    Emraan Hashmi Filmografia | Linki zewnętrzne | Menu nawigacyjneGulshan GroverGulshan...

                    How can I write this formula?newline and italics added with leqWhy does widehat behave differently if I...