亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
午夜影院久久久| 国产精品美女一区二区| 国产美女在线观看一区| 亚洲视频中文字幕| 日韩精品一区二区三区视频在线观看| 懂色av噜噜一区二区三区av| 亚洲成人动漫精品| 国产精品午夜久久| 日韩免费在线观看| 欧美三级电影在线观看| 成人在线视频一区| 美日韩一区二区| 亚洲综合在线五月| 国产精品看片你懂得| 欧美videos大乳护士334| 色婷婷久久久久swag精品| 狠狠久久亚洲欧美| 亚洲.国产.中文慕字在线| 中文字幕在线不卡国产视频| 欧美成va人片在线观看| 欧美日韩国产精品自在自线| 91在线视频官网| 国产成人av资源| 国模一区二区三区白浆| 日日摸夜夜添夜夜添亚洲女人| 国产精品盗摄一区二区三区| 久久久九九九九| 欧美一区二区在线播放| 亚洲视频在线观看三级| 久久亚洲私人国产精品va媚药| 67194成人在线观看| 色爱区综合激月婷婷| av不卡在线观看| av一区二区久久| 成人免费毛片嘿嘿连载视频| 国产精品综合在线视频| 麻豆91在线播放免费| 另类小说视频一区二区| 日本一区中文字幕| 视频在线观看一区| 日日摸夜夜添夜夜添国产精品| 香蕉av福利精品导航| 婷婷中文字幕综合| 午夜精品久久久久久不卡8050| 亚洲aaa精品| 五月天激情综合网| 日韩成人一级大片| 免费成人av在线| 国产在线视频一区二区| 国产麻豆精品久久一二三| 国产在线不卡一卡二卡三卡四卡| 激情国产一区二区| 国产酒店精品激情| 国产成人亚洲综合a∨婷婷图片| 国产传媒久久文化传媒| 不卡的av电影在线观看| 色偷偷久久一区二区三区| 欧美最猛黑人xxxxx猛交| 欧美羞羞免费网站| 67194成人在线观看| 精品国产三级a在线观看| 国产欧美日韩一区二区三区在线观看| 中文字幕欧美区| 亚洲综合色视频| 免费成人在线网站| 日韩一区二区在线看| 日韩一区二区三区在线| 精品久久久久久无| 国产精品超碰97尤物18| 亚洲午夜电影网| 久久精品久久99精品久久| 国产成人欧美日韩在线电影| 91视频在线观看| 69堂精品视频| 国产日韩欧美麻豆| 亚洲一区二区视频在线| 美女爽到高潮91| av在线不卡电影| 91麻豆精品国产自产在线观看一区 | 毛片一区二区三区| 国产乱人伦偷精品视频不卡 | 成人国产免费视频| 欧美午夜精品免费| 337p日本欧洲亚洲大胆色噜噜| 国产原创一区二区| 91色porny在线视频| 欧美一区二区国产| 中文字幕一区二区三区四区不卡| 午夜精品视频一区| 国产91露脸合集magnet| 欧美人xxxx| 中文字幕第一区| 欧美aa在线视频| 91性感美女视频| 日韩精品在线一区| 一区二区三区在线免费播放 | 91蜜桃免费观看视频| 51精品视频一区二区三区| 欧美经典一区二区| 青草av.久久免费一区| 99精品久久久久久| 精品国产一区二区三区久久影院 | 国产主播一区二区三区| 在线观看成人小视频| 久久夜色精品一区| 调教+趴+乳夹+国产+精品| 成人sese在线| 日韩视频在线一区二区| 亚洲激情第一区| 成人h动漫精品| 精品国产露脸精彩对白| 五月婷婷久久综合| 色综合久久久久久久| 欧美激情一区二区三区在线| 美女网站色91| 欧美高清视频一二三区| 一区二区三区四区不卡视频| 狠狠色丁香婷综合久久| 欧美理论电影在线| 一二三区精品视频| 91丨porny丨最新| 国产精品传媒在线| 国产999精品久久久久久绿帽| 精品少妇一区二区三区 | 久久黄色级2电影| 在线播放亚洲一区| 亚洲狠狠爱一区二区三区| 97久久精品人人做人人爽50路| 欧美激情艳妇裸体舞| 国产美女精品一区二区三区| 日韩视频免费直播| 美女视频黄免费的久久| 91精品国产全国免费观看 | 琪琪一区二区三区| 欧美放荡的少妇| 日韩中文字幕麻豆| 欧美日韩国产综合草草| 午夜精品福利一区二区蜜股av | 亚洲一区二区av电影| 91久久精品一区二区| 一区二区三区在线播| 在线免费精品视频| 一区二区国产视频| 欧美日韩一级大片网址| 图片区日韩欧美亚洲| 欧美一区二区网站| 激情欧美一区二区| 欧美国产一区二区在线观看| 国产成人免费视| 亚洲欧洲精品一区二区三区| 91色.com| 亚洲成人免费av| 日韩天堂在线观看| 国产精品亚洲午夜一区二区三区 | 久久精品亚洲乱码伦伦中文| 国产一本一道久久香蕉| 国产精品五月天| 一本久久a久久精品亚洲| 亚洲综合视频网| 日韩一级免费观看| 国产宾馆实践打屁股91| 亚洲人成网站色在线观看| 欧美色图免费看| 蜜乳av一区二区| 国产亚洲欧美日韩日本| 91视视频在线直接观看在线看网页在线看 | 91视频你懂的| 久久精品综合网| 波多野结衣的一区二区三区| 亚洲黄色免费网站| 欧美日韩精品是欧美日韩精品| 美国一区二区三区在线播放| 精品久久久久久久久久久久久久久 | 亚洲一区二区视频在线观看| 91精品欧美综合在线观看最新| 日韩福利视频导航| 国产欧美一区二区精品性色 | 欧美亚洲国产bt| 日韩av网站免费在线| 日韩精品在线网站| 丰满白嫩尤物一区二区| 亚洲五码中文字幕| 久久久久久一级片| av欧美精品.com| 人人狠狠综合久久亚洲| 久久精品免视看| 欧美日韩高清一区二区| 美腿丝袜在线亚洲一区| 国产精品嫩草影院com| 91精品国产全国免费观看| 黄网站免费久久| 1024国产精品| 欧美日韩国产一区| 九色综合狠狠综合久久| 亚洲免费观看高清完整版在线观看 | 久久天堂av综合合色蜜桃网| 白白色 亚洲乱淫| 精品一区二区三区av| 亚洲午夜一二三区视频| 久久久久国产精品厨房|