ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Small capitals for the name in m-bib
@ 2005-12-16  9:49 Renaud AUBIN
  2005-12-16 13:58 ` Thomas A. Schmitz
  2005-12-16 18:31 ` Taco Hoekwater
  0 siblings, 2 replies; 4+ messages in thread
From: Renaud AUBIN @ 2005-12-16  9:49 UTC (permalink / raw)



[-- Attachment #1.1: Type: text/plain, Size: 403 bytes --]


Hi all,

Taco, surely you're the one able to answer...

I want to have last names (and "von") of the authors in small capitals 
in my bibliography. Since, I'm not m-bib expert, how to manage the point 
properly ?

Taco, I'm translating a bibli-num-fr.tex and bibl-apa-fr.tex, do you 
want them when it's over ? Maybe is there some other french people that 
can check it out and improve it ?

Thanks,



[-- Attachment #1.2: Type: text/html, Size: 736 bytes --]

[-- Attachment #2: Type: text/plain, Size: 139 bytes --]

_______________________________________________
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Small capitals for the name in m-bib
  2005-12-16  9:49 Small capitals for the name in m-bib Renaud AUBIN
@ 2005-12-16 13:58 ` Thomas A. Schmitz
  2005-12-16 20:42   ` Renaud AUBIN
  2005-12-16 18:31 ` Taco Hoekwater
  1 sibling, 1 reply; 4+ messages in thread
From: Thomas A. Schmitz @ 2005-12-16 13:58 UTC (permalink / raw)



[-- Attachment #1.1: Type: text/plain, Size: 1434 bytes --]

I'm not Taco, but this should work (it works for me):

authors' names are set up by commands like \invertedautor (bibtex  
manual p. 3-4). You can write your own version of that. If you want  
the last name first, in small caps, like this "AUBIN, Renaud," you  
can use this version:


\def\myinvertedauthor#1#2#3#4#5%
    {\bgroup\sc#3\egroup\bibalternative{surnamesep}%
     \bibdoif{#1}{#1\unskip}%
     \bibdoifelse{#2}{\bibalternative{vonsep}#2\unskip}{\unskip}%
     \bibdoifelse{#5}{\bibalternative{juniorsep}#5\unskip}{\unskip}%
}

Then, tell bibtex to use this command:


\setuppublicationlist
    [artauthor=\myinvertedauthor,
     editor=\myinvertedauthor,
     author=\myinvertedauthor]

Needless to say, this will only work if you use a font that actually  
has small caps...

HTH

Thomas

On Dec 16, 2005, at 10:49 AM, Renaud AUBIN wrote:

>
> Hi all,
>
> Taco, surely you're the one able to answer...
>
> I want to have last names (and "von") of the authors in small  
> capitals in my bibliography. Since, I'm not m-bib expert, how to  
> manage the point properly ?
>
> Taco, I'm translating a bibli-num-fr.tex and bibl-apa-fr.tex, do  
> you want them when it's over ? Maybe is there some other french  
> people that can check it out and improve it ?
>
> Thanks,
>
>
> _______________________________________________
> ntg-context mailing list
> ntg-context@ntg.nl
> http://www.ntg.nl/mailman/listinfo/ntg-context


[-- Attachment #1.2: Type: text/html, Size: 2751 bytes --]

[-- Attachment #2: Type: text/plain, Size: 139 bytes --]

_______________________________________________
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Small capitals for the name in m-bib
  2005-12-16  9:49 Small capitals for the name in m-bib Renaud AUBIN
  2005-12-16 13:58 ` Thomas A. Schmitz
@ 2005-12-16 18:31 ` Taco Hoekwater
  1 sibling, 0 replies; 4+ messages in thread
From: Taco Hoekwater @ 2005-12-16 18:31 UTC (permalink / raw)


Renaud AUBIN wrote:
> 
> Hi all,
> 
> Taco, surely you're the one able to answer...
> 
> I want to have last names (and "von") of the authors in small capitals 
> in my bibliography. Since, I'm not m-bib expert, how to manage the point 
> properly ?

Thanks, Thomas (for answering, you were spot on).

> Taco, I'm translating a bibli-num-fr.tex and bibl-apa-fr.tex, do you 
> want them when it's over ? Maybe is there some other french people that 

Yes please, do e-mail them after you are finished, so I can include
them in the next version.

> can check it out and improve it ?

That I do not know.

Cheers,

Taco

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Small capitals for the name in m-bib
  2005-12-16 13:58 ` Thomas A. Schmitz
@ 2005-12-16 20:42   ` Renaud AUBIN
  0 siblings, 0 replies; 4+ messages in thread
From: Renaud AUBIN @ 2005-12-16 20:42 UTC (permalink / raw)



[-- Attachment #1.1: Type: text/plain, Size: 2117 bytes --]


Hi Thomas,

Thank you, it work for me. Eventually, I use :

\def\mynormalauthor#1#2#3#4#5%
{\bibdoif{#1}{#1\bibalternative{firstnamesep}}%
\bibdoif{#2}{#2\bibalternative{vonsep}}%
\bgroup\sc#3\egroup\bibalternative{surnamesep}\unskip
\bibdoif{#5}{#5\unskip}}


Thomas A. Schmitz a écrit :

> I'm not Taco, but this should work (it works for me):
>
> authors' names are set up by commands like \invertedautor (bibtex 
> manual p. 3-4). You can write your own version of that. If you want 
> the last name first, in small caps, like this "AUBIN, Renaud," you can 
> use this version:
>
>
> \def\myinvertedauthor#1#2#3#4#5%
>    {\bgroup\sc#3\egroup\bibalternative{surnamesep}%
>     \bibdoif{#1}{#1\unskip}%
>     \bibdoifelse{#2}{\bibalternative{vonsep}#2\unskip}{\unskip}%
>     \bibdoifelse{#5}{\bibalternative{juniorsep}#5\unskip}{\unskip}%
> }
>
> Then, tell bibtex to use this command:
>
>
> \setuppublicationlist
>    [artauthor=\myinvertedauthor,
>     editor=\myinvertedauthor,
>     author=\myinvertedauthor]
>
> Needless to say, this will only work if you use a font that actually 
> has small caps...
>
> HTH
>
> Thomas
>
> On Dec 16, 2005, at 10:49 AM, Renaud AUBIN wrote:
>
>>
>> Hi all,
>>
>> Taco, surely you're the one able to answer...
>>
>> I want to have last names (and "von") of the authors in small 
>> capitals in my bibliography. Since, I'm not m-bib expert, how to 
>> manage the point properly ?
>>
>> Taco, I'm translating a bibli-num-fr.tex and bibl-apa-fr.tex, do you 
>> want them when it's over ? Maybe is there some other french people 
>> that can check it out and improve it ?
>>
>> Thanks,
>>
>>
>> _______________________________________________
>> ntg-context mailing list
>> ntg-context@ntg.nl <mailto:ntg-context@ntg.nl>
>> http://www.ntg.nl/mailman/listinfo/ntg-context
>
>
>------------------------------------------------------------------------
>
>_______________________________________________
>ntg-context mailing list
>ntg-context@ntg.nl
>http://www.ntg.nl/mailman/listinfo/ntg-context
>  
>


[-- Attachment #1.2: Type: text/html, Size: 3668 bytes --]

[-- Attachment #2: Type: text/plain, Size: 139 bytes --]

_______________________________________________
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2005-12-16 20:42 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-12-16  9:49 Small capitals for the name in m-bib Renaud AUBIN
2005-12-16 13:58 ` Thomas A. Schmitz
2005-12-16 20:42   ` Renaud AUBIN
2005-12-16 18:31 ` Taco Hoekwater

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).