[Feature request] Labelling the ''highlight text colours"
Hi-
I'd love it Zotero would allow us to label the "highlight text" colours so that we could come up with a scheme, e.g. yellow=minor points, red=major points, etc. etc.
Thanks!
I'd love it Zotero would allow us to label the "highlight text" colours so that we could come up with a scheme, e.g. yellow=minor points, red=major points, etc. etc.
Thanks!
That's interesting. I wonder though if you could not use the colored tag possibilities that already exist. True though that in that case you will have to tag all your highlights, which would imply that in the making of it you will have to make more clicks (as compared to what you are describing) which slow down your workflow.
Also, you could perfectly use the color assignment that you describe for yourself or your team as a general convention, code of conduct, without having a menu, button, or whatever that formally named the highlight colors you are using. Recent updates enable up to 8 colors, so for example, let it 3 colors for importance hierarchy (low, medium, high) ; then 1 color for each common academic paper structure - previous work ; method; results; argument and discussion that is 4 items counting up to 7 colors. Remains one color to mark agreement/disagreement with the authors. That is quite reasonable isn't it?
I mean everything is possible I guess (I am not a dev), but at the community level and with limited ressources it worth addressing some second thoughts as for the urgency of this need, or if that feature is already doable with minor workarounds - with all respects.
{{if color =='#ff6666'}}
<p> major point {{highlight}} {{citation}} {{comment}}</p>
{{elseif color == '#ffd400'}}
<p> minor point {{highlight}} {{citation}} {{comment}}</p>
{{else}}
<p> {{highlight}} {{citation}} {{comment}}</p>
{{endif}}
Thanks!
If necessary, see a more complete template with all colors ready to paste:
https://forums.zotero.org/discussion/comment/430829/#Comment_430829
Also reproduced below:
{{if color =='#ffd400'}}
<p> yellow highlight: {{highlight}} {{citation}} {{comment}}</p>
{{elseif color == '#ff6666'}}
<p> red highlight: {{highlight}} {{citation}} {{comment}}</p>
{{elseif color == '#5fb236'}}
<p> green highlight {{highlight}} {{citation}} {{comment}}</p>
{{elseif color == '#2ea8e5'}}
<p> blue highlight: {{highlight}} {{citation}} {{comment}}</p>
{{elseif color == '#a28ae5'}}
<p> purple highlight: {{highlight}} {{citation}} {{comment}}</p>
{{elseif color == '#e56eee'}}
<p> magenta highlight: {{highlight}} {{citation}} {{comment}}</p>
{{elseif color == '#f19837'}}
<p> orange highlight: {{highlight}} {{citation}} {{comment}}</p>
{{elseif color == '#aaaaaa'}}
<p> gray highlight: {{highlight}} {{citation}} {{comment}}</p>
{{else}}
<p> {{highlight}} {{citation}} {{comment}}</p>
{{endif}}
Just replace "yellow highlight: ", "red highlight: " and so on with the re-name you need.
NB: Observe the use of colon and space at the end ": " and see if you want it or not.
NB2: Rest of the pattern follow the template that was set by default i.e. {highlight citation comment} on the same line, without blockquote (see link to Zotero documentation for templates in mentioned above by poettli).
NB3: the last part {{else}} is superfluous in the case where all the colors are labeled. Because then there won't be any scenarios matching the "else" case (all colors are used). I put it to maintain the logic explicit, and because if you do not label all colors (let say gray stay as default), all you have to do is to delete the corresponding block starting with {{elseif ...}} (or {{if}} in the special case of the yellow) and keep the {{else}} block at the end.
Correct me if I am wrong, changing the value of the (adv) preference "extensions.zotero.annotations.noteTemplates.highlight" allows to customise how the annotation of a highlights shows the data (citation, order, comments, etc) conditional of the highlight color. Is it right?
I wasn't looking for that exactly, but simply change the label of highlight colors. I mean, when a user selects the color of highlight, Zotero shows the colors in a rectangle and the color name at its side (redundant unless for accessibility purposes). I was wondering if it is possible to change those labels. Do you know if this is possible?
Thanks <3
I'm glad if it helps!