Change line spacing in Notes?
The default setting for Notes tab in Zotero creates a space between a previous and next sentence when one does a carriage return between sentences. Is there any way to format Notes so that the line spacing after a carriage return doesn't add an extra space. (In MS Word, this would be adjusted by selecting format -> paragraph -> spacing before/after (set at 0 point) and setting the line space to single.
In other words, rather than the default Notes format:
xxxx
(space between sentences)
xxxx
I would like Zotero Notes to take the format:
xxxx
xxxx
(no space between sentences)
Is there a way to adjust this paragraph level space in Zotero?
Thanks!!!
Matthew
In other words, rather than the default Notes format:
xxxx
(space between sentences)
xxxx
I would like Zotero Notes to take the format:
xxxx
xxxx
(no space between sentences)
Is there a way to adjust this paragraph level space in Zotero?
Thanks!!!
Matthew
If you just want a line break within a paragraph, use Shift-Enter. If you really want to decrease the paragraph spacing, you can open the Config Editor in the Advanced pane of the preferences, search for
extensions.zotero.note.css
, and put in something likep { margin-top: .5em; margin-bottom: .5em; }
(or 0, if you really don't want paragraphs to be spaced out more than regular lines, but I wouldn't recommend that). Then restart Zotero.And just to note, this is purely a display setting that has no effect on output to anywhere else. Semantically, they're just paragraphs.
p { margin-top: 0em; margin-bottom: 0em; }
Is there a risk that this will create instability in the operation of Zotero? The Shift-Enter command works well for creating line breaks, but I prefer to get the line break with the Enter/Return key, and to use Enter/Return twice to get a paragraph break, similar to an MS Word document.
If there is no problem with that setting, I will probably go this route. Thanks again!