Does cb2bib remove drudgery from bibliography creation?


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Does cb2bib remove drudgery from bibliography creation?
# 1  
Old 11-11-2008
Does cb2bib remove drudgery from bibliography creation?

11-11-2008 09:11 AM
Many academics and students share a dirty secret: They hate the drudgery of assembling bibliographies. The cb2bib utility attempts to remove some of the drudgery, at least so far as online references go. Designed primarily for use with BibTeX, cb2bib can also be used with other formats once you export the results. However, whether the application actually makes bibliographical tasks easier seems questionable.



Source...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
remove(3C)						   Standard C Library Functions 						remove(3C)

NAME
remove - remove file SYNOPSIS
#include <stdio.h> int remove(const char *path); DESCRIPTION
The remove() function causes the file or empty directory whose name is the string pointed to by path to be no longer accessible by that name. A subsequent attempt to open that file using that name will fail, unless the file is created anew. For files, remove() is identical to unlink(). For directories, remove() is identical to rmdir(). See rmdir(2) and unlink(2) for a detailed list of failure conditions. RETURN VALUES
Upon successful completion, remove() returns 0. Otherwise, it returns -1 and sets errno to indicate an error. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Standard | +-----------------------------+-----------------------------+ |MT-Level |MT-Safe | +-----------------------------+-----------------------------+ SEE ALSO
rmdir(2), unlink(2), attributes(5), standards(5) SunOS 5.10 14 Aug 2002 remove(3C)