1*46696af2SBarry Smith$ListHeader = "<HTML><HEAD><TITLE>PETSc Bibliography</TITLE>\ 2*46696af2SBarry Smith<style>\ 3*46696af2SBarry Smith<!--\ 4*46696af2SBarry Smithp.petsc { background:#CCCCFF }\ 5*46696af2SBarry Smithp.mcs { background:#DDFFDD }\ 6*46696af2SBarry Smith-->\ 7*46696af2SBarry Smith</style>\ 8*46696af2SBarry Smith</HEAD>\ 9*46696af2SBarry Smith<BODY BGCOLOR=\"FFFFFF\">\n"; 10*46696af2SBarry Smith$ListFooter = "</BODY></HTML>\n"; 11*46696af2SBarry Smith$BibFileName = "petscapps-bib.html"; 12*46696af2SBarry Smith$EntryStart = "<p class=\"\@origin\@\">\n"; 13*46696af2SBarry Smith$EntryEnd = "</p>\n"; 14*46696af2SBarry Smith$HeaderStart = ""; 15*46696af2SBarry Smith$HeaderEnd = "\n"; 16*46696af2SBarry Smith$GroupEmphStart = ""; 17*46696af2SBarry Smith$GroupEmphEnd = ""; 18*46696af2SBarry Smith%htmlformatsArticle = ( 'starttitle' => '<font color="#0000ff">', 'endtitle' => '</font>', 'startjournal' => '<font color="#ff0000">', 'endjournal' => '</font>'); 19*46696af2SBarry Smith%htmlformatsInProc = ( 'starttitle' => '<font color="#0000ff">', 'endtitle' => '</font>', 'startbooktitle' => '<font color="#ff0000">', 'endbooktitle' => '</font>'); 20*46696af2SBarry Smith%htmlformatsInBook = ( 'startchapter' => '<font color="#0000ff">', 'endchapter' => '</font>', 'starttitle' => '<font color="#ff0000">', 'endtitle' => '</font>'); 21*46696af2SBarry Smithreturn 1; 22