├── .gitignore ├── Makefile ├── README ├── examples ├── alterAppearenceOfListOfTodos.tex ├── externalize.tex └── saveColorByUsingLayers.tex ├── gitnotes ├── img └── AlteredAppearenceOfListOfTodos.png ├── releaseFile ├── testsuite ├── .gitignore ├── Makefile ├── colorinlistoftodos.tex ├── danish.tex ├── disable.tex ├── dvistyle.tex ├── empty.tex ├── formats.tex ├── german.tex ├── obeyDraft.tex ├── plain.tex ├── styles.tex └── withhyperref.tex ├── todonotes.dtx ├── todonotes.ins └── todonotesexample.tex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikmidtiby/todonotes/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikmidtiby/todonotes/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikmidtiby/todonotes/HEAD/README -------------------------------------------------------------------------------- /examples/alterAppearenceOfListOfTodos.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikmidtiby/todonotes/HEAD/examples/alterAppearenceOfListOfTodos.tex -------------------------------------------------------------------------------- /examples/externalize.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikmidtiby/todonotes/HEAD/examples/externalize.tex -------------------------------------------------------------------------------- /examples/saveColorByUsingLayers.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikmidtiby/todonotes/HEAD/examples/saveColorByUsingLayers.tex -------------------------------------------------------------------------------- /gitnotes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikmidtiby/todonotes/HEAD/gitnotes -------------------------------------------------------------------------------- /img/AlteredAppearenceOfListOfTodos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikmidtiby/todonotes/HEAD/img/AlteredAppearenceOfListOfTodos.png -------------------------------------------------------------------------------- /releaseFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikmidtiby/todonotes/HEAD/releaseFile -------------------------------------------------------------------------------- /testsuite/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikmidtiby/todonotes/HEAD/testsuite/.gitignore -------------------------------------------------------------------------------- /testsuite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikmidtiby/todonotes/HEAD/testsuite/Makefile -------------------------------------------------------------------------------- /testsuite/colorinlistoftodos.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikmidtiby/todonotes/HEAD/testsuite/colorinlistoftodos.tex -------------------------------------------------------------------------------- /testsuite/danish.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikmidtiby/todonotes/HEAD/testsuite/danish.tex -------------------------------------------------------------------------------- /testsuite/disable.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikmidtiby/todonotes/HEAD/testsuite/disable.tex -------------------------------------------------------------------------------- /testsuite/dvistyle.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikmidtiby/todonotes/HEAD/testsuite/dvistyle.tex -------------------------------------------------------------------------------- /testsuite/empty.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikmidtiby/todonotes/HEAD/testsuite/empty.tex -------------------------------------------------------------------------------- /testsuite/formats.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikmidtiby/todonotes/HEAD/testsuite/formats.tex -------------------------------------------------------------------------------- /testsuite/german.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikmidtiby/todonotes/HEAD/testsuite/german.tex -------------------------------------------------------------------------------- /testsuite/obeyDraft.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikmidtiby/todonotes/HEAD/testsuite/obeyDraft.tex -------------------------------------------------------------------------------- /testsuite/plain.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikmidtiby/todonotes/HEAD/testsuite/plain.tex -------------------------------------------------------------------------------- /testsuite/styles.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikmidtiby/todonotes/HEAD/testsuite/styles.tex -------------------------------------------------------------------------------- /testsuite/withhyperref.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikmidtiby/todonotes/HEAD/testsuite/withhyperref.tex -------------------------------------------------------------------------------- /todonotes.dtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikmidtiby/todonotes/HEAD/todonotes.dtx -------------------------------------------------------------------------------- /todonotes.ins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikmidtiby/todonotes/HEAD/todonotes.ins -------------------------------------------------------------------------------- /todonotesexample.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikmidtiby/todonotes/HEAD/todonotesexample.tex --------------------------------------------------------------------------------