<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Generator" CONTENT="MS Exchange Server version 6.5.6944.0">
<TITLE>RE: [texhax] Modifying BibTeX-style</TITLE>
</HEAD>
<BODY>
<!-- Converted from text/plain format -->
<P><FONT SIZE=2>> I would like to make a little modification in the dinat-style for<BR>
> bibliographies, but my limited understanding of the scripting language<BR>
> doesn't produce the anticipated results. Here's what I need to do:<BR>
><BR>
> dinat generates output in the form [<key>] Authors, Title, ...<BR>
><BR>
> I want to eliminate the key in the braces. The part in the style I<BR>
> identified as generating the output looks like follows:<BR>
><BR>
> [snip]<BR>
<BR>
Try this (though I haven't time to test it):<BR>
<BR>
FUNCTION {out.bibitem.start}<BR>
% start of entry<BR>
{ newline$<BR>
"\bibitem[]{" cite$ * "}" *<BR>
write$<BR>
newline$<BR>
"\dinatlabel{" dinat.label * "} " *<BR>
write$<BR>
""<BR>
before.all 'output.state :=<BR>
}<BR>
<BR>
You may want to cut out [] too.<BR>
<BR>
Cheers, Phil</FONT>
</P>
</BODY>
</HTML>