<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>

<meta http-equiv="content-type" content="text/html; charset=GB2312">
</head>
<body bgcolor="#ffffff" text="#000000">
I use the example code in the "<a href="http://roxygen.org/roxygen.pdf">vignette</a>",
then get three files: pseudoprime.R, pseudoprime-package.R, fermat.R <br>
<br>
I use these codes to generate the documentation:<br>
<br>
library( roxygen )<br>
package.skeleton( "pseudoprime", <br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; code_files =
c("fermat.R","pseudoprime.r","pseudoprime-package.R"),<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; force = T,<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; namespace = T )<br>
roxygenize( "pseudoprime", <br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; roxygen.dir = "pseudoprime.roxygen")<br>
<br>
But the DESCRIPTION is:<br>
<br>
Package: pseudoprime<br>
Type: Package<br>
Title: What the package does (short line)<br>
Version: 1.0<br>
Date: 2010-04-30<br>
Author: <b>Who wrote it</b><br>
Maintainer: <b>Who to complain to <a class="moz-txt-link-rfc2396E" href="mailto:yourfault@somewhere.net">&lt;yourfault@somewhere.net&gt;</a></b><br>
Description: <b>More about what it does (maybe more than one line)</b><br>
License: <b>What license is it under?</b><br>
LazyLoad: <b>yes</b><br>
Collate: 'fermat.R' 'pseudoprime-package.R' 'pseudoprime.r'<br>
<br>
Could these bold information be automatically generated according the
description in the pseudoprime-package.R?<br>
<br>
Thank you very much.<br>
<br>
Best regards,<br>
Bangyou Zheng<br>
</body>
</html>