亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? protex

?? CCSM Research Tools: Community Atmosphere Model (CAM)
??
?? 第 1 頁 / 共 2 頁
字號:
                 $verb = 1;                 $first_verb = 1; }              else {                 for ($i = 3; $i <= $#Fld; $i++) {                    printf '%s ', $Fld[$i];}#               end for}#            end if              ### print " ";              $have_desc = 1;              next LINE;}#         end if}#      end if#       Handle optional keywords (these will appear as verbatim)#       --------------------------------------------------------        if ($prologue) {KEY:       foreach $key ( @keys ) {              if ( /$key/ ) {                 if ($verb) {                    printf "\\end{verbatim}";                    $verb = 0; }                 else {                    printf "\n\\bigskip";}#               end if                 $k = sprintf('%s', $key);                 $ln = length($k);                 ###printf "\\subsubsection*{%s}\n", substr($k, 2, $ln - 1);                 ###printf "{\\Large \\em %s}\n", ucfirst lc substr($k, 2, $ln - 1);                 $_ = $key;                 if( /USES/ || /INPUT/ || /OUTPUT/ ) {                    printf "{\\em %s}\n", substr($k, 2, $ln - 1); } # italics                 else {                    printf "{\\sf %s}\n", substr($k, 2, $ln - 1); # san serif}#               end if                 printf "\\begin{verbatim} ";                 $verb = 1;                 $first_verb = 1;                 if ( $key eq "!INTERFACE:" )        { $have_intf = 1; }                 if ( $key eq "!CALLING SEQUENCE:" ) { $have_intf = 1; }                 if ( $key eq "!REVISION HISTORY:" ) { $have_hist = 1; }                 next LINE;}#            end if}#         end foreach}#      end if#       End of prologue#       ---------------        if ($Fld[1] eq $eop_string) {           if ($verb) {              print "\\end{verbatim}";              $verb = 0;}#         end if           $prologue = 0;#           &check_if_all_there(); # check if all required keyword are there.           if ( $opt_l ) {              $Fld[1] = $boc_string;}           else { next LINE; }}#      end if        unless ( $opt_s ) {##          Beginning of source code section#          --------------------------------           if ($Fld[1] eq $boc_string) {              print ' ';              print '%/////////////////////////////////////////////////////////////';              $first = 0;              $prologue = 0;              $source = 1;              ### printf "\\subsubsection*{CONTENTS:}\n\n", $Fld[3];              printf "{\\sf CONTENTS:}";              printf "\n \\begin{verbatim}\n";              $verb = 1;              next LINE;}#         end if#          End of source code#          ------------------           if ($Fld[1] eq $eoc_string) {              &do_eoc();              $prologue = 0;              next LINE;}#         end if}#      end unless   #   Prologue or Introduction, print regular line (except for !)#   -----------------------------------------------------------    if ($prologue||$intro) {        if ( $verb && $#Fld == 1 && ( $Fld[1] eq $comment_string ) ) {           next LINE;                # to eliminate excessive blanks }#      end if        if ( $Fld[2] eq "\\ev" ) {   # special handling           $_ = $comment_string . " \\end{verbatim}";}#      end if        s/^$comment_string/ /;       # replace comment string with blank#       $line = sprintf('%s', $_);   # not necessary -- comment str is absent#       $ln = length($line);         # not necessary -- comment str is absent        unless ( $first_verb ) { printf "\n "; }        printf '%s', $_;#       printf '%s', substr($line, 1, $ln - 1);     # comment str is absent        $first_verb = 0;        next LINE;}#  end if#   Source code: print the full line#   --------------------------------    if ($source) {        print $_;        next LINE;}#  end if}#   end inner loop for processing each line of the input file #   ---------------------------------------------------------}# end main loop for each command-line argument # --------------------------------------------  print $_;  if ( $source ) { &do_eoc(); }       print '%...............................................................';  unless ( $opt_b ) {     print "\\end{document}";}#end unless#----------------------------------------------------------------------  sub CheckOpts#    Checks options against a given list.  Outputs error message#    for any invalid option.##    Usage:#       $rc = &CheckOpts ( options, valid_reg_options,#                                   valid_sw_options,#                                   quiet_mode )##       character: options - options to be checked. (e.g. -df+x)  The#                            list must begin with a positive or#                            negative sign.  If no sign appears at the#                            beginning or by itself, then the argument#                            is not recognized as a list of options.#       character: valid_reg_options - list of valid regular options.#                            (i.e. options that are associated only#                            eith negative sign.)#       character: valid_sw_options - list of valid switch options.#                            (i.e. options that can be associated with#                            either a positive or negative sign.#       logical:   quiet mode (optional) If true then print no error#                            messages.#       integer:   rc      - return code#                            = -1 if the arguement, options, is#                               not recognized as a list of options#                            =  0 if all options are valid.#                            >  0 for the number of invalid options.# {    local($options,           $valid_reg_options,           $valid_sw_options,           $quiet_mode ) = @_;     if ( $options eq "+" ||          $options eq "-" ) {return -1}     local(@Options) = split( / */, $options );     if ( $Options[ $[ ] ne "-" &&          $Options[ $[ ] ne "+" ) {return -1;}     local($option, $option_sign, $valid_list, $pos);     local($errs)    = 0;     foreach $option ( @Options ) {        if ( $option eq "-" ||             $option eq "+" ) {$option_sign = $option;}        else {           if ( $option_sign eq "-" )              { $valid_list = $valid_reg_options                            . $valid_sw_options; }           else              { $valid_list = $valid_sw_options; }           $pos = index ($valid_list,$option);            if ( $pos < $[ &&                $quiet_mode ) {              $errs++;              print STDERR "Invalid option: $option_sign$option \n"; }#         end if}#      end if}#   end foreach     return $errs;}#end sub GetOpts  sub GetOpts#    Gets options.  If an option is valid,  then opt_[option] is#    set to 0 or 1 as a side effect if the option is preceeded by#    a positive or negative sign.##    Usage:#       $rc = &GetOpts ( options, valid_options )##       character: options - options to be checked. (e.g. -df+x)  The#                            list must begin with a positive or#                            negative sign.  If no sign appears at the#                            beginning or by itself, then the argument#                            is not recognized as a list of options.#       character: valid_options - list of valid options (e.g. dfhx)#       integer:   rc      - return code#                            = -1 if the arguement, options, is#                               not recognized as a list of options.#                            =  0 otherwise# {    local($options,$valid_options) = @_;     if ( $options eq "+" ||          $options eq "-" ) {return -1}     local(@Options)       = split( / */, $options );     if ( $Options[ $[ ] ne "-" &&          $Options[ $[ ] ne "+" ) {return -1;}     local($option, $option_sign);     foreach $option ( @Options ) {        if ( $option eq "-" ||             $option eq "+" ) {           $option_sign = $option; }        else {           if ( index ($valid_options,$option) >= $[ ) {              if ( $option_sign eq "-" ) {${"opt_$option"} = 1;}              if ( $option_sign eq "+" ) {${"opt_$option"} = 0;};}#         end if}#      end if}#   end foreach     return 0;}#end sub GetOpts  sub SetOpt#    Sets option flags.  For the last input option that is in a#    list, the flag opt_[option] is set to 1 as a side effect.#    For all other options in the list, opt_[option] is set to 0.##    Usage:#       $rc = &SetOpt ( options, valid_options )##       character: options - options to be checked. (e.g. -df+x)  The#                            list must begin with a positive or#                            negative sign.  If no sign appears at the#                            beginning or by itself, then the argument#                            is not recognized as a list of options.#       character: valid_options - list of valid options (e.g. def )#       integer:   rc      - return code#                            = -1 if the arguement, options, is#                               not recognized as a list of options.#                            =  0 otherwise#       Note: For the examples provided for the input arguments,#             $opt_d = 0, $opt_e = 0, and $opt_f = 1, since the #             input option, -f, was the last in the argument,#             option.# {    local($options,$valid_options) = @_;     if ( $options eq "+" ||          $options eq "-" ) {return -1}     local(@Options)       = split( / */, $options       );     local(@ValidOptions)  = split( / */, $valid_options );     if ( $Options[ $[ ] ne "-" &&          $Options[ $[ ] ne "+" ) {return -1;}     local($option, $option_sign);     foreach $option ( @Options ) {        if ( $option ne "-" &&             $option ne "+" ) {           if ( index ($valid_options,$option) >= $[ ) {              foreach $valid_option (@ValidOptions ) {                 ${"opt_$valid_option"} = 0;}#            end foreach              ${"opt_$option"} = 1;}#         end if}#      end if}#   end foreach  return 0;}#end sub SetOptsub print_help {    print "Usage:     protex [-hbACFS] [+-nlsxf] [src_file(s)]";    print " ";    print " Options:";    print "     -h   Help mode: list command line options";    print "     -b   Bare mode, meaning no preamble, etc.";     print "     +-n  New Page for each subsection (wastes paper)";    print "     +-l  Listing mode, default is prologues only";    print "     +-s  Shut-up mode, i.e., ignore any code from BOC to EOC";    print "     +-x  No LaTeX mode, i.e., put !DESCRIPTION: in verbatim mode";    print "     +-f  No source file info";    print "     -A   Ada code";    print "     -C   C++ code";    print "     -F   F90 code";    print "     -S   Shell script";    print " ";    print "  The options can appear in any order.  The options, -h and -b,";    print "  affect the input from all files listed on command-line input.";    print "  Each of the remaining options effects only the input from the";    print "  files listed after the option and prior to any overriding";    print "  option.  The plus sign turns off the option."; }# end sub print_helpsub print_notice {    print "%                **** IMPORTANT NOTICE *****" ;    print "% This LaTeX file has been automatically produced by ProTeX v. 1.1";    print "% Any changes made to this file will likely be lost next time";    print "% this file is regenerated from its source. Send questions ";    print "% to Arlindo da Silva, dasilva\@gsfc.nasa.gov";    print " ";}# sub print_noticesub print_preamble {  unless ( $opt_b ) {    print "%------------------------ PREAMBLE --------------------------";    print "\\documentclass[11pt]{article}";    print "\\usepackage{amsmath}";    print "\\usepackage{epsfig}";    print "\\usepackage{hangcaption}";    print "\\textheight     9in";    print "\\topmargin      0pt";    print "\\headsep        1cm";    print "\\headheight     0pt";    print "\\textwidth      6in";    print "\\oddsidemargin  0in";    print "\\evensidemargin 0in";    print "\\marginparpush  0pt";    print "\\pagestyle{myheadings}";    print "\\markboth{}{}";    print "%-------------------------------------------------------------";}#end unless    print "\\parskip        0pt";    print "\\parindent      0pt";    print "\\baselineskip  11pt";}# end sub print_preamblesub print_macros {    print " ";    print "%--------------------- SHORT-HAND MACROS ----------------------";    print "\\def\\bv{\\begin{verbatim}}";    print "\\def\\ev\{\\end\{verbatim}}";    print "\\def\\be{\\begin{equation}}";    print "\\def\\ee{\\end{equation}}";    print "\\def\\bea{\\begin{eqnarray}}";    print "\\def\\eea{\\end{eqnarray}}";    print "\\def\\bi{\\begin{itemize}}";    print "\\def\\ei{\\end{itemize}}";    print "\\def\\bn{\\begin{enumerate}}";    print "\\def\\en{\\end{enumerate}}";    print "\\def\\bd{\\begin{description}}";    print "\\def\\ed{\\end{description}}";    print "\\def\\({\\left (}";    print "\\def\\){\\right )}";    print "\\def\\[{\\left [}";    print "\\def\\]{\\right ]}";    print "\\def\\<{\\left  \\langle}";    print "\\def\\>{\\right \\rangle}";    print "\\def\\cI{{\\cal I}}";    print "\\def\\diag{\\mathop{\\rm diag}}";    print "\\def\\tr{\\mathop{\\rm tr}}";    print "%-------------------------------------------------------------";}# end sub print_macrossub do_beg {    unless ( $opt_b ) {    if ( $begdoc == 0 ) {        if ( $tpage ) {            print "\\title{@title}";            print "\\author{{\\sc @author}\\\\ {\\em @affiliation}}";            print "\\date{@date}";        }        print "\\begin{document}";        if ( $tpage ) {            print "\\maketitle";        }        print "\\tableofcontents";        print "\\newpage";        $begdoc = 1;     }  }}# end sub do_begsub do_eoc {        print ' ';        if ($verb) {            print "\\end{verbatim}";            $verb = 0;        }        $source = 0;}# end sub do_eocsub set_missing {  $have_name = 0;      # have routine name?  $have_desc = 0;      # have description?  $have_intf = 0;      # have interface?  $have_hist = 0;      # have revision history?  $name_is = "UNKNOWN";}# end sub set_missing    sub check_if_all_there {$have_name || die "ProTeX: invalid prologue, missing !ROUTINE: or !IROUTINE: in <$name_is>";$have_desc || die "ProTeX: invalid prologue, missing !DESCRIPTION: in <$name_is>";$have_intf || die "ProTeX: invalid prologue, missing !INTERFACE: in <$name_is>";$have_hist || die "ProTeX: invalid prologue, missing !REVISION HISTORY: in <$name_is>";}# end sub check_if_all_there

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
蜜臀久久久99精品久久久久久| 高清shemale亚洲人妖| 久久成人免费网| 免费一区二区视频| 亚洲一区二区三区爽爽爽爽爽 | 久久精品在这里| 亚洲欧美国产77777| 欧美bbbbb| 欧美亚洲高清一区| 精品国精品自拍自在线| 久久女同性恋中文字幕| 精品成人一区二区三区四区| 欧美日韩成人一区二区| 欧洲精品中文字幕| 日韩欧美国产1| 日韩欧美国产三级电影视频| 亚洲成人免费观看| 久久久亚洲精品一区二区三区| 91女厕偷拍女厕偷拍高清| 日本不卡中文字幕| 中文字幕在线不卡国产视频| 久久精品国产久精国产爱| 国产高清不卡二三区| 亚洲国产精品久久艾草纯爱| 午夜av区久久| 蜜臀av性久久久久蜜臀aⅴ四虎| 日韩精品成人一区二区三区| 国产精品一区免费在线观看| 麻豆国产欧美日韩综合精品二区| 老司机精品视频在线| 国产美女娇喘av呻吟久久| 欧美三级日本三级少妇99| 国产精品久久久久永久免费观看| 午夜激情一区二区| 国产v日产∨综合v精品视频| 欧美日精品一区视频| 中文字幕制服丝袜一区二区三区| 亚洲丰满少妇videoshd| 91丨九色丨国产丨porny| 欧美激情一二三区| 成人一二三区视频| 亚洲国产成人在线| 欧美午夜片在线观看| 国产精品66部| 久久亚洲精精品中文字幕早川悠里| 中文字幕欧美三区| 国产做a爰片久久毛片| 精品国产乱码久久久久久闺蜜| 色噜噜夜夜夜综合网| 亚洲成av人片在线观看| 色一情一伦一子一伦一区| 国产农村妇女毛片精品久久麻豆| 久久精品免费观看| 老司机精品视频在线| 亚洲一区二区四区蜜桃| 国产欧美精品一区二区色综合朱莉 | 久久综合久久鬼色中文字| 日韩国产在线一| 欧美一二三区精品| 国产精品538一区二区在线| 日韩毛片精品高清免费| 欧美午夜电影一区| 国产日韩影视精品| 国产日韩亚洲欧美综合| 成人午夜私人影院| 亚洲小说欧美激情另类| 日韩视频一区二区三区在线播放| 黄色资源网久久资源365| 中文字幕制服丝袜一区二区三区| 欧美日本乱大交xxxxx| 国产精品一卡二卡在线观看| 《视频一区视频二区| 欧美精品高清视频| 91一区二区在线| 国产成人午夜视频| 久久精品999| 亚洲一区二区三区爽爽爽爽爽| 精品国产三级a在线观看| 91激情在线视频| 成人午夜电影网站| 日本一区二区三区四区| 色狠狠桃花综合| 91成人在线观看喷潮| 欧美色图天堂网| 欧美图片一区二区三区| 欧美视频一区二区在线观看| 欧美日韩亚洲丝袜制服| 欧美精品日韩综合在线| 欧美色国产精品| 麻豆精品精品国产自在97香蕉| 亚洲激情在线播放| 国产精品亲子伦对白| 久久久亚洲精品一区二区三区 | 色婷婷综合久久久久中文 | 91在线高清观看| 国产成人久久精品77777最新版本 国产成人鲁色资源国产91色综 | 精品一区二区免费在线观看| 秋霞成人午夜伦在线观看| 香港成人在线视频| 亚洲v中文字幕| 一区二区三区国产| 婷婷夜色潮精品综合在线| 亚洲成人1区2区| 日韩经典中文字幕一区| 免费在线观看一区| 日本一不卡视频| 国产揄拍国内精品对白| 国产一区二区福利视频| 成人午夜av影视| 在线免费观看日本一区| 4hu四虎永久在线影院成人| 欧美一级二级在线观看| 久久在线观看免费| 国产精品免费观看视频| 一区二区三区蜜桃网| 亚洲18影院在线观看| 国精品**一区二区三区在线蜜桃| 国产成人99久久亚洲综合精品| av一区二区三区在线| 欧美精品三级日韩久久| 久久久www成人免费毛片麻豆| 中文字幕一区二区三区四区| 丝袜脚交一区二区| 国产精品亚洲第一| 91精品国模一区二区三区| 国产精品天美传媒沈樵| 五月婷婷激情综合| 91丨porny丨户外露出| 欧美一级淫片007| 亚洲免费观看高清完整| 国产在线视频不卡二| 在线亚洲一区观看| 日本一区二区久久| 黑人巨大精品欧美黑白配亚洲| 色天使色偷偷av一区二区| 久久久精品免费观看| 香港成人在线视频| 色素色在线综合| 亚洲三级电影网站| 国产精品综合视频| 日韩欧美一级特黄在线播放| 亚洲国产精品一区二区久久恐怖片 | 国产精品久久久久一区| 狠狠色伊人亚洲综合成人| 欧美日本一区二区三区四区 | 中文字幕日韩精品一区| 国产乱子轮精品视频| 日韩精品中文字幕一区二区三区 | 欧美va亚洲va香蕉在线| 视频一区在线播放| 欧美三级蜜桃2在线观看| 亚洲人一二三区| 欧美在线视频全部完| 亚洲一区二区欧美| 91久久香蕉国产日韩欧美9色| 国产精品久久久久aaaa樱花 | 欧美高清一级片在线| 亚洲一区在线视频观看| 欧美日本一区二区在线观看| 亚洲超碰精品一区二区| 欧美精品久久一区| 韩国欧美国产1区| 久久精品亚洲乱码伦伦中文| 高清av一区二区| 亚洲综合视频在线| 在线成人免费观看| 狠狠v欧美v日韩v亚洲ⅴ| 欧美国产精品一区二区| 99久久久久免费精品国产 | 午夜精品久久久久久久久| 日韩三级视频在线看| 国产69精品久久久久777| 一区二区三区日韩在线观看| 欧美日韩高清一区| 成人夜色视频网站在线观看| 一区二区三区鲁丝不卡| 制服丝袜中文字幕一区| 国产91露脸合集magnet| 亚洲va天堂va国产va久| 久久久青草青青国产亚洲免观| 色婷婷一区二区| 国产黄人亚洲片| 日韩av电影一区| 亚洲欧美日韩久久| 26uuu国产电影一区二区| 欧洲一区二区三区在线| 国产精品69毛片高清亚洲| 午夜精品久久久久久久久| 亚洲国产精品传媒在线观看| 欧美日韩一区二区欧美激情 | 一区二区三区国产豹纹内裤在线| 日韩精品一区二区三区视频 | 久久中文娱乐网| 欧美嫩在线观看| 欧美午夜精品一区二区蜜桃| heyzo一本久久综合| 国产乱子伦视频一区二区三区| 免费高清在线一区| 亚洲va欧美va人人爽午夜| 亚洲永久免费av|