Style error: Academy of Management Review and Academy of Management Journal
These two citation styles should capitalize in the title, following a colon but currently do not.
Example from AMR style guide:
Fry, L. W., & Slocum, J. W., Jr. 1984. Technology, structure, and
workgroup effectiveness: A test of a contingency model.
Academy of Management Journal, 27: 221–246.
Thanks, Tom
Example from AMR style guide:
Fry, L. W., & Slocum, J. W., Jr. 1984. Technology, structure, and
workgroup effectiveness: A test of a contingency model.
Academy of Management Journal, 27: 221–246.
Thanks, Tom
This is an old discussion that has not been active in a long time. Before commenting here, you should strongly consider starting a new discussion instead. If you think the content of this discussion is still relevant, you can link to it from your new discussion.
If anyone is interested, here is the code:
F6::
; Sentence case
Convert_Sentence()
RETURN
Convert_Sentence()
{
Clip_Save:= ClipboardAll
Clipboard:= ""
Send ^c{delete}
StringLower, Clipboard, Clipboard
Clipboard := RegExReplace(Clipboard, "(((^|([.!?:]+\s+))[a-z])| i | i')", "$u1")
Send %Clipboard%
Len:= Strlen(Clipboard) + 1
Clipboard:= Clip_Save
}
As for your regexp - Zotero's own convert to sentence case - which doesn't capitalize after colon anymore - also removes the space before the colon which still gets imported from some library catalogs. I'd recommend removing that, too (i.e. put a \s* before your first parenthesis). You'll also run into trouble with your version if you have quotation marks in the title before a letter that you'd want capitalized. Not sure if that's relevant for you, but might be for others using this.