<?php

require_once('php/aqr.php.inc');

// Page title

page_header('AQR Group Publications');

?>

<h1>Publications</h1>

The list of publications is arranged chronologically in reverse order of
appearance.

<P>

Please note: due to copyright agreements with journals and
conferences, full electronic versions of the published papers are
available within the University of Edinburgh <EM>only</EM>.

<ul>
<?php

$this_year = strftime('%Y');
for ($i=$this_year; $i>=1995; $i--) {
	echo '<li /><a href="pubs.php?year='.$i.'">'.$i."</a>\n";
}

?>

</ul>

<?php // Do not delete or modify anything below this line.

page_footer();

?>
