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

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

?? apalike.bst

?? 支持向量積SVM的工具箱
?? BST
?? 第 1 頁 / 共 2 頁
字號:
%NAME: apalike.bst
% BibTeX `apalike' bibliography style (24-Jan-88 version)
% Adapted from the `alpha' style, version 0.99a; for BibTeX version 0.99a.
% Copyright (C) 1988, all rights reserved.
% Copying of this file is allowed, provided that if you make any changes at all
% you name it something other than `apalike.bst'.
% This restriction helps ensure that all copies are identical.
% Differences between this style and `alpha' are generally heralded by a `%'.
% The file btxbst.doc has the documentation for alpha.bst.
%
% This style should be used with the `apalike' LaTeX style (apalike.sty).
% \cite's come out like "(Jones, 1986)" in the text but there are no labels
% in the bibliography, and something like "(1986)" comes out immediately
% after the author.  Author (and editor) names appear as last name, comma,
% initials.  A `year' field is required for every entry, and so is either
% an author (or in some cases, an editor) field or a key field.
%
% Editorial note:
% Many journals require a style like `apalike', but I strongly, strongly,
% strongly recommend that you not use it if you have a choice---use something
% like `plain' instead.  Mary-Claire van Leunen (A Handbook for Scholars,
% Knopf, 1979) argues convincingly that a style like `plain' encourages better
% writing than one like `apalike'.  Furthermore the strongest arguments for
% using an author-date style like `apalike'---that it's "the most practical"
% (The Chicago Manual of Style, University of Chicago Press, thirteenth
% edition, 1982, pages 400--401)---fall flat on their face with the new
% computer-typesetting technology.  For instance page 401 anachronistically
% states "The chief disadvantage of [a style like `plain'] is that additions
% or deletions cannot be made after the manuscript is typed without changing
% numbers in both text references and list."  LaTeX sidesteps the disadvantage.
%
% History:
%   15-sep-86	(SK,OP)	Original version, by Susan King and Oren Patashnik.
%   10-nov-86	(OP)	Truncated the sort.key$ string to the correct length
%			in bib.sort.order to eliminate error message.
%   24-jan-88	(OP)	Updated for BibTeX version 0.99a, from alpha.bst 0.99a;
%			apalike now sorts by author, then year, then title;
%			THIS `apalike' VERSION DOES NOT WORK WITH BIBTEX 0.98i.

ENTRY
  { address
    author
    booktitle
    chapter
    edition
    editor
    howpublished
    institution
    journal
    key
%    month		not used in apalike
    note
    number
    organization
    pages
    publisher
    school
    series
    title
    type
    volume
    year
  }
  {}
  { label extra.label sort.label }

INTEGERS { output.state before.all mid.sentence after.sentence after.block }

FUNCTION {init.state.consts}
{ #0 'before.all :=
  #1 'mid.sentence :=
  #2 'after.sentence :=
  #3 'after.block :=
}

STRINGS { s t }

FUNCTION {output.nonnull}
{ 's :=
  output.state mid.sentence =
    { ", " * write$ }
    { output.state after.block =
	{ add.period$ write$
	  newline$
	  "\newblock " write$
	}
	{ output.state before.all =
	    'write$
	    { add.period$ " " * write$ }
	  if$
	}
      if$
      mid.sentence 'output.state :=
    }
  if$
  s
}

FUNCTION {output}
{ duplicate$ empty$
    'pop$
    'output.nonnull
  if$
}

FUNCTION {output.check}
{ 't :=
  duplicate$ empty$
    { pop$ "empty " t * " in " * cite$ * warning$ }
    'output.nonnull
  if$
}

%					apalike needs this function because
%					the year has special punctuation;
%					apalike ignores the month
FUNCTION {output.year.check}
{ year empty$
    { "empty year in " cite$ * warning$ }
    { write$
      " (" year * extra.label * ")" *
      mid.sentence 'output.state :=
    }
  if$
}

FUNCTION {output.bibitem}
{ newline$
  "\bibitem[" write$
  label write$
  "]{" write$
  cite$ write$
  "}" write$
  newline$
  ""
  before.all 'output.state :=
}

FUNCTION {fin.entry}
{ add.period$
  write$
  newline$
}

FUNCTION {new.block}
{ output.state before.all =
    'skip$
    { after.block 'output.state := }
  if$
}

FUNCTION {new.sentence}
{ output.state after.block =
    'skip$
    { output.state before.all =
	'skip$
	{ after.sentence 'output.state := }
      if$
    }
  if$
}

FUNCTION {not}
{   { #0 }
    { #1 }
  if$
}

FUNCTION {and}
{   'skip$
    { pop$ #0 }
  if$
}

FUNCTION {or}
{   { pop$ #1 }
    'skip$
  if$
}

FUNCTION {new.block.checkb}
{ empty$
  swap$ empty$
  and
    'skip$
    'new.block
  if$
}

FUNCTION {field.or.null}
{ duplicate$ empty$
    { pop$ "" }
    'skip$
  if$
}

FUNCTION {emphasize}
{ duplicate$ empty$
    { pop$ "" }
    { "{\em " swap$ * "}" * }
  if$
}

INTEGERS { nameptr namesleft numnames }

FUNCTION {format.names}
{ 's :=
  #1 'nameptr :=
  s num.names$ 'numnames :=
  numnames 'namesleft :=
    { namesleft #0 > }
    { s nameptr "{vv~}{ll}{, jj}{, f.}" format.name$ 't :=   % last name first
      nameptr #1 >
	{ namesleft #1 >
	    { ", " * t * }
	    { numnames #2 >
		{ "," * }
		'skip$
	      if$
	      t "others" =
		{ " et~al." * }
		{ " and " * t * }
	      if$
	    }
	  if$
	}
	't
      if$
      nameptr #1 + 'nameptr :=
      namesleft #1 - 'namesleft :=
    }
  while$
}

FUNCTION {format.authors}
{ author empty$
    { "" }
    { author format.names }
  if$
}

FUNCTION {format.key}			% this function is just for apalike
{ empty$
    { key field.or.null }
    { "" }
  if$
}

FUNCTION {format.editors}
{ editor empty$
    { "" }
    { editor format.names
      editor num.names$ #1 >
	{ ", editors" * }
	{ ", editor" * }
      if$
    }
  if$
}

FUNCTION {format.title}
{ title empty$
    { "" }
    { title "t" change.case$ }
  if$
}

FUNCTION {n.dashify}
{ 't :=
  ""
    { t empty$ not }
    { t #1 #1 substring$ "-" =
	{ t #1 #2 substring$ "--" = not
	    { "--" *
	      t #2 global.max$ substring$ 't :=
	    }
	    {   { t #1 #1 substring$ "-" = }
		{ "-" *
		  t #2 global.max$ substring$ 't :=
		}
	      while$
	    }
	  if$
	}
	{ t #1 #1 substring$ *
	  t #2 global.max$ substring$ 't :=
	}
      if$
    }
  while$
}

FUNCTION {format.btitle}
{ title emphasize
}

FUNCTION {tie.or.space.connect}
{ duplicate$ text.length$ #3 <
    { "~" }
    { " " }
  if$
  swap$ * *
}

FUNCTION {either.or.check}
{ empty$
    'pop$
    { "can't use both " swap$ * " fields in " * cite$ * warning$ }
  if$
}

FUNCTION {format.bvolume}
{ volume empty$
    { "" }
    { "volume" volume tie.or.space.connect
      series empty$
	'skip$
	{ " of " * series emphasize * }
      if$
      "volume and number" number either.or.check
    }
  if$
}

FUNCTION {format.number.series}
{ volume empty$
    { number empty$
	{ series field.or.null }
	{ output.state mid.sentence =
	    { "number" }
	    { "Number" }
	  if$
	  number tie.or.space.connect
	  series empty$
	    { "there's a number but no series in " cite$ * warning$ }
	    { " in " * series * }
	  if$
	}
      if$
    }
    { "" }
  if$
}

FUNCTION {format.edition}
{ edition empty$
    { "" }
    { output.state mid.sentence =
	{ edition "l" change.case$ " edition" * }
	{ edition "t" change.case$ " edition" * }
      if$
    }
  if$
}

INTEGERS { multiresult }

FUNCTION {multi.page.check}
{ 't :=
  #0 'multiresult :=
    { multiresult not
      t empty$ not
      and
    }
    { t #1 #1 substring$
      duplicate$ "-" =
      swap$ duplicate$ "," =
      swap$ "+" =
      or or
	{ #1 'multiresult := }
	{ t #2 global.max$ substring$ 't := }
      if$
    }
  while$
  multiresult
}

FUNCTION {format.pages}
{ pages empty$
    { "" }
    { pages multi.page.check
	{ "pages" pages n.dashify tie.or.space.connect }
	{ "page" pages tie.or.space.connect }
      if$
    }
  if$
}

FUNCTION {format.vol.num.pages}
{ volume field.or.null
  number empty$
    'skip$
    { "(" number * ")" * *
      volume empty$
	{ "there's a number but no volume in " cite$ * warning$ }
	'skip$
      if$
    }
  if$
  pages empty$
    'skip$
    { duplicate$ empty$
	{ pop$ format.pages }
	{ ":" * pages n.dashify * }
      if$
    }
  if$
}

FUNCTION {format.chapter.pages}
{ chapter empty$
    'format.pages
    { type empty$
	{ "chapter" }
	{ type "l" change.case$ }
      if$
      chapter tie.or.space.connect
      pages empty$
	'skip$
	{ ", " * format.pages * }
      if$
    }
  if$
}

FUNCTION {format.in.ed.booktitle}
{ booktitle empty$
    { "" }
    { editor empty$
	{ "In " booktitle emphasize * }
	{ "In " format.editors * ", " * booktitle emphasize * }
      if$
    }
  if$
}

FUNCTION {format.thesis.type}
{ type empty$
    'skip$
    { pop$
      type "t" change.case$
    }
  if$
}

FUNCTION {format.tr.number}
{ type empty$
    { "Technical Report" }
    'type
  if$
  number empty$
    { "t" change.case$ }
    { number tie.or.space.connect }
  if$
}

FUNCTION {format.article.crossref}
{ "In"							% this is for apalike
  " \cite{" * crossref * "}" *
}

FUNCTION {format.book.crossref}
{ volume empty$
    { "empty volume in " cite$ * "'s crossref of " * crossref * warning$
      "In "
    }
    { "Volume" volume tie.or.space.connect
      " of " *
    }
  if$
  "\cite{" * crossref * "}" *				% this is for apalike
}

FUNCTION {format.incoll.inproc.crossref}
{ "In"							% this is for apalike
  " \cite{" * crossref * "}" *
}

FUNCTION {article}
{ 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$
    { journal emphasize "journal" output.check
      format.vol.num.pages output
    }
    { format.article.crossref output.nonnull
      format.pages output
    }
  if$
  new.block
  note output
  fin.entry
}

FUNCTION {book}
{ output.bibitem
  author empty$
    { format.editors "author and editor" output.check
      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
      new.block
      format.number.series output
      new.sentence
      publisher "publisher" output.check
      address output
    }
    { new.block
      format.book.crossref output.nonnull
    }
  if$
  format.edition output
  new.block
  note output
  fin.entry
}

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

FUNCTION {inbook}
{ output.bibitem
  author empty$
    { format.editors "author and editor" output.check

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产一区二区在线观看免费 | 成人欧美一区二区三区在线播放| 国产精品久久久久久久裸模| 免费高清在线视频一区·| jlzzjlzz亚洲女人18| 欧美一区二区三区日韩视频| 亚洲精品中文字幕在线观看| 国产精品一卡二| 4438x成人网最大色成网站| 日韩理论片一区二区| 久99久精品视频免费观看| 欧美欧美欧美欧美首页| 中文字幕欧美一| 国产精品亚洲一区二区三区妖精| 欧美日韩亚洲综合一区二区三区| 亚洲人成网站色在线观看| 国产在线麻豆精品观看| 91精品国产综合久久蜜臀| 亚洲黄色av一区| 99精品1区2区| 亚洲欧洲另类国产综合| 国产麻豆视频精品| 久久综合一区二区| 国内精品在线播放| 日韩欧美一级二级| 日韩国产高清影视| 在线不卡欧美精品一区二区三区| 亚洲激情av在线| 欧美系列亚洲系列| 午夜av区久久| 欧美一级在线免费| 另类小说图片综合网| 欧美www视频| 激情综合网激情| 久久久久一区二区三区四区| 国产一区二区0| 国产亚洲污的网站| 成人91在线观看| 玉米视频成人免费看| 欧美亚洲一区三区| 日韩国产精品久久| 久久亚洲欧美国产精品乐播| 国产成人在线看| 国产精品盗摄一区二区三区| 色婷婷激情一区二区三区| 亚洲欧美成aⅴ人在线观看 | 亚洲va韩国va欧美va精品| 欧美精品国产精品| 久久99国产精品尤物| 中文字幕免费不卡在线| 99国产精品久久| 日本视频中文字幕一区二区三区| 欧美一区二区三区视频在线观看| 国产最新精品精品你懂的| 国产精品久久久久一区二区三区| 欧美性色aⅴ视频一区日韩精品| 五月天丁香久久| 久久色中文字幕| 成人av在线资源网| 天天影视网天天综合色在线播放 | 国产一区二区三区免费观看 | 国产欧美一区二区精品性色 | 成人激情免费视频| 亚洲国产综合色| 久久精品夜夜夜夜久久| 在线观看国产一区二区| 国产一区二区按摩在线观看| 亚洲精品自拍动漫在线| 2020国产成人综合网| 在线中文字幕不卡| 国产传媒欧美日韩成人| 亚洲电影在线免费观看| 国产无一区二区| 欧美精品少妇一区二区三区| 国产精品18久久久久| 亚洲高清不卡在线观看| 国产日韩欧美精品在线| 91精品久久久久久久99蜜桃| 懂色av一区二区三区免费看| 日韩影院免费视频| 亚洲免费电影在线| 久久久久国产精品麻豆| 欧美精品在线一区二区三区| 99精品国产91久久久久久| 国内国产精品久久| 蜜桃免费网站一区二区三区| 一区二区在线观看av| 欧美极品少妇xxxxⅹ高跟鞋| 欧美一级欧美一级在线播放| 色老汉一区二区三区| 成人av片在线观看| 国产精品主播直播| 激情小说欧美图片| 日韩av网站免费在线| 亚洲国产精品久久人人爱| 国产精品国产自产拍在线| 日本一区二区三区在线观看| 欧美大白屁股肥臀xxxxxx| 欧美久久久影院| 欧美巨大另类极品videosbest| 欧美中文字幕一二三区视频| 99久久国产免费看| 成人免费视频免费观看| 国产99久久久国产精品免费看 | 久久精品视频免费| 精品国产伦一区二区三区观看体验| 欧美日韩一二三| 欧美老年两性高潮| 制服丝袜在线91| 欧美一区二区三区四区久久| 日韩一区二区在线看| 欧美一区二区不卡视频| 日韩一区二区三区三四区视频在线观看| 欧美亚洲一区三区| 在线播放中文一区| 欧美一卡在线观看| 欧美精品一区二区三区蜜桃 | 日韩女优av电影| 欧美变态tickling挠脚心| 精品国产一区久久| 久久久久久久久伊人| 欧美激情艳妇裸体舞| 欧美国产一区在线| 亚洲美女屁股眼交| 亚洲午夜精品17c| 日本va欧美va精品发布| 开心九九激情九九欧美日韩精美视频电影| 日韩精品一二三四| 国内精品不卡在线| 99久免费精品视频在线观看| 91免费视频观看| 欧美日韩国产大片| 精品国产麻豆免费人成网站| 国产欧美精品一区二区色综合 | 亚洲色大成网站www久久九九| 亚洲视频在线观看三级| 夜夜嗨av一区二区三区网页| 日韩中文欧美在线| 国产69精品久久99不卡| 色婷婷av一区| 日韩一区二区三区四区| 国产精品免费av| 亚洲午夜在线观看视频在线| 九九国产精品视频| 成人av资源网站| 91精品国产麻豆国产自产在线| 精品99999| 亚洲一区免费观看| 激情图区综合网| 91黄色免费网站| 久久一夜天堂av一区二区三区| 中文字幕一区在线观看| 亚洲国产日韩a在线播放性色| 久久 天天综合| 欧美三级日本三级少妇99| 久久久亚洲综合| 婷婷综合久久一区二区三区| 国产精品中文欧美| 欧美老女人在线| 亚洲欧美另类综合偷拍| 韩国精品主播一区二区在线观看 | 精品福利一区二区三区| 亚洲丝袜另类动漫二区| 韩国视频一区二区| 欧美日韩视频在线一区二区| 国产精品久久久久毛片软件| 麻豆国产精品一区二区三区| 91成人免费电影| 亚洲欧洲一区二区在线播放| 精品一区二区久久| 欧美日韩在线播放一区| 国产精品乱子久久久久| 久久 天天综合| 在线不卡一区二区| 亚洲成人av资源| 色噜噜久久综合| 亚洲同性gay激情无套| 国产福利视频一区二区三区| 91精品久久久久久久久99蜜臂| 亚洲一区二区三区在线| 91视频精品在这里| 中文字幕成人网| 国产精品69毛片高清亚洲| 精品日韩欧美一区二区| 三级影片在线观看欧美日韩一区二区| 91视频免费观看| 亚洲乱码国产乱码精品精可以看| 国产成人高清在线| 久久久国产精华| 国产乱国产乱300精品| 精品福利av导航| 精品一二三四在线| 久久久久9999亚洲精品| 精东粉嫩av免费一区二区三区 | 正在播放一区二区| 日韩精品每日更新| 日韩一区二区三| 精品一区二区三区蜜桃| 久久亚洲精品小早川怜子| 国产盗摄女厕一区二区三区|