I am typing a Chinese document by latex on Mac, TexStudio. Part of my bibliography are in Chinese. I do not have any problem showing the Chinese texts and bibliography, but have trouble replacing the citation "Smith and Johnson (1998)” with “Smith 與 Johnson (1998)”, where "與", the character between “Smith" and “Johnson” is the “and” in Chinese. In other words, I try to change the “ and “ between the two authors to Chinese.
I understand I need to rewrite the following lines in the .bst file
Code: Select all
FUNCTION {bst.cite.and}
{ " and " } % (default)
Code: Select all
FUNCTION {bst.cite.and}
%{ " and " } % (default)
{ " 與 " } %
jjmm