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

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

?? apalike.bst

?? 支持向量積SVM的工具箱
?? BST
?? 第 1 頁 / 共 2 頁
字號:
      editor format.key output
    }
    { format.authors output.nonnull
      crossref missing$
	{ "author and editor" editor either.or.check }
	'skip$
      if$
    }
  if$
  output.year.check				% special for apalike
  new.block
  format.btitle "title" output.check
  crossref missing$
    { format.bvolume output
      format.chapter.pages "chapter and pages" output.check
      new.block
      format.number.series output
      new.sentence
      publisher "publisher" output.check
      address output
    }
    { format.chapter.pages "chapter and pages" output.check
      new.block
      format.book.crossref output.nonnull
    }
  if$
  format.edition output
  new.block
  note output
  fin.entry
}

FUNCTION {incollection}
{ output.bibitem
  format.authors "author" output.check
  author format.key output				% special for
  output.year.check					% apalike
  new.block
  format.title "title" output.check
  new.block
  crossref missing$
    { format.in.ed.booktitle "booktitle" output.check
      format.bvolume output
      format.number.series output
      format.chapter.pages output
      new.sentence
      publisher "publisher" output.check
      address output
      format.edition output
    }
    { format.incoll.inproc.crossref output.nonnull
      format.chapter.pages output
    }
  if$
  new.block
  note output
  fin.entry
}

FUNCTION {inproceedings}
{ output.bibitem
  format.authors "author" output.check
  author format.key output				% special for
  output.year.check					% apalike
  new.block
  format.title "title" output.check
  new.block
  crossref missing$
    { format.in.ed.booktitle "booktitle" output.check
      format.bvolume output
      format.number.series output
      format.pages output
      address output					% for apalike
      new.sentence					% there's no year
      organization output				% here so things
      publisher output					% are simpler
    }
    { format.incoll.inproc.crossref output.nonnull
      format.pages output
    }
  if$
  new.block
  note output
  fin.entry
}

FUNCTION {conference} { inproceedings }

FUNCTION {manual}
{ output.bibitem
  format.authors output
  author format.key output				% special for
  output.year.check					% apalike
  new.block
  format.btitle "title" output.check
  organization address new.block.checkb
  organization output
  address output
  format.edition output
  new.block
  note output
  fin.entry
}

FUNCTION {mastersthesis}
{ output.bibitem
  format.authors "author" output.check
  author format.key output				% special for
  output.year.check					% apalike
  new.block
  format.title "title" output.check
  new.block
  "Master's thesis" format.thesis.type output.nonnull
  school "school" output.check
  address output
  new.block
  note output
  fin.entry
}

FUNCTION {misc}
{ output.bibitem
  format.authors output
  author format.key output				% special for
  output.year.check					% apalike
  new.block
  format.title output
  new.block
  howpublished output
  new.block
  note output
  fin.entry
}

FUNCTION {phdthesis}
{ output.bibitem
  format.authors "author" output.check
  author format.key output				% special for
  output.year.check					% apalike
  new.block
  format.btitle "title" output.check
  new.block
  "PhD thesis" format.thesis.type output.nonnull
  school "school" output.check
  address output
  new.block
  note output
  fin.entry
}

FUNCTION {proceedings}
{ output.bibitem
  format.editors output
  editor format.key output				% special for
  output.year.check					% apalike
  new.block
  format.btitle "title" output.check
  format.bvolume output
  format.number.series output
  address output				% for apalike
  new.sentence					% we always output
  organization output				% a nonempty organization
  publisher output				% here
  new.block
  note output
  fin.entry
}

FUNCTION {techreport}
{ output.bibitem
  format.authors "author" output.check
  author format.key output				% special for
  output.year.check					% apalike
  new.block
  format.title "title" output.check
  new.block
  format.tr.number output.nonnull
  institution "institution" output.check
  address output
  new.block
  note output
  fin.entry
}

FUNCTION {unpublished}
{ output.bibitem
  format.authors "author" output.check
  author format.key output				% special for
  output.year.check					% apalike
  new.block
  format.title "title" output.check
  new.block
  note "note" output.check
  fin.entry
}

FUNCTION {default.type} { misc }

MACRO {jan} {"January"}

MACRO {feb} {"February"}

MACRO {mar} {"March"}

MACRO {apr} {"April"}

MACRO {may} {"May"}

MACRO {jun} {"June"}

MACRO {jul} {"July"}

MACRO {aug} {"August"}

MACRO {sep} {"September"}

MACRO {oct} {"October"}

MACRO {nov} {"November"}

MACRO {dec} {"December"}

MACRO {acmcs} {"ACM Computing Surveys"}

MACRO {acta} {"Acta Informatica"}

MACRO {cacm} {"Communications of the ACM"}

MACRO {ibmjrd} {"IBM Journal of Research and Development"}

MACRO {ibmsj} {"IBM Systems Journal"}

MACRO {ieeese} {"IEEE Transactions on Software Engineering"}

MACRO {ieeetc} {"IEEE Transactions on Computers"}

MACRO {ieeetcad}
 {"IEEE Transactions on Computer-Aided Design of Integrated Circuits"}

MACRO {ipl} {"Information Processing Letters"}

MACRO {jacm} {"Journal of the ACM"}

MACRO {jcss} {"Journal of Computer and System Sciences"}

MACRO {scp} {"Science of Computer Programming"}

MACRO {sicomp} {"SIAM Journal on Computing"}

MACRO {tocs} {"ACM Transactions on Computer Systems"}

MACRO {tods} {"ACM Transactions on Database Systems"}

MACRO {tog} {"ACM Transactions on Graphics"}

MACRO {toms} {"ACM Transactions on Mathematical Software"}

MACRO {toois} {"ACM Transactions on Office Information Systems"}

MACRO {toplas} {"ACM Transactions on Programming Languages and Systems"}

MACRO {tcs} {"Theoretical Computer Science"}

READ

FUNCTION {sortify}
{ purify$
  "l" change.case$
}

INTEGERS { len }

FUNCTION {chop.word}
{ 's :=
  'len :=
  s #1 len substring$ =
    { s len #1 + global.max$ substring$ }
    's
  if$
}

%			There are three apalike cases: one person (Jones),
%			two (Jones and de~Bruijn), and more (Jones et~al.).
%			This function is much like format.crossref.editors.
%
FUNCTION {format.lab.names}
{ 's :=
  s #1 "{vv~}{ll}" format.name$
  s num.names$ duplicate$
  #2 >
    { pop$ " et~al." * }
    { #2 <
	'skip$
	{ s #2 "{ff }{vv }{ll}{ jj}" format.name$ "others" =
	    { " et~al." * }
	    { " and " * s #2 "{vv~}{ll}" format.name$ * }
	  if$
	}
      if$
    }
  if$
}

FUNCTION {author.key.label}
{ author empty$
    { key empty$
	{ cite$ #1 #3 substring$ }
	'key					% apalike uses the whole key
      if$
    }
    { author format.lab.names }
  if$
}

FUNCTION {author.editor.key.label}
{ author empty$
    { editor empty$
	{ key empty$
	    { cite$ #1 #3 substring$ }
	    'key				% apalike uses the whole key
	  if$
	}
	{ editor format.lab.names }
      if$
    }
    { author format.lab.names }
  if$
}

FUNCTION {editor.key.label}
{ editor empty$
    { key empty$
	{ cite$ #1 #3 substring$ }
	'key			% apalike uses the whole key, no organization
      if$
    }
    { editor format.lab.names }
  if$
}

FUNCTION {calc.label}
{ type$ "book" =
  type$ "inbook" =
  or
    'author.editor.key.label
    { type$ "proceedings" =
	'editor.key.label			% apalike ignores organization
	'author.key.label			% for labeling and sorting
      if$
    }
  if$
  ", "							% these three lines are
  *							% for apalike, which
  year field.or.null purify$ #-1 #4 substring$		% uses all four digits
  *
  'label :=
}

FUNCTION {sort.format.names}
{ 's :=
  #1 'nameptr :=
  ""
  s num.names$ 'numnames :=
  numnames 'namesleft :=
    { namesleft #0 > }
    { nameptr #1 >
	{ "   " * }
	'skip$
      if$						% apalike uses initials
      s nameptr "{vv{ } }{ll{ }}{  f{ }}{  jj{ }}" format.name$ 't := % <= here
      nameptr numnames = t "others" = and
	{ "et al" * }
	{ t sortify * }
      if$
      nameptr #1 + 'nameptr :=
      namesleft #1 - 'namesleft :=
    }
  while$
}

FUNCTION {sort.format.title}
{ 't :=
  "A " #2
    "An " #3
      "The " #4 t chop.word
    chop.word
  chop.word
  sortify
  #1 global.max$ substring$
}

FUNCTION {author.sort}
{ author empty$
    { key empty$
	{ "to sort, need author or key in " cite$ * warning$
	  ""
	}
	{ key sortify }
      if$
    }
    { author sort.format.names }
  if$
}

FUNCTION {author.editor.sort}
{ author empty$
    { editor empty$
	{ key empty$
	    { "to sort, need author, editor, or key in " cite$ * warning$
	      ""
	    }
	    { key sortify }
	  if$
	}
	{ editor sort.format.names }
      if$
    }
    { author sort.format.names }
  if$
}

FUNCTION {editor.sort}
{ editor empty$
    { key empty$
	{ "to sort, need editor or key in " cite$ * warning$
	  ""
	}
	{ key sortify }
      if$
    }
    { editor sort.format.names }
  if$
}

%			apalike uses two sorting passes; the first one sets the
%			labels so that the `a's, `b's, etc. can be computed;
%			the second pass puts the references in "correct" order.
%			The presort function is for the first pass. It computes
%			label, sort.label, and title, and then concatenates.
FUNCTION {presort}
{ calc.label
  label sortify
  "    "
  *
  type$ "book" =
  type$ "inbook" =
  or
    'author.editor.sort
    { type$ "proceedings" =
	'editor.sort
	'author.sort
      if$
    }
  if$
  #1 entry.max$ substring$	% for
  'sort.label :=		% apalike
  sort.label			% style
  *
  "    "
  *
  title field.or.null
  sort.format.title
  *
  #1 entry.max$ substring$
  'sort.key$ :=
}

ITERATE {presort}

SORT		% by label, sort.label, title---for final label calculation

STRINGS { last.label next.extra }	% apalike labels are only for the text;

INTEGERS { last.extra.num }		% there are none in the bibliography

FUNCTION {initialize.extra.label.stuff}	% and hence there is no `longest.label'
{ #0 int.to.chr$ 'last.label :=
  "" 'next.extra :=
  #0 'last.extra.num :=
}

FUNCTION {forward.pass}
{ last.label label =
    { last.extra.num #1 + 'last.extra.num :=
      last.extra.num int.to.chr$ 'extra.label :=
    }
    { "a" chr.to.int$ 'last.extra.num :=
      "" 'extra.label :=
      label 'last.label :=
    }
  if$
}

FUNCTION {reverse.pass}
{ next.extra "b" =
    { "a" 'extra.label := }
    'skip$
  if$
  label extra.label * 'label :=
  extra.label 'next.extra :=
}

EXECUTE {initialize.extra.label.stuff}

ITERATE {forward.pass}

REVERSE {reverse.pass}

%				Now that the label is right we sort for real,
%				on sort.label then year then title.  This is
%				for the second sorting pass.
FUNCTION {bib.sort.order}
{ sort.label
  "    "
  *
  year field.or.null sortify
  *
  "    "
  *
  title field.or.null
  sort.format.title
  *
  #1 entry.max$ substring$
  'sort.key$ :=
}

ITERATE {bib.sort.order}

SORT		% by sort.label, year, title---giving final bibliography order

FUNCTION {begin.bib}
{ preamble$ empty$				% no \etalchar in apalike
    'skip$
    { preamble$ write$ newline$ }
  if$
  "\begin{thebibliography}{}" write$ newline$		% no labels in apalike
}

EXECUTE {begin.bib}

EXECUTE {init.state.consts}

ITERATE {call.type$}

FUNCTION {end.bib}
{ newline$
  "\end{thebibliography}" write$ newline$
}

EXECUTE {end.bib}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
99久久精品国产麻豆演员表| 亚洲欧美一区二区三区极速播放| 午夜国产精品影院在线观看| 欧美乱熟臀69xxxxxx| 日韩精品成人一区二区三区| 欧美精品高清视频| 美女在线观看视频一区二区| 久久久久国产成人精品亚洲午夜 | 91国产福利在线| 亚洲一区二区三区四区不卡| 日韩欧美亚洲国产另类| 国产综合色视频| 国产精品久久久久一区二区三区| 99久久精品费精品国产一区二区| 亚洲国产va精品久久久不卡综合 | 欧美精品一区二区三区在线播放| 国产又粗又猛又爽又黄91精品| 亚洲国产精品ⅴa在线观看| av爱爱亚洲一区| 午夜精品视频一区| 国产欧美一区二区三区沐欲| 一本色道亚洲精品aⅴ| 免费看黄色91| 中文字幕一区二区三| 欧美精品123区| 国产精品456| 亚洲bt欧美bt精品| 国产天堂亚洲国产碰碰| 欧洲精品视频在线观看| 国产做a爰片久久毛片| 一区二区三区精品视频| 久久久国产综合精品女国产盗摄| 91国模大尺度私拍在线视频| 国精品**一区二区三区在线蜜桃 | 午夜精品福利一区二区蜜股av| www亚洲一区| 在线欧美小视频| 极品少妇一区二区三区精品视频| 国产精品一二三在| 亚洲6080在线| 18涩涩午夜精品.www| 欧美xxxxxxxx| 欧美视频在线不卡| 色综合久久66| 丁香婷婷综合色啪| 男男视频亚洲欧美| 一区二区三区在线影院| 中文子幕无线码一区tr| 欧美mv日韩mv亚洲| 91精品国产入口在线| 一本久久精品一区二区| 国产成人精品亚洲日本在线桃色| 天天综合天天综合色| 亚洲欧美色图小说| 亚洲国产精品成人综合色在线婷婷 | 五月天久久比比资源色| 国产精品电影一区二区| 久久久蜜桃精品| 日韩欧美电影在线| 717成人午夜免费福利电影| 色8久久人人97超碰香蕉987| 成人影视亚洲图片在线| 国产激情一区二区三区四区 | 欧美亚日韩国产aⅴ精品中极品| 99久久婷婷国产精品综合| 国产精华液一区二区三区| 精品写真视频在线观看| 蜜臀av一区二区在线免费观看| 午夜激情久久久| 日韩中文欧美在线| 五月婷婷另类国产| 麻豆精品一二三| 久久99久久99| 国产精品一区免费在线观看| 国产曰批免费观看久久久| 精品系列免费在线观看| 国产福利一区二区三区视频| 国产成人8x视频一区二区| 国产成人av在线影院| 国产成人在线观看| 不卡的av中国片| 在线观看不卡一区| 欧美日韩亚洲高清一区二区| 欧美福利视频一区| 欧美一区二区久久| 久久精品一区四区| 1区2区3区欧美| 亚洲成人av在线电影| 日韩精品乱码免费| 国产在线精品一区二区不卡了 | 91丝袜国产在线播放| 色综合久久中文字幕综合网| 欧美自拍偷拍午夜视频| 日韩一卡二卡三卡| 日本亚洲一区二区| 韩国精品久久久| 不卡av在线免费观看| 欧美综合一区二区| 欧美一级黄色录像| 国产精品久久久久久久久免费樱桃 | 免费在线观看成人| 国产麻豆精品一区二区| 97精品久久久久中文字幕| 欧美日韩一区二区三区免费看| 日韩一区二区免费电影| 国产精品美女www爽爽爽| 亚洲丝袜另类动漫二区| 日韩激情视频在线观看| 国精产品一区一区三区mba视频| 99视频精品在线| 91精品国产欧美一区二区| 国产日韩精品一区二区三区| 一级女性全黄久久生活片免费| 日本成人在线视频网站| 成人亚洲一区二区一| 欧美日韩激情一区二区| 日本一区二区三区dvd视频在线| 亚洲精品视频免费观看| 裸体歌舞表演一区二区| 北岛玲一区二区三区四区| 欧美日韩不卡一区二区| 中文字幕电影一区| 日本特黄久久久高潮| 99九九99九九九视频精品| 日韩一区二区三区免费看| 亚洲免费观看在线观看| 久久99精品国产| 欧美三级中文字幕| 欧美国产精品一区二区| 天天操天天综合网| 91丨porny丨中文| 久久综合给合久久狠狠狠97色69| 亚洲综合一二区| 国产麻豆欧美日韩一区| 日韩一区二区三区免费观看| 亚洲综合图片区| 成人精品gif动图一区| 日韩欧美亚洲另类制服综合在线| 亚洲男人的天堂在线aⅴ视频| 国产精一区二区三区| 在线综合亚洲欧美在线视频| 一区二区三区在线视频观看58| 国产一区二区在线视频| 欧美一区二区三区小说| 亚洲最新视频在线播放| 成人福利电影精品一区二区在线观看| 精品欧美久久久| 日韩高清国产一区在线| 欧洲一区二区av| 亚洲乱码国产乱码精品精98午夜| 高清在线观看日韩| 久久精品日韩一区二区三区| 精品制服美女丁香| 欧美成人福利视频| 久久99精品国产麻豆婷婷洗澡| 欧美一二三四在线| 美日韩一区二区| 精品久久久久久久久久久久包黑料 | 亚洲欧洲一区二区三区| 国产激情精品久久久第一区二区| 日韩美女视频在线| 欧美色图天堂网| 亚洲精品视频免费观看| 91国内精品野花午夜精品| 亚洲蜜臀av乱码久久精品蜜桃| 91在线视频免费91| 亚洲欧美色一区| 欧美视频一区二区三区四区 | 五月综合激情网| 欧美日本一道本在线视频| 亚洲bdsm女犯bdsm网站| 4hu四虎永久在线影院成人| 琪琪久久久久日韩精品| 欧美tk—视频vk| 国产成人亚洲精品青草天美| 中国av一区二区三区| av激情亚洲男人天堂| 亚洲男人天堂一区| 欧美日韩免费电影| 蜜桃精品在线观看| 国产婷婷色一区二区三区四区| 成人激情动漫在线观看| 亚洲欧美日韩国产中文在线| 欧美在线一二三四区| 日韩国产一二三区| 久久久久国产精品人| 91香蕉视频污| 青青青伊人色综合久久| 久久久久综合网| 色综合中文字幕国产 | 香蕉久久一区二区不卡无毒影院| 91精品在线麻豆| 国产精品亚洲视频| 亚洲精品免费视频| 欧美久久久久免费| 国产精一区二区三区| 亚洲制服欧美中文字幕中文字幕| 7799精品视频| 成人免费精品视频| 日产国产欧美视频一区精品 |