public:publications:theme_auto

This is an old revision of the document!


NICAM publication list by theme

Please check publication list by year for complete list.

<php>

  // Load template
  $txt_tem = file( 'theme_template.txt' );
  $label = array();
  $name  = array();
  for ( $i=0; $i<count($txt_tem); $i++ )
  {
      //print( 'debug: ' . $txt_tem[$i] );
      if( preg_match( '/^\| *([^| ]+) *\| *([^|]+) *\|/', $txt_tem[$i], $matches )  )
      {
          //print( " -> match: $matches[1], $matches[2] \n" );
          array_push( $label, $matches[1] );
          array_push( $name,  $matches[2] );
      }
  }
  //for ( $j=0; $j<count($label); $j++ )
  //{
  //    print( "label=$label[$j]: $name[$j] \n" );
  //}
  // Load publication
  $txt_pub = file( 'year.txt' );
  // Show
  for ( $j=0; $j<count($label); $j++ )
  {
      //print( "label=$label[$j] \n" );
      print( "===== $name[$j] =====\n" );
      for ( $i=0; $i<count($txt_pub); $i++ )
      {
          //if( preg_match( "/LABEL:$label[$j]/", $txt_pub[$i] )  )
          if( preg_match( "/\/\*LABEL:$label[$j]\*\//", $txt_pub[$i] )  )
          {
              print( $txt_pub[$i] );
          }
      }
      print( "\n" );
  }

</php>

  • public/publications/theme_auto.1646987379.txt.gz
  • Last modified: 2022/03/11 17:29
  • by admin