TAB in citations?
Is it possible to include TABs in a citation? In the prefix field?
Two things I would like to accomplish:
1) A Tab as start of the footnote, before the individual prefix, after the footnote number.
2) A TAB in the bibliography, to accomplish this format:
Schmitdt 1990(TAB) Joseph Schmidt, This is the Title,....
Has anyone done this?
Two things I would like to accomplish:
1) A Tab as start of the footnote, before the individual prefix, after the footnote number.
2) A TAB in the bibliography, to accomplish this format:
Schmitdt 1990(TAB) Joseph Schmidt, This is the Title,....
Has anyone done this?
For a tab inside a citation or bibliography entry, try using:
<text value="&#9;">
I'm not sure it will make its way through into the document, but that's the XML entity for it.http://wordribbon.tips.net/T009475_Automatically_Adding_Tabs_in_Footnotes.html
For the bibliography, you could also look at second field align or work with display right/left.
Is there some place where I can read what these options do?
It still seems to me a better way to do this in the style, than to have to manually enter them in Word.
This just seems to add " " before the author.
(not the space but the exact symbols...)
Similarly, I don't think display is handled properly there.
Unfortunately this doesn't stay, instead it changes into a space inside the quotes. And that also renders in Word.
Unfortunately this wouldn't really work for citations, even if the TAB was kept: It appears after the citation prefix (which is entered in Zotero), which wouldn't make sense.
I guess there is simply no way to do this satisfactorily.
In the bibliography it may work, if the character would actually stay inside the code, which so far it hasn't.
Schmidt 1996 Albert Schmidt: Xyz and b, Berlin 1996.
Before Albert there should be a tab.
You can also put this into prefixes, which will solve this for you for citations, if you include it in the layout part:
<layout prefix="&#9;" delimiter="; ">
As for the second-field-align suggestion, that's a setting for the bibliography:
second-field-align="flush"
it essentially puts a tab after the first group/macro
This is a snippet from my style:
<bibliography hanging-indent="true" et-al-min="15" et-al-use-first="10">
<layout>
<text variable="citation-number" suffix=".&#9;"/>
<group delimiter=". " suffix=". ">
<text macro="author"/>
<text macro="title"/>
</group>
Now the output is:
1[TAB] Author. Title...
If I then define the "Bibliography" style in Word based on hanging indent the bibliography numbers will be aligned on the left and all the bibliography data will be aligned.
second-field-align="flush"