Marcin Borkowski <mbork <at> mbork.pl> writes: > > > On 2015-10-25, at 19:12, Nicolas Goaziou <mail <at> nicolasgoaziou.fr> wrote: > > > Fabrice Popineau <fabrice.popineau <at> supelec.fr> writes: > > > >> 2015-10-25 18:57 GMT+01:00 Thomas S. Dye <tsd <at> tsdye.com>: > >> > >> > >>> would suggest an alternate wording. In this case, it would be super > >>> helpful to have a function that replaced annotated text with the > >>> annotation, so the author could easily accept the editor's suggestion. > >>> > >>> > >> In this case, it would be nice if annotations could have an author > >> too! > > > > The full proposal was at > > <http://permalink.gmane.org/gmane.emacs.orgmode/97468> but it didn't get > > much positive feedback. Therefore I suggested a simplified version, with > > a single author. > > I like it! I'm not sure I would use it a lot (and definitely not with > other people - there are not many people using Org-mode in my > institution, in fact I guess I'm the only one), but it does seem > useful. > > One thing: there /must/ be a way to export annotations. For LaTeX, the > todonotes package (https://www.ctan.org/pkg/todonotes) seems a natural > choice. >
I hacked together something like this a while ago when I needed to add inline-comments that would later be exported as odt-comments (but I also made it work for latex). I chose to implement it via a unicode-bracket ❰❙❱, like this: ❰Simple comment❱ ❰Text that is commented on❙Comment❱ ❰[Author] Simple comment❱ ❰Commented text❙[Author] Comment❱ These are inserted with a custom command to make it easy (including an author-history-list selectable with helm). I've put it up in a gist if anyone finds it useful: https://gist.github.com/andersjohansson/6baa1e42ad4d7353e125 Cheers, Anders Johansson