Re: backend-bibtex.c + runbib

Damien Jade Duff <[email protected]>
Newsgroups gmane.text.refdb.devel
Message-ID <[email protected]>

 >  >        strcmp(type, "RPRT") == 0 || strcmp(type, "CONF") == 0 )
 >  >          {
 >  > /*djd 20060101 It may be that we want to put "HEAR" in here too???*/
 >  >
 >
 > Is "HEAR" really treated like a
 > book rather than like an article?
 >

Gidday,

I think you are probably right - in the examples I picked up from the
APA guidelines just now at your instigation, no collection title is
supplied. I only sugested the change because it was, like CONF, treated
as @PROCEEDINGS and my change to the logic for determining @TYPE changed
@PROCEEDINGS to @INPROCEEDINGS for both CONF and HEAR.

(@PROCEEDINGS is used to reference the whole show, @INPROCEEDINGS for a
part of the show - like a paper in a conference)

So the change I made to @TYPE is wrong for HEAR.
It should be instead...

else if (strcmp(type, "CONF") == 0 ) {
       strcat(*(ptr_rendinfo->ptr_ref), "@INPROCEEDINGS{ ");
}
else if ( strcmp(type, "HEAR") == 0) {
       strcat(*(ptr_rendinfo->ptr_ref), "@PROCEEDINGS{ ");
}

 >
 > You know bibtex far better than me so I assume this change is correct.
 >

Yes, you can trust me... ;-)
To be honest, I'm learning bibtex while I learn refdb. But, as you
suggest, it is the practical experience of actually using the package
that is most important.

Thanks again for your support.

Peace
Damien



-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.