Hi, I need your help again. I've a bibliography and some entries references to websites. Unfortunately the URL is not always rendered and the name ist always parsed as name of a person, not from an organisation etc. What I want to achieve is to use the standard aps style, but with additionally the following two rules: 1. The name is always rendered without abbrevations (I guess, this is authorconversion=normal). 2. If an URL is given, it is always rendered. My input is a bib-file. Here is a minimal example: input.bib ``` @misc{objective-c, author = "Apple Inc.", note = "Online; accessed at 31-July-2017", title = "About Objective-C", url = "https://developer.apple.com/library/content/documentation/Cocoa/Conceptual/P...", year = "2014" } ``` test.tex ``` \usebtxdataset[default][input.bib] \usebtxdefinitions[aps] \setupbtx[default:cite][alternative=num] \setupbtx[default:list][authorconversion=normal] \starttext According to Apple Inc., Objective-C is the main programming language, when writing software for MacOS~\cite[objective-c]. \placelistofpublications \stoptext ``` I've tried to understand the manual, yout can see some of my attempts in the minimal example. But I don't get really far. Can you give me a hint? Gerion
Am Montag, 31. Juli 2017, 04:23:16 CEST schrieb Gerion Entrup:
Hi,
I need your help again. I've a bibliography and some entries references to websites. Unfortunately the URL is not always rendered and the name ist always parsed as name of a person, not from an organisation etc.
What I want to achieve is to use the standard aps style, but with additionally the following two rules: 1. The name is always rendered without abbrevations (I guess, this is authorconversion=normal). 2. If an URL is given, it is always rendered.
My input is a bib-file. Here is a minimal example:
input.bib ``` @misc{objective-c, author = "Apple Inc.", note = "Online; accessed at 31-July-2017", title = "About Objective-C", url = "https://developer.apple.com/library/content/documentation/Cocoa/Conceptual/P...", year = "2014" } ```
test.tex ``` \usebtxdataset[default][input.bib] \usebtxdefinitions[aps] \setupbtx[default:cite][alternative=num] \setupbtx[default:list][authorconversion=normal]
\starttext According to Apple Inc., Objective-C is the main programming language, when writing software for MacOS~\cite[objective-c].
\placelistofpublications \stoptext ```
I've tried to understand the manual, yout can see some of my attempts in the minimal example. But I don't get really far.
Can you give me a hint?
I have "fixed" this with directly modifying the publ-imp-aps.mkvi. I guess, this is the worst way to achive this thing, but I don't know a better one. Here is the patch, if someone is interested. Gerion --- publ-imp-aps.mkvi.original 2017-07-31 21:23:14.736856430 +0200 +++ publ-imp-aps.mkvi 2017-07-31 21:24:46.860462851 +0200 @@ -58,7 +58,7 @@ \definebtx [aps:\s!list] [aps] - [\c!authorconversion=normalshort] + [\c!authorconversion=normal] \definebtx [aps:\s!list:author] @@ -1117,6 +1117,12 @@ \startsetups btx:aps:list:misc \fastsetup{btx:aps:list:electronic} + \btxdoif {url} { + \btxspace + \btxleftparenthesis + \goto{\hyphenatedurl{\btxflush{url}}}[url(\btxflush{url})] + \btxrightparenthesis + } % Note that organization is an "ignored" field. \stopsetups
On 7/31/2017 9:28 PM, Gerion Entrup wrote:
Am Montag, 31. Juli 2017, 04:23:16 CEST schrieb Gerion Entrup:
Hi,
I need your help again. I've a bibliography and some entries references to websites. Unfortunately the URL is not always rendered and the name ist always parsed as name of a person, not from an organisation etc.
What I want to achieve is to use the standard aps style, but with additionally the following two rules: 1. The name is always rendered without abbrevations (I guess, this is authorconversion=normal). 2. If an URL is given, it is always rendered.
My input is a bib-file. Here is a minimal example:
input.bib ``` @misc{objective-c, author = "Apple Inc.", note = "Online; accessed at 31-July-2017", title = "About Objective-C", url = "https://developer.apple.com/library/content/documentation/Cocoa/Conceptual/P...", year = "2014" } ```
test.tex ``` \usebtxdataset[default][input.bib] \usebtxdefinitions[aps] \setupbtx[default:cite][alternative=num] \setupbtx[default:list][authorconversion=normal]
\starttext According to Apple Inc., Objective-C is the main programming language, when writing software for MacOS~\cite[objective-c].
\placelistofpublications \stoptext ```
I've tried to understand the manual, yout can see some of my attempts in the minimal example. But I don't get really far.
Can you give me a hint?
I have "fixed" this with directly modifying the publ-imp-aps.mkvi. I guess, this is the worst way to achive this thing, but I don't know a better one.
Here is the patch, if someone is interested.
Gerion
--- publ-imp-aps.mkvi.original 2017-07-31 21:23:14.736856430 +0200 +++ publ-imp-aps.mkvi 2017-07-31 21:24:46.860462851 +0200 @@ -58,7 +58,7 @@ \definebtx [aps:\s!list] [aps] - [\c!authorconversion=normalshort] + [\c!authorconversion=normal]
\definebtx [aps:\s!list:author] @@ -1117,6 +1117,12 @@
\startsetups btx:aps:list:misc \fastsetup{btx:aps:list:electronic} + \btxdoif {url} { + \btxspace + \btxleftparenthesis + \goto{\hyphenatedurl{\btxflush{url}}}[url(\btxflush{url})] + \btxrightparenthesis + } % Note that organization is an "ignored" field. \stopsetups
just load the aps style and then in your own style put the overloads (you can then use \setupbtx) ----------------------------------------------------------------- Hans Hagen | PRAGMA ADE Ridderstraat 27 | 8061 GH Hasselt | The Netherlands tel: 038 477 53 69 | www.pragma-ade.nl | www.pragma-pod.nl -----------------------------------------------------------------
participants (2)
-
Gerion Entrup
-
Hans Hagen