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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? latex.pm

?? 視頻監控網絡部分的協議ddns,的模塊的實現代碼,請大家大膽指正.
?? PM
?? 第 1 頁 / 共 4 頁
字號:
  # Start on new page if requested  $self->_output("\\clearpage\n") if $self->StartWithNewPage;}=item B<end_pod>Write the closing C<latex> code. Only writes something if AddPostambleis true. Writes a standard header unless a UserPostamble is defined.=cutsub end_pod {  my $self = shift;  # End string  my $end = '';  # Use the user version of the postamble if defined  if ($self->AddPostamble) {    if (defined $self->UserPostamble) {      $end = $self->UserPostamble;    } else {      # Check for index      my $makeindex = '\printindex';      $makeindex = '%% '. $makeindex  unless $self->MakeIndex;      $end = "$makeindex\n\n\\end{document}\n";    }  }  $self->_output($end);}=item B<command>Process basic pod commands.=cutsub command {  my $self = shift;  my ($command, $paragraph, $line_num, $parobj) = @_;  # return if we dont care  return if $command eq 'pod';  # Store a copy of the raw text in case we are in a =for  # block and need to preserve the existing latex  my $rawpara = $paragraph;  # Do the latex escapes  $paragraph = $self->_replace_special_chars($paragraph);  # Interpolate pod sequences in paragraph  $paragraph = $self->interpolate($paragraph, $line_num);  $paragraph =~ s/\s+$//;  # Replace characters that can only be done after   # interpolation of interior sequences  $paragraph = $self->_replace_special_chars_late($paragraph);  # Now run the command  if ($command eq 'over') {    $self->begin_list($paragraph, $line_num);  } elsif ($command eq 'item') {    $self->add_item($paragraph, $line_num);  } elsif ($command eq 'back') {    $self->end_list($line_num);  } elsif ($command eq 'head1') {    # Store the name of the section    $self->{_CURRENT_HEAD1} = $paragraph;    # Print it    $self->head(1, $paragraph, $parobj);  } elsif ($command eq 'head2') {    $self->head(2, $paragraph, $parobj);  } elsif ($command eq 'head3') {    $self->head(3, $paragraph, $parobj);  } elsif ($command eq 'head4') {    $self->head(4, $paragraph, $parobj);  } elsif ($command eq 'head5') {    $self->head(5, $paragraph, $parobj);  } elsif ($command eq 'head6') {    $self->head(6, $paragraph, $parobj);  } elsif ($command eq 'begin') {    # pass through if latex    if ($paragraph =~ /^latex/i) {      # Make sure that subsequent paragraphs are not modfied before printing      $self->{_dont_modify_any_para} = 1;    } else {      # Suppress all subsequent paragraphs unless       # it is explcitly intended for latex      $self->{_suppress_all_para} = 1;    }  } elsif ($command eq 'for') {    # =for latex    #   some latex    # With =for we will get the text for the full paragraph    # as well as the format name.    # We do not get an additional paragraph later on. The next    # paragraph is not governed by the =for    # The first line contains the format and the rest is the    # raw code.    my ($format, $chunk) = split(/\n/, $rawpara, 2);    # If we have got some latex code print it out immediately    # unmodified. Else do nothing.    if ($format =~ /^latex/i) {      # Make sure that next paragraph is not modfied before printing      $self->_output( $chunk );    }  } elsif ($command eq 'end') {    # Reset suppression    $self->{_suppress_all_para} = 0;    $self->{_dont_modify_any_para} = 0;  } elsif ($command eq 'pod') {    # Do nothing  } else {    carp "Command $command not recognised at line $line_num\n";  }}=item B<verbatim>Verbatim text=cutsub verbatim {  my $self = shift;  my ($paragraph, $line_num, $parobj) = @_;  # Expand paragraph unless in =begin block  if ($self->{_dont_modify_any_para}) {    # Just print as is    $self->_output($paragraph);  } else {    return if $paragraph =~ /^\s+$/;    # Clean trailing space    $paragraph =~ s/\s+$//;    # Clean tabs. Routine taken from Tabs.pm    # by David Muir Sharnoff muir@idiom.com,    # slightly modified by hsmyers@sdragons.com 10/22/01    my @l = split("\n",$paragraph);    foreach (@l) {      1 while s/(^|\n)([^\t\n]*)(\t+)/	$1. $2 . (" " x 		  (8 * length($3)		   - (length($2) % 8)))	  /sex;    }    $paragraph = join("\n",@l);    # End of change.    $self->_output('\begin{verbatim}' . "\n$paragraph\n". '\end{verbatim}'."\n");  }}=item B<textblock>Plain text paragraph.=cutsub textblock {  my $self = shift;  my ($paragraph, $line_num, $parobj) = @_;  # print Dumper($self);  # Expand paragraph unless in =begin block  if ($self->{_dont_modify_any_para}) {    # Just print as is    $self->_output($paragraph);    return;  }  # Escape latex special characters  $paragraph = $self->_replace_special_chars($paragraph);  # Interpolate interior sequences  my $expansion = $self->interpolate($paragraph, $line_num);  $expansion =~ s/\s+$//;  # Escape special characters that can not be done earlier  $expansion = $self->_replace_special_chars_late($expansion);  # If we are replacing 'head1 NAME' with a section  # we need to look in the paragraph and rewrite things  # Need to make sure this is called only on the first paragraph  # following 'head1 NAME' and not on subsequent paragraphs that may be  # present.  if ($self->{_CURRENT_HEAD1} =~ /^NAME/i && $self->ReplaceNAMEwithSection()) {    # Strip white space from start and end    $paragraph =~ s/^\s+//;    $paragraph =~ s/\s$//;    # Split the string into 2 parts    my ($name, $purpose) = split(/\s+-\s+/, $expansion,2);    # Now prevent this from triggering until a new head1 NAME is set    $self->{_CURRENT_HEAD1} = '_NAME';    # Might want to clear the Label() before doing this (CHECK)    # Print the heading    $self->head(1, $name, $parobj);    # Set the labeling in case we want unique names later    $self->Label( $self->_create_label( $name, 1 ) );    # Raise the Head1Level by one so that subsequent =head1 appear    # as subsections of the main name section unless we are already    # at maximum [Head1Level() could check this itself - CHECK]    $self->Head1Level( $self->Head1Level() + 1)      unless $self->Head1Level == $#LatexSections;    # Now write out the new latex paragraph    $purpose = ucfirst($purpose);    $self->_output("\n\n$purpose\n\n");  } else {    # Just write the output    $self->_output("\n\n$expansion\n\n");  }}=item B<interior_sequence>Interior sequence expansion=cutsub interior_sequence {  my $self = shift;  my ($seq_command, $seq_argument, $pod_seq) = @_;  if ($seq_command eq 'B') {    return "\\textbf{$seq_argument}";  } elsif ($seq_command eq 'I') {    return "\\textit{$seq_argument}";  } elsif ($seq_command eq 'E') {    # If it is simply a number    if ($seq_argument =~ /^\d+$/) {      return chr($seq_argument);    # Look up escape in hash table    } elsif (exists $HTML_Escapes{$seq_argument}) {      return $HTML_Escapes{$seq_argument};    } else {      my ($file, $line) = $pod_seq->file_line();      warn "Escape sequence $seq_argument not recognised at line $line of file $file\n";      return;    }  } elsif ($seq_command eq 'Z') {    # Zero width space    return '{}';  } elsif ($seq_command eq 'C') {    return "\\texttt{$seq_argument}";  } elsif ($seq_command eq 'F') {    return "\\emph{$seq_argument}";  } elsif ($seq_command eq 'S') {    # non breakable spaces    my $nbsp = '~';    $seq_argument =~ s/\s/$nbsp/g;    return $seq_argument;  } elsif ($seq_command eq 'L') {    my $link = new Pod::Hyperlink($seq_argument);    # undef on failure    unless (defined $link) {      carp $@;      return;    }    # Handle internal links differently    my $type = $link->type;    my $page = $link->page;    if ($type eq 'section' && $page eq '') {      # Use internal latex reference       my $node = $link->node;      # Convert to a label      $node = $self->_create_label($node);      return "\\S\\ref{$node}";    } else {      # Use default markup for external references      # (although Starlink would use \xlabel)      my $markup = $link->markup;      my ($file, $line) = $pod_seq->file_line();      return $self->interpolate($link->markup, $line);    }  } elsif ($seq_command eq 'P') {    # Special markup for Pod::Hyperlink    # Replace :: with / - but not sure if I want to do this    # any more.    my $link = $seq_argument;    $link =~ s|::|/|g;    my $ref = "\\emph{$seq_argument}";    return $ref;  } elsif ($seq_command eq 'Q') {    # Special markup for Pod::Hyperlink    return "\\textsf{$seq_argument}";  } elsif ($seq_command eq 'X') {    # Index entries    # use \index command    # I will let '!' go through for now    # not sure how sub categories are handled in X<>    my $index = $self->_create_index($seq_argument);    return "\\index{$index}\n";  } else {    carp "Unknown sequence $seq_command<$seq_argument>";  }}=back=head2 List MethodsMethods used to handle lists.=over 4=item B<begin_list>Called when a new list is found (via the C<over> directive).Creates a new C<Pod::List> object and stores it on the list stack.  $parser->begin_list($indent, $line_num);=cutsub begin_list {  my $self = shift;  my $indent = shift;  my $line_num = shift;  # Indicate that a list should be started for the next item  # need to do this to work out the type of list  push ( @{$self->lists}, new Pod::List(-indent => $indent, 					-start => $line_num,					-file => $self->input_file,				       )	        );}=item B<end_list>Called when the end of a list is found (the C<back> directive).Pops the C<Pod::List> object off the stack of lists and writesthe C<latex> code required to close a list.  $parser->end_list($line_num);=cutsub end_list {  my $self = shift;  my $line_num = shift;  unless (defined $self->lists->[-1]) {    my $file = $self->input_file;    warn "No list is active at line $line_num (file=$file). Missing =over?\n";    return;  }  # What to write depends on list type  my $type = $self->lists->[-1]->type;  # Dont write anything if the list type is not set  # iomplying that a list was created but no entries were  # placed in it (eg because of a =begin/=end combination)  $self->_output("\\end{$type}\n")    if (defined $type && length($type) > 0);    # Clear list  pop(@{ $self->lists});}=item B<add_item>Add items to the list. The first time an item is encountered (determined from the state of the current C<Pod::List> object)the type of list is determined (ordered, unnumbered or description)and the relevant latex code issued.  $parser->add_item($paragraph, $line_num);=cutsub add_item {  my $self = shift;  my $paragraph = shift;  my $line_num = shift;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品久久久久久无| 色综合久久中文字幕| 欧美一区二区国产| 日韩中文字幕麻豆| 制服丝袜国产精品| 九色综合国产一区二区三区| 亚洲精品在线观| 国产不卡高清在线观看视频| 中文av一区二区| 在线观看欧美日本| 日本不卡不码高清免费观看| 精品国免费一区二区三区| 国产精品夜夜嗨| 亚洲精品v日韩精品| 欧美日韩一区成人| 精品一区中文字幕| 中文字幕一区二区三区四区不卡| 91美女视频网站| 午夜成人免费电影| 久久精品一区二区三区av| 成人黄色电影在线| 婷婷一区二区三区| 精品国产乱码久久久久久蜜臀| 91精品在线观看入口| 日本aⅴ免费视频一区二区三区| 欧美大片国产精品| 99久久综合国产精品| 天堂蜜桃一区二区三区| 欧美国产一区二区| 欧美精选一区二区| 岛国一区二区三区| 日本欧美肥老太交大片| 国产精品日产欧美久久久久| 欧美另类变人与禽xxxxx| 国产乱码字幕精品高清av| 亚洲黄色免费网站| 久久色视频免费观看| 91传媒视频在线播放| 国产麻豆91精品| 午夜伦理一区二区| 日韩毛片精品高清免费| 日韩欧美aaaaaa| 欧美在线观看视频一区二区三区| 国内精品久久久久影院色| 亚洲综合激情另类小说区| 久久综合久久综合九色| 欧美日韩黄色一区二区| kk眼镜猥琐国模调教系列一区二区| 天天免费综合色| 亚洲精品视频在线| 日本一区二区三区免费乱视频| 日韩视频免费观看高清完整版在线观看| 成人av在线一区二区| 九色|91porny| 日韩成人一级片| 亚洲综合久久久| 亚洲视频一区二区在线观看| 国产调教视频一区| 精品久久久影院| 91精品午夜视频| 欧美日韩大陆一区二区| 色综合中文字幕国产| 久88久久88久久久| 蜜桃av噜噜一区| 日精品一区二区三区| 亚洲电影在线播放| 一区二区三区视频在线看| 中文字幕亚洲区| 国产人成一区二区三区影院| 久久久久久免费网| 欧美精品一区二区三区久久久| 欧美一区二区三区免费视频| 欧美日韩免费电影| 欧美日韩亚洲高清一区二区| 91黄色免费网站| 色综合天天综合网国产成人综合天| 国产69精品久久久久777| 国产成人精品一区二区三区四区| 紧缚奴在线一区二区三区| 捆绑变态av一区二区三区| 人人精品人人爱| 免费成人av在线| 麻豆91精品视频| 激情五月婷婷综合网| 国产精品一区二区x88av| 国产91对白在线观看九色| av在线不卡电影| 色网站国产精品| 欧美日韩国产精品自在自线| 3d成人h动漫网站入口| 91精品国产综合久久婷婷香蕉| 制服丝袜成人动漫| 久久先锋影音av鲁色资源| 欧美韩日一区二区三区四区| 最新欧美精品一区二区三区| 一区二区三区**美女毛片| 亚洲午夜在线视频| 另类小说图片综合网| 国产精品一线二线三线精华| av中文字幕在线不卡| 欧美亚洲综合在线| 欧美mv日韩mv国产网站| 国产日韩欧美精品综合| 亚洲精品国久久99热| 亚洲成av人片一区二区| 久久99蜜桃精品| 99久久99久久精品免费看蜜桃| 在线观看一区二区视频| 日韩午夜精品电影| 国产日本欧美一区二区| 亚洲最新视频在线观看| 老司机精品视频线观看86| 成人午夜精品一区二区三区| 在线视频一区二区免费| 精品美女在线播放| 亚洲欧美精品午睡沙发| 蜜桃视频在线观看一区二区| 国产成人在线视频网站| 欧洲亚洲国产日韩| 久久久天堂av| 亚洲成人精品一区| 国产精品羞羞答答xxdd| 欧美三级乱人伦电影| 国产日韩欧美在线一区| 一区二区三区四区在线播放| 精品一区免费av| 欧美亚洲高清一区| 国产女人18毛片水真多成人如厕| 亚洲午夜激情网页| 丰满岳乱妇一区二区三区| 制服丝袜在线91| 亚洲欧美日韩一区二区| 国产在线不卡一区| 欧美精品精品一区| 中文字幕在线观看不卡| 美日韩一区二区| 精品视频资源站| 国产精品天美传媒| 精品一区二区三区欧美| 欧美性受xxxx黑人xyx| 中文字幕免费一区| 日本在线不卡视频一二三区| 色八戒一区二区三区| 亚洲国产精品99久久久久久久久| 偷拍与自拍一区| 在线观看成人小视频| 国产精品日韩精品欧美在线| 国产一区二区剧情av在线| 日韩欧美一级二级| 天堂一区二区在线| 欧美视频在线一区| 亚洲人成网站色在线观看| 懂色av中文一区二区三区| 亚洲精品一区二区精华| 日本最新不卡在线| 欧美日韩午夜在线| 洋洋av久久久久久久一区| 99精品视频在线免费观看| 欧美国产日本韩| 粉嫩一区二区三区在线看 | 99久久免费国产| 国产喷白浆一区二区三区| 国产剧情在线观看一区二区| 欧美va日韩va| 国模无码大尺度一区二区三区| 日韩免费观看高清完整版 | 久久99国产精品久久99果冻传媒| 欧美日韩国产a| 天堂午夜影视日韩欧美一区二区| 欧美巨大另类极品videosbest | 国产午夜亚洲精品午夜鲁丝片| 精品亚洲欧美一区| 精品电影一区二区| 在线观看免费视频综合| 亚洲激情六月丁香| 欧美性xxxxx极品少妇| 婷婷久久综合九色综合伊人色| 欧美日韩日本视频| 奇米777欧美一区二区| 欧美不卡一二三| 国产精品一区一区| 国产精品乱人伦中文| 97久久精品人人爽人人爽蜜臀| 亚洲欧美日韩中文播放| 在线看国产一区| 丝袜美腿亚洲一区| 2023国产精品| 国产99久久精品| 亚洲日本在线看| 欧美日韩一本到| 精品一区二区久久| 国产精品美女久久久久久久| 一本久道久久综合中文字幕| 香蕉av福利精品导航| 精品久久久久久综合日本欧美| 不卡电影一区二区三区| 亚洲一卡二卡三卡四卡 | 欧美日韩国产首页| 久久99久国产精品黄毛片色诱| 国产亚洲1区2区3区|