Displaying 4 results from an estimated 4 matches for "inseealso".
1997 Aug 04
0
R-alpha: sd2rd version 0.1-5
Oops,
Just found a typo. Here's the updated version.
-k
***********************************************************************
#!/usr/bin/perl
$VERSION = "0.1-5";
$\ = "\n";
$parenLevel = 0;
$inVerbatim = 0;
$inSeeAlso = 0;
$doprint = 1;
$needArg = 1;
$needVal = 0;
$output = "";
use Getopt::Long;
GetOptions (("x")) || &usage();
while (<>) {
chop;
&substitute unless /^\./;
@word = split;
if (/^\s*$/) {
if ($inVerbatim) {
&output("BLANK");
}...
1997 Jun 09
1
R-alpha: sd2rd v0.1-1
...are mapped into PARA so that e.g. reference sections come
out better
*) comments are mapped into comments :-)
Please have a try.
-k
************************************************************************
#!/usr/bin/perl -w
$VERSION = "0.1-1";
$\ = "\n";
$parenLevel = 0;
$inSeeAlso = 0;
$doprint = 1;
$needArg = 1;
$needVal = 0;
$output = "";
while (<>) {
chop;
&substitute unless /^\./;
@word = split;
if (/^\s*$/) { &output("PARA"); }
if (/^[^.]/) { &output($_); }
if (/^\.AG/) {
if ($needArg) {
§ion...
1997 Jul 01
1
R-alpha: sd2rd v0.1-3
Thanks to Martin, there is another update of the S doc -> R doc script.
It now correctly maps .SE into SECTION.
-k
***********************************************************************
#!/usr/bin/perl -w
$VERSION = "0.1-3";
$\ = "\n";
$parenLevel = 0;
$inVerbatim = 0;
$inSeeAlso = 0;
$doprint = 1;
$needArg = 1;
$needVal = 0;
$output = "";
$opt_x = 0;
use Getopt::Long;
GetOptions (("x")) || &usage();
while (<>) {
chop;
&substitute unless /^\./;
@word = split;
if (/^\s*$/) {
if ($inVerbatim) {
&output("BLANK...
1997 Jun 10
0
R-alpha: sd2rd 0.1-2
...ther stable and pretty much usable, so
perhaps one could include it in the R distribution's `etc' directory.
-k
*********************************************************************
#!/usr/bin/perl -w
$VERSION = "0.1-2";
$\ = "\n";
$parenLevel = 0;
$inVerbatim = 0;
$inSeeAlso = 0;
$doprint = 1;
$needArg = 1;
$needVal = 0;
$output = "";
$opt_x = 0;
use Getopt::Long;
GetOptions (("x")) || &usage();
while (<>) {
chop;
&substitute unless /^\./;
@word = split;
if (/^\s*$/) {
if ($inVerbatim) {
&output("BLANK...