<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-5931631434944515423</id><updated>2011-07-30T10:50:31.673-07:00</updated><category term='非诚勿扰、评论'/><title type='text'>龙加的巢穴</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://hxlich.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://hxlich.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>龙加</name><uri>http://www.blogger.com/profile/02424615920585053635</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_fbhMkQzafCA/SLobyz_37BI/AAAAAAAAACo/mrSZALNoSzo/S220/L605781519172GAZ.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>63</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-5931631434944515423.post-4477274165391401104</id><published>2010-02-25T19:26:00.000-08:00</published><updated>2010-02-25T19:27:12.998-08:00</updated><title type='text'>C++大数精度计算</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, 宋体; font-size: medium; "&gt;&lt;table width="950" cellpadding="0" cellspacing="0" border="0"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td width="5"&gt;&lt;br /&gt;&lt;/td&gt;&lt;td width="625" valign="top" align="left"&gt;&lt;div id="divmid"&gt;&lt;table width="100%" cellpadding="0" cellspacing="0" border="0" style="table-layout: fixed; word-wrap: break-word; width: 625px; "&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;div id="divcc" style="display: block; "&gt;&lt;p style="text-indent: 25px; line-height: 24px; "&gt;&lt;span style="font-size: 14px; "&gt;头文件:&lt;br /&gt;//  WTNumber.h:  interface  for  the  CWTNumber  class.&lt;br /&gt;//&lt;br /&gt;//////////////////////////////////////////////////////////////////////&lt;br /&gt;&lt;br /&gt;#if  !defined(AFX_WTNUMBER_H__92E62B40_491A_4A75_AB89_FFB160DB2343__INCLUDED_)&lt;br /&gt;#define  AFX_WTNUMBER_H__92E62B40_491A_4A75_AB89_FFB160DB2343__INCLUDED_&lt;br /&gt;&lt;br /&gt;#if  _MSC_VER    1000&lt;br /&gt;#pragma  once&lt;br /&gt;#endif  //  _MSC_VER  &gt;  1000&lt;br /&gt;&lt;br /&gt;#define  INT_BIT_MAX  255&lt;br /&gt;#define  FLOAT_BIT_MAX  255&lt;br /&gt;&lt;br /&gt;class  CWTNumber   &lt;br /&gt;{&lt;br /&gt;private:&lt;br /&gt;       int  intbits;                                          /*  整数数位*/&lt;br /&gt;       int  floatbits;                                      /*  小数有效数位*/&lt;br /&gt;       char  infinite;                                      /*  无穷大*/&lt;br /&gt;       char  sign;                                              /*  符号*/&lt;br /&gt;       char  intpart[INT_BIT_MAX];              /*  整数部分*/&lt;br /&gt;       char  floatpart[FLOAT_BIT_MAX];      /*  小数部分*/&lt;br /&gt;private:&lt;br /&gt;       char*  m_sz;&lt;br /&gt;public:&lt;br /&gt;       /*  算术函数指针类型.*/&lt;br /&gt;       typedef  void  (*PFNCALC)(const  CWTNumber&amp;amp;,const  CWTNumber&amp;amp;,CWTNumber&amp;amp;);&lt;br /&gt;       CWTNumber();&lt;br /&gt;       CWTNumber(const  char*  szNum);&lt;br /&gt;       ~CWTNumber();&lt;br /&gt;       /*  转换成字符串*/&lt;br /&gt;       char*  ToString();&lt;br /&gt;       void  FreeString();&lt;br /&gt;       /*  初始化WTNumber为0.*/&lt;br /&gt;       void  InitWTNumberToZero();&lt;br /&gt;       /*  判断需要多少个字符空间存储WTNumber转换的字符串.*/&lt;br /&gt;       int  StrLenByWTNumber();&lt;br /&gt;       /*  从字符串转换到WTNumber.*/&lt;br /&gt;       void  StrToWTNumber(const  char  *arr);&lt;br /&gt;       /*  从WTNumber转换到字符串.*/&lt;br /&gt;       void  WTNumberToStr(char  *szBuf);&lt;br /&gt;       /*  调节数位,删除最高整数位是0的和最低小数位是0的数位.*/&lt;br /&gt;       void  AdjustBits();&lt;br /&gt;       /*  移动小数点,delta=0不移动,delta  0往左移动,delta&gt;0往右移动.*/&lt;br /&gt;       void  MoveFloatPoint(int  delta);&lt;br /&gt;       /*  使无穷大  */&lt;br /&gt;       void  MakeInfinite();&lt;br /&gt;       /*  比较2个数大小  */&lt;br /&gt;       int  WTCompare(const  CWTNumber&amp;amp;  n)  const;&lt;br /&gt;       /*  判断是否为0  */&lt;br /&gt;       int  IsZero()  const;&lt;br /&gt;       /*  赋值号重载*/&lt;br /&gt;       CWTNumber&amp;amp;  operator=(const  CWTNumber&amp;amp;  n);&lt;br /&gt;&lt;br /&gt;       /*  运算符重载  */&lt;br /&gt;       CWTNumber  operator+(const  CWTNumber&amp;amp;  n);&lt;br /&gt;       CWTNumber  operator-(const  CWTNumber&amp;amp;  n);&lt;br /&gt;       CWTNumber  operator*(const  CWTNumber&amp;amp;  n);&lt;br /&gt;       CWTNumber  operator/(const  CWTNumber&amp;amp;  n);&lt;br /&gt;       CWTNumber&amp;amp;  operator+=(const  CWTNumber&amp;amp;  n);&lt;br /&gt;       CWTNumber&amp;amp;  operator-=(const  CWTNumber&amp;amp;  n);&lt;br /&gt;       CWTNumber&amp;amp;  operator*=(const  CWTNumber&amp;amp;  n);&lt;br /&gt;       CWTNumber&amp;amp;  operator/=(const  CWTNumber&amp;amp;  n);&lt;br /&gt;&lt;br /&gt;       bool  operator&gt;(const  CWTNumber&amp;amp;  n);&lt;br /&gt;       bool  operator&gt;=(const  CWTNumber&amp;amp;  n);&lt;br /&gt;       bool  operator&lt;(const  CWTNumber&amp;amp;  n);&lt;br /&gt;       bool  operator&lt;=(const  CWTNumber&amp;amp;  n);&lt;br /&gt;       bool  operator==(const  CWTNumber&amp;amp;  n);&lt;br /&gt;       bool  operator!=(const  CWTNumber&amp;amp;  n);&lt;br /&gt;       /*  加法*/&lt;br /&gt;       static  void  WTAdd(const  CWTNumber&amp;amp;  n1,const  CWTNumber&amp;amp;  n2,CWTNumber&amp;amp;  Res);&lt;br /&gt;       /*  乘法*/&lt;br /&gt;       static  void  WTMultiply(const  CWTNumber&amp;amp;  n1,const  CWTNumber&amp;amp;  n2,CWTNumber&amp;amp;  Res);&lt;br /&gt;       /*  减法*/&lt;br /&gt;       static  void  WTSubtract(const  CWTNumber&amp;amp;  n1,const  CWTNumber&amp;amp;  n2,CWTNumber&amp;amp;  Res);&lt;br /&gt;       /*  除法*/&lt;br /&gt;       static  void  WTDivide(const  CWTNumber&amp;amp;  n1,const  CWTNumber&amp;amp;  n2,CWTNumber&amp;amp;  Res);&lt;br /&gt;       /*  根据算术函数返回结果  */&lt;br /&gt;       static  char  *Result(const  char  *val1,const  char  *val2,PFNCALC  pfnCalc);&lt;br /&gt;};&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;#endif  //  !defined(AFX_WTNUMBER_H__92E62B40_491A_4A75_AB89_FFB160DB2343__INCLUDED_)&lt;br /&gt;&lt;br /&gt;源文件:&lt;br /&gt;//  WTNumber.cpp:  implementation  of  the  CWTNumber  class.&lt;br /&gt;//&lt;br /&gt;//////////////////////////////////////////////////////////////////////&lt;br /&gt;#include  &lt;string.h&gt;&lt;br /&gt;#include  &lt;stdlib.h&gt;&lt;br /&gt;#include  "WTNumber.h"&lt;br /&gt;&lt;br /&gt;//////////////////////////////////////////////////////////////////////&lt;br /&gt;//  Construction/Destruction&lt;br /&gt;//////////////////////////////////////////////////////////////////////&lt;br /&gt;&lt;br /&gt;CWTNumber::CWTNumber()&lt;br /&gt;{&lt;br /&gt;       InitWTNumberToZero();&lt;br /&gt;}&lt;br /&gt;CWTNumber::CWTNumber(const  char*  szNum)&lt;br /&gt;{&lt;br /&gt;       InitWTNumberToZero();&lt;br /&gt;       StrToWTNumber(szNum);&lt;br /&gt;}&lt;br /&gt;CWTNumber::~CWTNumber()&lt;br /&gt;{&lt;br /&gt;       FreeString();&lt;br /&gt;}&lt;br /&gt;void  CWTNumber::FreeString()&lt;br /&gt;{&lt;br /&gt;       if(m_sz)  delete  []m_sz;&lt;br /&gt;       m_sz=NULL;&lt;br /&gt;}&lt;br /&gt;void  CWTNumber::InitWTNumberToZero()&lt;br /&gt;{&lt;br /&gt;       memset(this,0,sizeof(CWTNumber));&lt;br /&gt;}&lt;br /&gt;int  CWTNumber::StrLenByWTNumber()&lt;br /&gt;{&lt;br /&gt;       int  len  =  floatbits+intbits+1;&lt;br /&gt;       if(intbits==0)  len++;        /*  .1  --&gt;  0.1*/&lt;br /&gt;       if(floatbits)  len++;        /*  '.'*/&lt;br /&gt;       if(sign)  len++;                /*  '-'*/&lt;br /&gt;       if(infinite)  return  11;        /*  #INFINITE  */&lt;br /&gt;       return  len;&lt;br /&gt;}&lt;br /&gt;void  CWTNumber::StrToWTNumber(const  char  *arr)&lt;br /&gt;{&lt;br /&gt;       char  *point;&lt;br /&gt;       InitWTNumberToZero();&lt;br /&gt;       if(*arr=='-')        /*  如果是负数*/&lt;br /&gt;       {&lt;br /&gt;               arr++;&lt;br /&gt;               sign=1;&lt;br /&gt;       }&lt;br /&gt;       point=strchr(arr,'.');&lt;br /&gt;       if(point)        /*  找到小数点  */&lt;br /&gt;       {&lt;br /&gt;               int  n=intbits=point-arr;        /*  计算出整数数位  */&lt;br /&gt;               while(n)        /*  整数数位不==0则循环  */&lt;br /&gt;               {&lt;br /&gt;                       intpart[intbits-n]=arr[n-1]-'0';        /*  将数字低位存在低下标元素*/&lt;br /&gt;                       n--;&lt;br /&gt;               }&lt;br /&gt;               while(*++point)&lt;br /&gt;               {&lt;br /&gt;                       floatpart[floatbits]=*point-'0';&lt;br /&gt;                       floatbits++;&lt;br /&gt;               }&lt;br /&gt;       }&lt;br /&gt;       else        /*  说明没写小数点,全是整数.*/&lt;br /&gt;       {&lt;br /&gt;               int  n=intbits=strlen(arr);&lt;br /&gt;               while(n)&lt;br /&gt;               {&lt;br /&gt;                       intpart[intbits-n]=arr[n-1]-'0';&lt;br /&gt;                       n--;&lt;br /&gt;               }&lt;br /&gt;       }&lt;br /&gt;       AdjustBits();&lt;br /&gt;       /*  处理-0  和0的情况*/&lt;br /&gt;       if(floatbits==0)&lt;br /&gt;       {&lt;br /&gt;               if(intbits==0  ||  intbits==1&amp;amp;&amp;amp;intpart[0]==0)&lt;br /&gt;                       sign=0;&lt;br /&gt;       }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void  CWTNumber::WTNumberToStr(char  *szBuf)&lt;br /&gt;{&lt;br /&gt;       int  n=intbits,c;&lt;br /&gt;       memset(szBuf,0,StrLenByWTNumber());&lt;br /&gt;       if(sign)        /*  如果是负数*/&lt;br /&gt;       {&lt;br /&gt;               *szBuf++='-';&lt;br /&gt;       }&lt;br /&gt;       if(infinite) &lt;br /&gt;       {&lt;br /&gt;               strcat(szBuf,"#INFINITE");&lt;br /&gt;               return;&lt;br /&gt;       }&lt;br /&gt;       while(n)&lt;br /&gt;       {&lt;br /&gt;               szBuf[intbits-n]=intpart[n-1]+'0';&lt;br /&gt;               n--;&lt;br /&gt;       }&lt;br /&gt;       c=0;        /*  是否加了0*/&lt;br /&gt;       if(intbits==0)  {&lt;br /&gt;               strcat(szBuf,"0");&lt;br /&gt;               c=1;&lt;br /&gt;       }&lt;br /&gt;       if(floatbits)  strcat(szBuf,".");&lt;br /&gt;       n=0;&lt;br /&gt;       while(n&lt;floatbits)&lt;br /&gt;       {&lt;br /&gt;               szBuf[intbits+1+n+c]=floatpart[n]+'0';&lt;br /&gt;               n++;&lt;br /&gt;       }&lt;br /&gt;}&lt;br /&gt;void  CWTNumber::AdjustBits()&lt;br /&gt;{&lt;br /&gt;       while(intbits&gt;1&amp;amp;&amp;amp;intpart[intbits-1]==0)  intbits--;&lt;br /&gt;       while(floatbits&amp;amp;&amp;amp;floatpart[floatbits-1]==0)  floatbits--;&lt;br /&gt;}&lt;br /&gt;void  CWTNumber::MoveFloatPoint(int  delta)&lt;br /&gt;{&lt;br /&gt;       /*  delta&lt;0则往左移动小数点,delta&gt;0则向右移动小数点  */&lt;br /&gt;       if(delta)&lt;br /&gt;       {&lt;br /&gt;               CWTNumber  n=*this;&lt;br /&gt;               InitWTNumberToZero();&lt;br /&gt;               sign=n.sign;&lt;br /&gt;               if(delta&lt;0)&lt;br /&gt;               {&lt;br /&gt;                       int  i;&lt;br /&gt;                       delta=-delta;&lt;br /&gt;                       for(i=delta;i&lt;n.intbits;i++)&lt;br /&gt;                       {&lt;br /&gt;                               intpart[intbits++]=n.intpart[i];&lt;br /&gt;                       }&lt;br /&gt;                       for(i=delta-1;i&gt;=0;i--)&lt;br /&gt;                       {&lt;br /&gt;                               floatpart[floatbits++]=n.intpart[i];&lt;br /&gt;                       }&lt;br /&gt;                       for(i=0;i&lt;n.floatbits;i++)&lt;br /&gt;                       {&lt;br /&gt;                               floatpart[floatbits++]=n.floatpart[i];&lt;br /&gt;                       }&lt;br /&gt;               }&lt;br /&gt;               else&lt;br /&gt;               {&lt;br /&gt;                       int  i;&lt;br /&gt;                       for(i=delta;i&lt;n.floatbits;i++)        /*  处理小数部分*/&lt;br /&gt;                       {&lt;br /&gt;                               floatpart[floatbits++]=n.floatpart[i];&lt;br /&gt;                       }&lt;br /&gt;                       for(i=delta-1;i&gt;=0;i--)        /*  小数到整数的部分*/&lt;br /&gt;                       {&lt;br /&gt;                               intpart[intbits++]=n.floatpart[i];&lt;br /&gt;                       }&lt;br /&gt;                       for(i=0;i&lt;n.intbits;i++)        /*  整数部分*/&lt;br /&gt;                       {&lt;br /&gt;                               intpart[intbits++]=n.intpart[i];&lt;br /&gt;                       }&lt;br /&gt;               }&lt;br /&gt;       }&lt;br /&gt;       AdjustBits();&lt;br /&gt;}&lt;br /&gt;void  CWTNumber::MakeInfinite()&lt;br /&gt;{&lt;br /&gt;       infinite=1;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;int  CWTNumber::WTCompare(const  CWTNumber&amp;amp;  n)  const&lt;br /&gt;{&lt;br /&gt;       /*  首先是比较符号*/&lt;br /&gt;       if(sign==0&amp;amp;&amp;amp;n.sign!=0)        /*  pn1是正数,pn2是负数*/&lt;br /&gt;               return  1;        /*  &gt;*/&lt;br /&gt;       else  if(sign!=0&amp;amp;&amp;amp;n.sign==0)        /*  pn1是负数,pn2是正数*/&lt;br /&gt;               return  -1;        /*  &lt;*/&lt;br /&gt;       else        /*  同号状态*/&lt;br /&gt;       {&lt;br /&gt;               /*  比较整数部分*/&lt;br /&gt;               if(intbits&gt;n.intbits)        /*  pn1整数数位多*/&lt;br /&gt;                       return  sign?-1:1;&lt;br /&gt;               else  if(intbits&lt;n.intbits)&lt;br /&gt;                       return  sign?1:-1;&lt;br /&gt;               else        /*  整数数位相同*/&lt;br /&gt;               {&lt;br /&gt;                       int  i=intbits-1;        /*指到最高位*/&lt;br /&gt;                       while(i&gt;=0)&lt;br /&gt;                       {&lt;br /&gt;                               if(intpart[i]&gt;n.intpart[i])&lt;br /&gt;                                       return  sign?-1:1;&lt;br /&gt;                               else  if(intpart[i]&lt;n.intpart[i])&lt;br /&gt;                                       return  sign?1:-1;&lt;br /&gt;                               else  i--;&lt;br /&gt;                       }&lt;br /&gt;                       /*  整数部分相同,比较小数部分*/&lt;br /&gt;                       for(i=0;i&lt;floatbits&amp;amp;&amp;amp;i&lt;n.floatbits;)&lt;br /&gt;                       {&lt;br /&gt;                               if(floatpart[i]&gt;n.floatpart[i])&lt;br /&gt;                                       return  sign?-1:1;&lt;br /&gt;                               else  if(floatpart[i]&lt;n.floatpart[i])&lt;br /&gt;                                       return  sign?1:-1;&lt;br /&gt;                               else  i++;&lt;br /&gt;                       }&lt;br /&gt;                       if(i&lt;floatbits)  return  sign?-1:1;&lt;br /&gt;                       if(i&lt;n.floatbits)  return  sign?1:-1;&lt;br /&gt;                       return  0;        /*  相等*/&lt;br /&gt;               }&lt;br /&gt;       }&lt;br /&gt;}&lt;br /&gt;int  CWTNumber::IsZero()  const&lt;br /&gt;{&lt;br /&gt;       if(floatbits==0&amp;amp;&amp;amp;intbits==0)  return  1;&lt;br /&gt;       if(floatbits==0&amp;amp;&amp;amp;intbits==1&amp;amp;&amp;amp;intpart[0]==0)  return  1;&lt;br /&gt;       return  0;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void  CWTNumber::WTAdd(const  CWTNumber&amp;amp;  n1,const  CWTNumber&amp;amp;  n2,CWTNumber&amp;amp;  Res)&lt;br /&gt;{&lt;br /&gt;       Res.InitWTNumberToZero();&lt;br /&gt;       if(n1.sign^n2.sign)        /*异号*/&lt;br /&gt;       {&lt;br /&gt;               CWTNumber  rn2=n2;&lt;br /&gt;               rn2.sign=n1.sign;&lt;br /&gt;               WTSubtract(n1,rn2,Res);&lt;br /&gt;       }&lt;br /&gt;       else        /*同号*/&lt;br /&gt;       {&lt;br /&gt;               int  maxfloatbits=n1.floatbits&gt;n2.floatbits?n1.floatbits:n2.floatbits;&lt;br /&gt;               int  addbit=0;        /*  进位值*/&lt;br /&gt;               int  i,j;&lt;br /&gt;               for(i=maxfloatbits-1;i&gt;=0;i--)&lt;br /&gt;               {&lt;br /&gt;                       int  value=n1.floatpart[i]+n2.floatpart[i]+addbit;&lt;br /&gt;                       addbit=value/10;        /*  看看是否超过10.  设置进位值*/&lt;br /&gt;                       Res.floatpart[i]=value%10;&lt;br /&gt;               }&lt;br /&gt;               Res.floatbits=maxfloatbits;&lt;br /&gt;               /*  到此,小数部分计算完毕.*/&lt;br /&gt;               for(j=0;j&lt;n1.intbits||j&lt;n2.intbits;j++)&lt;br /&gt;               {&lt;br /&gt;                       int  value=n1.intpart[j]+n2.intpart[j]+addbit;&lt;br /&gt;                       addbit=value/10;&lt;br /&gt;                       Res.intpart[j]=value%10;&lt;br /&gt;                       Res.intbits++;&lt;br /&gt;               }&lt;br /&gt;               if(addbit&gt;0)&lt;br /&gt;               {&lt;br /&gt;                       Res.intpart[j]=addbit;&lt;br /&gt;                       Res.intbits++;&lt;br /&gt;               }&lt;br /&gt;               Res.sign=n1.sign;        /*决定符号*/&lt;br /&gt;               Res.AdjustBits();&lt;br /&gt;       }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void  CWTNumber::WTMultiply(const  CWTNumber&amp;amp;  n1,const  CWTNumber&amp;amp;  n2,CWTNumber&amp;amp;  Res)&lt;br /&gt;{&lt;br /&gt;       CWTNumber  z1=n1,z2=n2;&lt;br /&gt;       CWTNumber  sum;&lt;br /&gt;       int  i,j;&lt;br /&gt;       sum.InitWTNumberToZero();&lt;br /&gt;       Res.InitWTNumberToZero();&lt;br /&gt;       z1.MoveFloatPoint(z1.floatbits);&lt;br /&gt;       z2.MoveFloatPoint(z2.floatbits);&lt;br /&gt;       /*  计算z1*z2  */&lt;br /&gt;       for(i=0;i&lt;z2.intbits;i++)&lt;br /&gt;       {&lt;br /&gt;               CWTNumber  tmp;        /*  存放临时乘积*/&lt;br /&gt;               int  addbit=0;&lt;br /&gt;               tmp.intbits=z1.intbits+i;&lt;br /&gt;               for(j=0;j&lt;z1.intbits;j++)&lt;br /&gt;               {&lt;br /&gt;                       int  value  =  z2.intpart[i]*z1.intpart[j]+addbit;&lt;br /&gt;                       addbit=value/10;&lt;br /&gt;                       tmp.intpart[j+i]=value%10;&lt;br /&gt;               }&lt;br /&gt;               if(addbit)&lt;br /&gt;               {&lt;br /&gt;                       tmp.intpart[j+i]=addbit;&lt;br /&gt;                       tmp.intbits++;&lt;br /&gt;               }&lt;br /&gt;               WTAdd(sum,tmp,Res);&lt;br /&gt;               sum=Res;&lt;br /&gt;       }&lt;br /&gt;       Res=sum;&lt;br /&gt;       Res.MoveFloatPoint(-(n1.floatbits+n2.floatbits));&lt;br /&gt;       /*  判断符号,异号为负*/&lt;br /&gt;       if(n1.sign^n2.sign)  Res.sign=1;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void  CWTNumber::WTSubtract(const  CWTNumber&amp;amp;  n1,const  CWTNumber&amp;amp;  n2,CWTNumber&amp;amp;  Res)&lt;br /&gt;{&lt;br /&gt;       Res.InitWTNumberToZero();&lt;br /&gt;       if(n1.sign^n2.sign)        /*  异号情况*/&lt;br /&gt;       {&lt;br /&gt;               CWTNumber  rn2=n2;&lt;br /&gt;               rn2.sign=n1.sign;&lt;br /&gt;               WTAdd(n1,rn2,Res);&lt;br /&gt;       }&lt;br /&gt;       else        /*  同号情况*/&lt;br /&gt;       {&lt;br /&gt;               int  cmp=n1.WTCompare(n2);&lt;br /&gt;               int  swapflag,i,maxfloatbits,subtractbit;&lt;br /&gt;               if(cmp==0)  return;        /*  相等就没必要再减了.*/&lt;br /&gt;               swapflag=n1.sign==0?cmp==-1:cmp==1;&lt;br /&gt;               const  CWTNumber*  pn1=&amp;n1;&lt;br /&gt;               const  CWTNumber*  pn2=&amp;n2;&lt;br /&gt;               if(swapflag)&lt;br /&gt;               {&lt;br /&gt;                       const  CWTNumber  *t=pn1;&lt;br /&gt;                       pn1=pn2;&lt;br /&gt;                       pn2=t;&lt;br /&gt;               }&lt;br /&gt;               maxfloatbits=pn1-&gt;floatbits&gt;pn2-&gt;floatbits?pn1-&gt;floatbits:pn2-&gt;floatbits;&lt;br /&gt;               subtractbit=0;        /*  退位值*/&lt;br /&gt;               /*  先计算小数部分*/&lt;br /&gt;               for(i=maxfloatbits-1;i&gt;=0;i--)&lt;br /&gt;               {&lt;br /&gt;                       if(pn1-&gt;floatpart[i]-subtractbit&lt;pn2-&gt;floatpart[i])&lt;br /&gt;                       {&lt;br /&gt;                               int  value=pn1-&gt;floatpart[i]-pn2-&gt;floatpart[i]-subtractbit+10;&lt;br /&gt;                               subtractbit=1;&lt;br /&gt;                               Res.floatpart[i]=value;&lt;br /&gt;                       }&lt;br /&gt;                       else&lt;br /&gt;                       {&lt;br /&gt;                               int  value=pn1-&gt;floatpart[i]-pn2-&gt;floatpart[i]-subtractbit;&lt;br /&gt;                               subtractbit=0;&lt;br /&gt;                               Res.floatpart[i]=value;&lt;br /&gt;                       }&lt;br /&gt;               }&lt;br /&gt;               Res.floatbits=maxfloatbits;&lt;br /&gt;               /*  至此小数部分计算完毕.*/&lt;br /&gt;               for(i=0;i&lt;pn1-&gt;intbits||i&lt;pn2-&gt;intbits;i++)&lt;br /&gt;               {&lt;br /&gt;                       if(pn1-&gt;intpart[i]-subtractbit&lt;pn2-&gt;intpart[i])&lt;br /&gt;                       {&lt;br /&gt;                               int  value=pn1-&gt;intpart[i]-pn2-&gt;intpart[i]-subtractbit+10;&lt;br /&gt;                               subtractbit=1;&lt;br /&gt;                               Res.intpart[i]=value;&lt;br /&gt;                       }&lt;br /&gt;                       else&lt;br /&gt;                       {&lt;br /&gt;                               int  value=pn1-&gt;intpart[i]-pn2-&gt;intpart[i]-subtractbit;&lt;br /&gt;                               subtractbit=0;&lt;br /&gt;                               Res.intpart[i]=value;&lt;br /&gt;                       }&lt;br /&gt;                       Res.intbits++;&lt;br /&gt;               }&lt;br /&gt;               Res.sign=swapflag?!n1.sign:n1.sign;        /*决定符号*/&lt;br /&gt;               Res.AdjustBits();&lt;br /&gt;       }&lt;br /&gt;}&lt;br /&gt;void  CWTNumber::WTDivide(const  CWTNumber&amp;amp;  n1,const  CWTNumber&amp;amp;  n2,CWTNumber&amp;amp;  Res)&lt;br /&gt;{&lt;br /&gt;       CWTNumber  z1=n1,z2=n2;&lt;br /&gt;       int  deta=z2.floatbits-z1.floatbits;&lt;br /&gt;       z1.MoveFloatPoint(z1.floatbits);&lt;br /&gt;       z2.MoveFloatPoint(z2.floatbits);&lt;br /&gt;       Res.InitWTNumberToZero();&lt;br /&gt;       if(n1.IsZero())  return  ;&lt;br /&gt;       if(n2.IsZero())  {&lt;br /&gt;               Res.sign=n1.sign;&lt;br /&gt;               Res.MakeInfinite();&lt;br /&gt;               return  ;&lt;br /&gt;       }&lt;br /&gt;       z1.sign=z2.sign=0;                                /*统一符号,便于比较大小*/ &lt;br /&gt;       while(z1.intbits!=z2.intbits)  {        /*确保数位相等,这步耗费很多时间*/&lt;br /&gt;               if(z1.intbits&lt;z2.intbits)  {&lt;br /&gt;                       z1.MoveFloatPoint(1);&lt;br /&gt;                       deta--;&lt;br /&gt;               }  else  {&lt;br /&gt;                       z2.MoveFloatPoint(1);&lt;br /&gt;                       deta++;&lt;br /&gt;               }&lt;br /&gt;       }&lt;br /&gt;       while(Res.floatbits&lt;(INT_BIT_MAX/2))  {&lt;br /&gt;               int  cmp=z1.WTCompare(z2);&lt;br /&gt;               int  n=10;&lt;br /&gt;               CWTNumber  mulres,subres;&lt;br /&gt;               if(cmp==-1)  {            /*z1&lt;z2*/&lt;br /&gt;                       z1.MoveFloatPoint(1);&lt;br /&gt;                       Res.floatpart[Res.floatbits++]=0;&lt;br /&gt;                       continue;&lt;br /&gt;               }  else  if(cmp==0)  {  /*z1==z2*/&lt;br /&gt;                       Res.floatpart[Res.floatbits++]=1;&lt;br /&gt;                       break;&lt;br /&gt;               }&lt;br /&gt;               do  {        /*找商*/&lt;br /&gt;                       CWTNumber  tmp;&lt;br /&gt;                       tmp.intpart[0]=--n;&lt;br /&gt;                       tmp.intbits=1;&lt;br /&gt;                       WTMultiply(z2,tmp,mulres);&lt;br /&gt;               }  while((cmp=mulres.WTCompare(z1))==1);&lt;br /&gt;               Res.floatpart[Res.floatbits++]=n;&lt;br /&gt;               if(cmp==0)  break;&lt;br /&gt;               WTSubtract(z1,mulres,subres);&lt;br /&gt;               subres.MoveFloatPoint(1);&lt;br /&gt;               z1=subres;&lt;br /&gt;       }&lt;br /&gt;       Res.MoveFloatPoint(1);&lt;br /&gt;       Res.MoveFloatPoint(deta);&lt;br /&gt;       /*  判断符号,异号为负*/&lt;br /&gt;       if(n1.sign^n2.sign)  Res.sign=1;&lt;br /&gt;}&lt;br /&gt;char  *CWTNumber::Result(const  char  *val1,const  char  *val2,PFNCALC  pfnCalc)&lt;br /&gt;{&lt;br /&gt;       CWTNumber  n1,n2,res;&lt;br /&gt;       n1.StrToWTNumber(val1);&lt;br /&gt;       n2.StrToWTNumber(val2);&lt;br /&gt;       pfnCalc(n1,n2,res);&lt;br /&gt;       return  res.ToString();&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;char*  CWTNumber::ToString()&lt;br /&gt;{&lt;br /&gt;       FreeString();&lt;br /&gt;       m_sz=new  char[StrLenByWTNumber()];&lt;br /&gt;       WTNumberToStr(m_sz);&lt;br /&gt;       return  m_sz;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;CWTNumber&amp;amp;  CWTNumber::operator=(const  CWTNumber&amp;amp;  n)&lt;br /&gt;{&lt;br /&gt;       if(this!=&amp;amp;n)  {&lt;br /&gt;               FreeString();&lt;br /&gt;               memcpy(this,&amp;amp;n,sizeof(CWTNumber));&lt;br /&gt;               if(n.m_sz)&lt;br /&gt;               {&lt;br /&gt;                       m_sz=strdup(n.m_sz);&lt;br /&gt;               }&lt;br /&gt;       }&lt;br /&gt;       return  *this;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;CWTNumber  CWTNumber::operator+(const  CWTNumber&amp;amp;  n)&lt;br /&gt;{&lt;br /&gt;       CWTNumber  res;&lt;br /&gt;       CWTNumber::WTAdd(*this,n,res);&lt;br /&gt;       return  res;&lt;br /&gt;}&lt;br /&gt;CWTNumber  CWTNumber::operator-(const  CWTNumber&amp;amp;  n)&lt;br /&gt;{&lt;br /&gt;       CWTNumber  res;&lt;br /&gt;       CWTNumber::WTSubtract(*this,n,res);&lt;br /&gt;       return  res;&lt;br /&gt;}&lt;br /&gt;CWTNumber  CWTNumber::operator*(const  CWTNumber&amp;amp;  n)&lt;br /&gt;{&lt;br /&gt;       CWTNumber  res;&lt;br /&gt;       CWTNumber::WTMultiply(*this,n,res);&lt;br /&gt;       return  res;&lt;br /&gt;}&lt;br /&gt;CWTNumber  CWTNumber::operator/(const  CWTNumber&amp;amp;  n)&lt;br /&gt;{&lt;br /&gt;       CWTNumber  res;&lt;br /&gt;       CWTNumber::WTDivide(*this,n,res);&lt;br /&gt;       return  res;&lt;br /&gt;}&lt;br /&gt;CWTNumber&amp;amp;  CWTNumber::operator+=(const  CWTNumber&amp;amp;  n)&lt;br /&gt;{&lt;br /&gt;       CWTNumber  n1=*this,n2=n;&lt;br /&gt;       CWTNumber::WTAdd(n1,n2,*this);&lt;br /&gt;       return  *this;&lt;br /&gt;}&lt;br /&gt;CWTNumber&amp;amp;  CWTNumber::operator-=(const  CWTNumber&amp;amp;  n)&lt;br /&gt;{&lt;br /&gt;       CWTNumber  n1=*this,n2=n;&lt;br /&gt;       CWTNumber::WTSubtract(n1,n2,*this);&lt;br /&gt;       return  *this;&lt;br /&gt;}&lt;br /&gt;CWTNumber&amp;amp;  CWTNumber::operator*=(const  CWTNumber&amp;amp;  n)&lt;br /&gt;{&lt;br /&gt;       CWTNumber  n1=*this,n2=n;&lt;br /&gt;       CWTNumber::WTMultiply(n1,n2,*this);&lt;br /&gt;       return  *this;&lt;br /&gt;}&lt;br /&gt;CWTNumber&amp;amp;  CWTNumber::operator/=(const  CWTNumber&amp;amp;  n)&lt;br /&gt;{&lt;br /&gt;       CWTNumber  n1=*this,n2=n;&lt;br /&gt;       CWTNumber::WTDivide(n1,n2,*this);&lt;br /&gt;       return  *this;&lt;br /&gt;}&lt;br /&gt;bool  CWTNumber::operator&gt;(const  CWTNumber&amp;amp;  n)&lt;br /&gt;{&lt;br /&gt;       return  WTCompare(n)==1;&lt;br /&gt;}&lt;br /&gt;bool  CWTNumber::operator&gt;=(const  CWTNumber&amp;amp;  n)&lt;br /&gt;{&lt;br /&gt;       return  WTCompare(n)!=-1;&lt;br /&gt;}&lt;br /&gt;bool  CWTNumber::operator&lt;(const  CWTNumber&amp;amp;  n)&lt;br /&gt;{&lt;br /&gt;       return  WTCompare(n)==-1;&lt;br /&gt;}&lt;br /&gt;bool  CWTNumber::operator&lt;=(const  CWTNumber&amp;amp;  n)&lt;br /&gt;{&lt;br /&gt;       return  WTCompare(n)!=1;&lt;br /&gt;}&lt;br /&gt;bool  CWTNumber::operator==(const  CWTNumber&amp;amp;  n)&lt;br /&gt;{&lt;br /&gt;       return  WTCompare(n)==0;&lt;br /&gt;}&lt;br /&gt;bool  CWTNumber::operator!=(const  CWTNumber&amp;amp;  n)&lt;br /&gt;{&lt;br /&gt;       return  WTCompare(n)!=0;&lt;br /&gt;}&lt;br /&gt;使用演示:&lt;br /&gt;#include  &lt;stdio.h&gt;&lt;br /&gt;#include  "WTNumber.h"&lt;br /&gt;&lt;br /&gt;int  main()&lt;br /&gt;{&lt;br /&gt;       char  sz1[256]="";&lt;br /&gt;       char  sz2[256]="";&lt;br /&gt;       puts("请输入两个数字:");&lt;br /&gt;       while(scanf("%s%s",sz1,sz2)!=-1)&lt;br /&gt;       {&lt;br /&gt;               CWTNumber  n1(sz1),n2(sz2);&lt;br /&gt;               printf("两数相加结果:\n%s\n",(n1+n2).ToString());&lt;br /&gt;               printf("两数相减结果:\n%s\n",(n1-n2).ToString());&lt;br /&gt;               printf("两数相乘结果:\n%s\n",(n1*n2).ToString());&lt;br /&gt;               printf("两数相除结果:\n%s\n",(n1/n2).ToString());&lt;br /&gt;               puts("请输入两个数字:");&lt;br /&gt;       }&lt;br /&gt;       return  0;&lt;br /&gt;}&lt;br /&gt;运行结果:&lt;br /&gt;请输入两个数字:&lt;br /&gt;13  7&lt;br /&gt;两数相加结果:&lt;br /&gt;20&lt;br /&gt;两数相减结果:&lt;br /&gt;6&lt;br /&gt;两数相乘结果:&lt;br /&gt;91&lt;br /&gt;两数相除结果:&lt;br /&gt;1.85714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714  &lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5931631434944515423-4477274165391401104?l=hxlich.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hxlich.blogspot.com/feeds/4477274165391401104/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5931631434944515423&amp;postID=4477274165391401104' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/4477274165391401104'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/4477274165391401104'/><link rel='alternate' type='text/html' href='http://hxlich.blogspot.com/2010/02/c.html' title='C++大数精度计算'/><author><name>龙加</name><uri>http://www.blogger.com/profile/02424615920585053635</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_fbhMkQzafCA/SLobyz_37BI/AAAAAAAAACo/mrSZALNoSzo/S220/L605781519172GAZ.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5931631434944515423.post-7978692198566805402</id><published>2010-02-18T16:06:00.001-08:00</published><updated>2010-02-18T16:06:53.249-08:00</updated><title type='text'>英文写作第一反应词替换表</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: Tahoma, Verdana, STHeiTi, simsun, sans-serif; font-size: 14px; color: rgb(51, 51, 51); line-height: 21px; "&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;多同学经常把第一反应词翻来覆去的用，这样的后果就是：第一，写文章时用词的质量一直上不去；第二，一直缺乏对背过的单词的应用以及通过应用的语境理解和辨析。下面，我给大家列举了我们在写作常用的那些第一反应词的替换表，旨在告诉大家，要让自己的语言表达能力书面化，多样化。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;很多同学在写作的时候，往往想到某个意思，立刻脑子中想到都是例如I think, important, show, because, moreandmore等等这些词汇，这些词汇在英语教学中，我们称他们为第一反应词，所谓第一反应词，很好理解，就是每个人第一时间反应出来的这些表达。那么，如果要写出一篇高质量的文章，除了内容，词的使用能够表现出你的英语能力，我们很多同学的阅读词汇量远远大于写作词汇量，原因很简单，大家背了很多漂亮的单词，但是却从不给他们“出镜”的机会，而是把这些第一反应词翻来覆去的用，这样的后果就是：第一，写文章时用词的质量一直上不去；第二，一直缺乏对背过的单词的应用以及通过应用的语境理解和辨析。下面，我给大家列举了我们在写作常用的那些第一反应词的替换表，旨在告诉大家，要让自己的语言表达能力书面化，多样化。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;through－&gt;in term of/via&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;operate－&gt;manipulate&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;offspring－&gt;descendant&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;inevitable－dispensable&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;detail－&gt;specific&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;explain－&gt;interpret&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;obvious－&gt;conspicuous&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;hurt－&gt;vulnerable&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;use－&gt;employ/utilize&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;value－&gt;merit&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;provide－&gt;lend－&gt;offer&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;true－&gt;accurate&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;leading to－&gt;contribute to/ conduce to/result in&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;more and more－&gt;increasing/growing&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;hardly－&gt;merely－&gt;barely&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;well-known－&gt;outstanding&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;large－&gt;miraculous/marvelous&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;although－&gt;albeit/notwithstanding&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;in fact－&gt;actually/virtually&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;want－&gt;intend to/tend to/be inclined to&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;because－&gt;in that&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;may be－&gt;probably&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;to sum－&gt;to summarize/in conclusion&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;explain－&gt;interpret/illustrate&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;change－&gt;alert&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;chance－&gt;alternative&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;custom－&gt;convention/tradition&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;think－&gt;contemplate/muse/meditate/retrospect&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;arouse－&gt;ignite/stimulate/spur/motivate&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;limit－&gt;stress/hinder/hamper&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;key－&gt;crucial/vital/consequential&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;old－&gt;ancient&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;emphasis－&gt;accentuate&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;devote to－&gt;dedicate to&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;character－&gt;trait/individuality/idiosyncrasy/personality&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;expect－&gt;anticipate&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;join－&gt;participate&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;delegate－&gt;representative&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;bias－&gt;prejudice/discriminate/tendency&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;thrive－&gt;palmy/floushing/prosperity&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;clash－&gt;conflict/collision/rencounter&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;publicize－&gt;propagandize&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;agree partly－&gt;agree with reserve&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;proper－&gt;apposite&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;want to－&gt;desire&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;big city－&gt;metropolis&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;lawmaking－&gt;legislation&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;first－&gt;primarily&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;but－&gt;nonetheless/nevertheless&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;child－&gt;juvenile&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;absorb－&gt;assimilate&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;hand in－&gt;render&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;undermine－&gt;sap/enervate/debilitate&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;get into chaos－&gt;with chaos ensuing&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;key－&gt;pivot/crux&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;sway－&gt;vacillate&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;fanatic patriotism－&gt;jingoism/chauvinism&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;persusive－&gt;thorough/sound/specific/convincing&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;consider－&gt;take into account&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;vague－&gt;gratuitous/unwarranted/oversimplified&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;absorb－&gt;assimilate&lt;br /&gt;agree partly－&gt;agree with reserve&lt;br /&gt;although－&gt;albeit/notwithstanding&lt;br /&gt;arouse－&gt;ignite/stimulate/spur/motivate&lt;br /&gt;because－&gt;in that&lt;br /&gt;bias－&gt;prejudice/discriminate/tendency&lt;br /&gt;big city－&gt;metropolis&lt;br /&gt;but－&gt;nonetheless/nevertheless&lt;br /&gt;chance－&gt;alternative&lt;br /&gt;change－&gt;alert&lt;br /&gt;character－&gt;trait/individuality/idiosyncrasy/personality&lt;br /&gt;child－&gt;juvenile&lt;br /&gt;clash－&gt;conflict/collision/rencounter&lt;br /&gt;consider－&gt;take into account&lt;br /&gt;custom－&gt;convention/tradition&lt;br /&gt;delegate－&gt;representative&lt;br /&gt;detail－&gt;specific&lt;br /&gt;devote to－&gt;dedicate to&lt;br /&gt;emphasis－&gt;accentuate&lt;br /&gt;expect－&gt;anticipate&lt;br /&gt;explain－&gt;interpret&lt;br /&gt;explain－&gt;interpret/illustrate&lt;br /&gt;fanatic patriotism－&gt;jingoism/chauvinism&lt;br /&gt;first－&gt;primarily&lt;br /&gt;get into chaos－&gt;with chaos ensuing&lt;br /&gt;hand in－&gt;render&lt;br /&gt;hardly－&gt;merely－&gt;barely&lt;br /&gt;hurt－&gt;vulnerable&lt;br /&gt;in fact－&gt;actually/virtually&lt;br /&gt;inevitable－dispensable&lt;br /&gt;join－&gt;participate&lt;br /&gt;key－&gt;crucial/vital/consequential&lt;br /&gt;key－&gt;pivot/crux&lt;br /&gt;large－&gt;miraculous/marvelous&lt;br /&gt;lawmaking－&gt;legislation&lt;br /&gt;leading to－&gt;contribute to/ conduce to/result in&lt;br /&gt;limit－&gt;stress/hinder/hamper&lt;br /&gt;may be－&gt;probably&lt;br /&gt;more and more－&gt;increasing/growing&lt;br /&gt;obvious－&gt;conspicuous&lt;br /&gt;offspring－&gt;descendant&lt;br /&gt;old－&gt;ancient&lt;br /&gt;operate－&gt;manipulate&lt;br /&gt;persusive－&gt;thorough/sound/specific/convincing&lt;br /&gt;proper－&gt;apposite&lt;br /&gt;provide－&gt;lend－&gt;offer&lt;br /&gt;publicize－&gt;propagandize&lt;br /&gt;sway－&gt;vacillate&lt;br /&gt;think－&gt;contemplate/muse/meditate/retrospect&lt;br /&gt;thrive－&gt;palmy/floushing/prosperity&lt;br /&gt;through－&gt;in term of/via&lt;br /&gt;to sum－&gt;to summarize/in conclusion&lt;br /&gt;true－&gt;accurate&lt;br /&gt;undermine－&gt;sap/enervate/debilitate&lt;br /&gt;use－&gt;employ/utilize&lt;br /&gt;vague－&gt;gratuitous/unwarranted/oversimplified&lt;br /&gt;value－&gt;merit&lt;br /&gt;want to－&gt;desire&lt;br /&gt;want－&gt;intend to/tend to/be inclined to&lt;br /&gt;well-known－&gt;outstanding&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5931631434944515423-7978692198566805402?l=hxlich.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hxlich.blogspot.com/feeds/7978692198566805402/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5931631434944515423&amp;postID=7978692198566805402' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/7978692198566805402'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/7978692198566805402'/><link rel='alternate' type='text/html' href='http://hxlich.blogspot.com/2010/02/blog-post_18.html' title='英文写作第一反应词替换表'/><author><name>龙加</name><uri>http://www.blogger.com/profile/02424615920585053635</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_fbhMkQzafCA/SLobyz_37BI/AAAAAAAAACo/mrSZALNoSzo/S220/L605781519172GAZ.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5931631434944515423.post-1522423963068725933</id><published>2010-02-03T12:51:00.000-08:00</published><updated>2010-02-03T12:52:02.340-08:00</updated><title type='text'>求平方根倒数的算法</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: 微软雅黑, Tahoma, Helvetica, Arial, sans-serif; font-size: medium; "&gt;&lt;div class="postmeta" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(153, 153, 153); font-size: 14px; font-weight: 400; text-align: center; "&gt;&lt;span class="red author" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 5px; padding-bottom: 0px; padding-left: 18px; color: red; background-image: url(http://zhiqiang.org/blog/wp-content/themes/yuewei/images/bg.gif); list-style-type: none; background-position: -339px -224px; background-repeat: no-repeat no-repeat; "&gt;zhiqiang&lt;/span&gt;&lt;span class="time" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 18px; background-image: url(http://zhiqiang.org/blog/wp-content/themes/yuewei/images/bg.gif); list-style-type: none; background-position: -340px 0px; background-repeat: no-repeat no-repeat; "&gt;九月 19, 2008&lt;/span&gt;&lt;span class="category" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;a href="http://zhiqiang.org/blog/category/science/computer-science" title="查看 计算机科学 的全部文章" rel="category tag" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 18px; text-decoration: none; background-image: url(http://zhiqiang.org/blog/wp-content/themes/yuewei/images/bg.gif); list-style-type: none; background-position: -336px -59px; background-repeat: no-repeat no-repeat; "&gt;计算机科学&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="postentry" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 5px; padding-bottom: 0px; padding-left: 5px; font-size: 16px; "&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6em; "&gt;下面这个求&lt;img src="http://zhiqiang.org/blog/wp-content/cache/tex_c316ab9d453dd89c01a6fdb29cfb28de.png" class="tex" alt="1/\sqrt{x}" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 2px; padding-bottom: 0px; padding-left: 2px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; vertical-align: middle; border-color: initial; " /&gt;的函数号称比直接调用sqrt库函数快4倍，来自游戏Quake III的源代码。&lt;/p&gt;&lt;blockquote style="margin-top: 1em; margin-right: auto; margin-bottom: 0px; margin-left: auto; padding-top: 5px; padding-right: 7px; padding-bottom: 5px; padding-left: 7px; background-color: rgb(238, 238, 238); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dotted; border-right-style: dotted; border-bottom-style: dotted; border-left-style: dotted; border-top-color: black; border-right-color: black; border-bottom-color: black; border-left-color: black; width: 573px; "&gt;&lt;pre style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: 'Courier New', Courier, monospace; letter-spacing: 0px; overflow-x: hidden; overflow-y: hidden; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(0, 0, 255); "&gt;float&lt;/span&gt; InvSqrt (&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(0, 0, 255); "&gt;float&lt;/span&gt; x){     &lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(0, 0, 255); "&gt;float&lt;/span&gt; xhalf = 0.5f*x;     &lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(0, 0, 255); "&gt;int&lt;/span&gt; i = *(&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(0, 0, 255); "&gt;int&lt;/span&gt;*)&amp;x;     i = 0x5f3759df - (i&gt;&gt;1);     y = *(&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(0, 0, 255); "&gt;float&lt;/span&gt;*)&amp;i;     y = y*(1.5f - xhalf*y*y);     &lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(0, 0, 255); "&gt;return&lt;/span&gt; x; }&lt;/pre&gt;&lt;/blockquote&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6em; "&gt;我们这里分析一下它的原理（指程序的正确性，而不是解释为何快）。&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6em; "&gt;分析程序之前，我们必须解释一下float数据在计算机里的表示方式。一般而言，一个float数据&lt;img src="http://zhiqiang.org/blog/wp-content/cache/tex_9dd4e461268c8034f5c8564e155c67a6.png" class="tex" alt="x" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; vertical-align: middle; border-color: initial; " /&gt;共32个bit，和int数据一样。其中前23位为有效数字&lt;img src="http://zhiqiang.org/blog/wp-content/cache/tex_832cab6245118c67b73c5ef0be7cf7e8.png" class="tex" alt="M_x" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 2px; padding-bottom: 1px; padding-left: 2px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; vertical-align: middle; border-color: initial; " /&gt;，后面接着一个8位数据&lt;img src="http://zhiqiang.org/blog/wp-content/cache/tex_893be2279f4c4bc665184cf9f87da90c.png" class="tex" alt="E_x" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 2px; padding-bottom: 1px; padding-left: 2px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; vertical-align: middle; border-color: initial; " /&gt;表示指数，最后一位表示符号，由于这里被开方的数总是大于0，所以我们暂不考虑最后一个符号位。此时&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6em; "&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6em; text-align: center; "&gt;&lt;img src="http://zhiqiang.org/blog/wp-content/cache/tex_1e4110c15e61979363c8a50c9be6667c.png" class="tex" alt="x=1.M_x 2^{E_x-127} " style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 2px; padding-bottom: 0px; padding-left: 2px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; vertical-align: middle; border-color: initial; " /&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6em; "&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6em; "&gt;如果我们把计算机内的浮点数&lt;img src="http://zhiqiang.org/blog/wp-content/cache/tex_9dd4e461268c8034f5c8564e155c67a6.png" class="tex" alt="x" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; vertical-align: middle; border-color: initial; " /&gt;看做一个整数&lt;img src="http://zhiqiang.org/blog/wp-content/cache/tex_e0c12d615090d3574f32ebeab63f5601.png" class="tex" alt="I_x" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 2px; padding-bottom: 1px; padding-left: 2px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; vertical-align: middle; border-color: initial; " /&gt;，那么&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6em; text-align: center; "&gt;&lt;img src="http://zhiqiang.org/blog/wp-content/cache/tex_104440c83c5fffbe38f981757bd33978.png" class="tex" alt="I_x = 2^{23}E_x+M_x " style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 2px; padding-bottom: 0px; padding-left: 2px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; vertical-align: middle; border-color: initial; " /&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6em; "&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6em; "&gt;现在开始逐步分析函数。这个函数的主体有四个语句，分别的功能是：&lt;/p&gt;&lt;blockquote style="margin-top: 1em; margin-right: auto; margin-bottom: 0px; margin-left: auto; padding-top: 5px; padding-right: 7px; padding-bottom: 5px; padding-left: 7px; background-color: rgb(238, 238, 238); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dotted; border-right-style: dotted; border-bottom-style: dotted; border-left-style: dotted; border-top-color: black; border-right-color: black; border-bottom-color: black; border-left-color: black; width: 573px; "&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6em; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(0, 0, 255); "&gt;int&lt;/span&gt; i = *(&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(0, 0, 255); "&gt;int&lt;/span&gt;*)&amp;x; 这条语句把&lt;img src="http://zhiqiang.org/blog/wp-content/cache/tex_9dd4e461268c8034f5c8564e155c67a6.png" class="tex" alt="x" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; vertical-align: middle; border-color: initial; " /&gt;转成&lt;img src="http://zhiqiang.org/blog/wp-content/cache/tex_1efc275e97e02ac108c7836caad83cc0.png" class="tex" alt="i=I_x" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 2px; padding-bottom: 1px; padding-left: 2px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; vertical-align: middle; border-color: initial; " /&gt;。&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6em; "&gt;i = 0x5f3759df - (i&gt;&gt;1); 这条语句从&lt;img src="http://zhiqiang.org/blog/wp-content/cache/tex_e0c12d615090d3574f32ebeab63f5601.png" class="tex" alt="I_x" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 2px; padding-bottom: 1px; padding-left: 2px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; vertical-align: middle; border-color: initial; " /&gt;计算&lt;img src="http://zhiqiang.org/blog/wp-content/cache/tex_ed49444b7e57c2fc4dfc8f056fae6bc4.png" class="tex" alt="I_{1/\sqrt{x}}" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 2px; padding-bottom: 0px; padding-left: 2px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; vertical-align: middle; border-color: initial; " /&gt;。&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6em; "&gt;y = *(&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(0, 0, 255); "&gt;float&lt;/span&gt;*)&amp;i; 这条语句将&lt;img src="http://zhiqiang.org/blog/wp-content/cache/tex_ed49444b7e57c2fc4dfc8f056fae6bc4.png" class="tex" alt="I_{1/\sqrt{x}}" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 2px; padding-bottom: 0px; padding-left: 2px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; vertical-align: middle; border-color: initial; " /&gt;转换为&lt;img src="http://zhiqiang.org/blog/wp-content/cache/tex_c316ab9d453dd89c01a6fdb29cfb28de.png" class="tex" alt="1/\sqrt{x}" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 2px; padding-bottom: 0px; padding-left: 2px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; vertical-align: middle; border-color: initial; " /&gt;。&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6em; "&gt;y = y*(1.5f - xhalf*y*y); 这时候的y是近似解；此步就是经典的牛顿迭代法。迭代次数越多越准确。&lt;/p&gt;&lt;/blockquote&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6em; "&gt;关键是第二步 i = 0x5f3759df - (i&gt;&gt;1); 这条语句从&lt;img src="http://zhiqiang.org/blog/wp-content/cache/tex_e0c12d615090d3574f32ebeab63f5601.png" class="tex" alt="I_x" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 2px; padding-bottom: 1px; padding-left: 2px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; vertical-align: middle; border-color: initial; " /&gt;计算&lt;img src="http://zhiqiang.org/blog/wp-content/cache/tex_ed49444b7e57c2fc4dfc8f056fae6bc4.png" class="tex" alt="I_{1/\sqrt{x}}" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 2px; padding-bottom: 0px; padding-left: 2px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; vertical-align: middle; border-color: initial; " /&gt;，原理:&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6em; "&gt;令&lt;img src="http://zhiqiang.org/blog/wp-content/cache/tex_aa1b97bb7383597663a51e7ad5b0da35.png" class="tex" alt="y=1/\sqrt{x}" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 2px; padding-bottom: 0px; padding-left: 2px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; vertical-align: middle; border-color: initial; " /&gt;，用&lt;img src="http://zhiqiang.org/blog/wp-content/cache/tex_1759e9f3f5a3125e49343a92a2b7cf7c.png" class="tex" alt="x=(1+m_x)2^{e_x}" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 2px; padding-bottom: 0px; padding-left: 2px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; vertical-align: middle; border-color: initial; " /&gt;和&lt;img src="http://zhiqiang.org/blog/wp-content/cache/tex_8a525bf37b169a440892a25eb7403799.png" class="tex" alt="y=(1+m_y)2^{e_y}" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 2px; padding-bottom: 0px; padding-left: 2px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; vertical-align: middle; border-color: initial; " /&gt;带入之后两边取对数，再利用近似表示&lt;img src="http://zhiqiang.org/blog/wp-content/cache/tex_ea3d4f8b071da0aba0556f4b7de23443.png" class="tex" alt="\log_2(1+z)\sim z+\delta" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 2px; padding-bottom: 0px; padding-left: 2px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; vertical-align: middle; border-color: initial; " /&gt;，算一算就得到&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6em; "&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6em; text-align: center; "&gt;&lt;img src="http://zhiqiang.org/blog/wp-content/cache/tex_97c1e31a970b3aae9c98ba334dd4c151.png" class="tex" alt="I_y = \frac{2}{3}(127-\delta)2^{23}-I_x/2 " style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 2px; padding-bottom: 0px; padding-left: 2px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; vertical-align: middle; border-color: initial; " /&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6em; "&gt;&lt;/p&gt;&lt;p style="margin-top: 1em; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6em; "&gt;若取&lt;img src="http://zhiqiang.org/blog/wp-content/cache/tex_322863072b22b9062d0ad72cb98692f7.png" class="tex" alt="\delta=0.0450465679168701171875" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 2px; padding-bottom: 1px; padding-left: 2px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; vertical-align: middle; border-color: initial; " /&gt;，&lt;img src="http://zhiqiang.org/blog/wp-content/cache/tex_5c30a3072abd9f51847218d4ddede824.png" class="tex" alt="\frac{2}{3}(127-\delta)2^{23}" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 2px; padding-bottom: 0px; padding-left: 2px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; vertical-align: middle; border-color: initial; " /&gt;就是程序里所用的常量0x5f3759df。至于为何选择这个&lt;img src="http://zhiqiang.org/blog/wp-content/cache/tex_77a3b715842b45e440a5bee15357ad29.png" class="tex" alt="\delta" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 2px; padding-bottom: 1px; padding-left: 2px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; vertical-align: middle; border-color: initial; " /&gt;，则应该是曲线拟合实验的结果。&lt;/p&gt;&lt;/div&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5931631434944515423-1522423963068725933?l=hxlich.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hxlich.blogspot.com/feeds/1522423963068725933/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5931631434944515423&amp;postID=1522423963068725933' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/1522423963068725933'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/1522423963068725933'/><link rel='alternate' type='text/html' href='http://hxlich.blogspot.com/2010/02/blog-post.html' title='求平方根倒数的算法'/><author><name>龙加</name><uri>http://www.blogger.com/profile/02424615920585053635</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_fbhMkQzafCA/SLobyz_37BI/AAAAAAAAACo/mrSZALNoSzo/S220/L605781519172GAZ.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5931631434944515423.post-440143044778127333</id><published>2010-01-18T20:52:00.000-08:00</published><updated>2010-01-18T20:54:27.776-08:00</updated><title type='text'>致想去美国旅游的加拿大中国留学生们</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: Tahoma, Verdana, STHeiTi, simsun, sans-serif; font-size: 14px; color: rgb(51, 51, 51); line-height: 21px; "&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;转自校内网 c&lt;/p&gt;&lt;span class="Apple-style-span" style="line-height: normal; font-size: 12px; "&gt;&lt;h2 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 5px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 14px; "&gt;林楷翔&lt;/h2&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="line-height: normal; font-size: 12px; "&gt;&lt;h2 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 5px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 14px; "&gt;林楷翔&lt;/h2&gt;&lt;/span&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;第一篇日志。虽然不知道大家去美国的热情有没有去&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;obarts（多伦多大学图书馆）那么强烈，我就先简单写写本人是如何申请美国签证的，仅供参考。具体信息在该官方网站上有。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;这是申请美国签证的官方网站:&lt;a href="https://www.nvars.com/Production/UserLogin.aspx" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(0, 94, 172); cursor: pointer; text-decoration: none; "&gt;https://www.nvars.com/Production/UserLogin.aspx&lt;/a&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;有兴趣的可以点击“HOME"看看具体信息，比如其他类型的签证。不过要是去旅游的直接上login就行了。输入自己的护照，然后系统就会给你一个reference number。把那个数字记住因为每次登陆都需要那个号。在这个过程中，还需要交8，9块钱手续费，用visa，mastercard就行。然后把自己信息填全了，尤其是自己的current address，后，开始填写表格。一共有4个表格，156，157，158还有一个银行bill。156是在网上填，点击链接拉到网页最下面就有，填好后最好身边就有个打印机可以直接打出来。156表打出来后需要贴上照片，文章后面会提到。然后剩下两张表也在网上填好打出来就行，也可以保存下来供日后检查。最后的那个bill payment，一共有三张一样的，一张交完钱后留给银行，两张留着面签时候用。钱在Scotia bank银行办理，google map可以查一下，多伦多到处都有这个银行，而且哪个分银都可以办，所以找个近的就行。加币大概是140左右吧&lt;img class="mceItem emotion" src="http://xnimg.cn/imgpro/emotions/tie/5.gif" border="0" alt="尴尬" style="margin-top: 0px; margin-right: 2px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; max-width: 550px; " /&gt;。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;需要注意的是，156表中，issuing country是CHINA，issuing date写你护照第一页上的日期，不是加拿大签证那张纸上的日期，签证地点还有expiration date也是第一页上的。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;签证当天最好提前买一个prepaid的信封，多伦多的美国大使馆附近就有一个叫Staple的地方，那里可以买到passport信封，在那里卖的人都知道。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;除了信封，还要开一个学校的在校证明，去你所在的college办一个就行了，应该是免费的；然后找一个专门照签证照的地方照个相片，他们都知道去美国应该要什么样的。一张就够了，但多多益善。签证的准备就是那么多，至于银行存款证明，我准备了但是签证官没管我要。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.8em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;签证当天最好早点去，早预约时间的半个小时，因为有很多人在那里排队。一本护照四张表格再加上一封证明信应该就会approved的了吧。还有什么问题就回复好了。由于是第一次签美国，不知道还会有什么遇到没遇到的问题。所以仅供参考。祝你们成功&lt;img class="mceItem emotion" src="http://xnimg.cn/imgpro/emotions/tie/3.gif" border="0" alt="吃饭" style="margin-top: 0px; margin-right: 2px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; max-width: 550px; " /&gt;&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5931631434944515423-440143044778127333?l=hxlich.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hxlich.blogspot.com/feeds/440143044778127333/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5931631434944515423&amp;postID=440143044778127333' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/440143044778127333'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/440143044778127333'/><link rel='alternate' type='text/html' href='http://hxlich.blogspot.com/2010/01/blog-post.html' title='致想去美国旅游的加拿大中国留学生们'/><author><name>龙加</name><uri>http://www.blogger.com/profile/02424615920585053635</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_fbhMkQzafCA/SLobyz_37BI/AAAAAAAAACo/mrSZALNoSzo/S220/L605781519172GAZ.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5931631434944515423.post-6225834246947450287</id><published>2010-01-05T04:54:00.001-08:00</published><updated>2010-01-05T04:54:55.657-08:00</updated><title type='text'>9种排骨做法</title><content type='html'>&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, 宋体; font-size: medium; "&gt;&lt;table width="100%" cellspacing="0" cellpadding="0" border="0"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;table width="100%" cellpadding="0" cellspacing="0" border="0"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td valign="middle" align="left"&gt;&lt;span style="font-size: 12px; "&gt;&lt;b&gt;本文来自这个频道&lt;/b&gt;&lt;/span&gt;  &lt;a href="http://c.tugus.com/style" class="amain4" style="padding-top: 2px; padding-bottom: 2px; padding-left: 2px; padding-right: 2px; text-decoration: none; font-size: 12px; color: rgb(255, 255, 255); background-color: rgb(255, 51, 0); "&gt;品质生活&lt;/a&gt;&lt;p style="line-height: 16px; margin-left: 0px; margin-right: 0px; margin-top: 5px; margin-bottom: 0px; "&gt;&lt;span style="font-size: 12px; "&gt;生活的愉悦和舒适，消费的时尚和品味——给你工作八小时之外&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;table width="100%" cellpadding="0" cellspacing="0" border="0"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td height="25" align="right"&gt;&lt;a href="http://group.tugus.com/bbs_tuijian:3:137360237112953313737052"&gt;&lt;img border="0" src="http://www.tugus.com/image/tuijian.gif" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align="left"&gt;&lt;img border="0" src="http://img.tugus.com/img3/2010/01/05/0915559446-312586_1.jpg" /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align="left"&gt;&lt;span style="font-size: 12px; "&gt;这里更讲究营养的搭配，记录下来，准备一个礼拜做一款，满足一下我们家一群肉食动物的食欲吧。尽量做到“神似”，“形似”类似形式主义，就不考虑了，反正最后都进入肚子了呢。朋友们如若喜欢，也可以照着做的，很简&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;table width="100%" cellpadding="0" cellspacing="0" border="0" style="table-layout: fixed; word-wrap: break-word; width: 625px; "&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;div id="divcc" style="display: block; "&gt;&lt;p style="text-indent: 25px; line-height: 24px; "&gt;&lt;span style="font-size: 14px; "&gt;1、香酥排骨&lt;br /&gt;&lt;table width="100%" cellpadding="0" cellspacing="0" border="0"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td align="left"&gt;&lt;img border="0" src="http://img.tugus.com/img3/2010/01/05/0915559446-602644_2.jpg" /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align="left"&gt;&lt;span style="font-size: 12px; "&gt;酥&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;用料： &lt;br /&gt;　　1、猪排骨一斤。 &lt;br /&gt;　　2、葱三棵。 &lt;br /&gt;　　3、老姜一块。 &lt;br /&gt;　　4、酱油一大匙。&lt;br /&gt;　　5、五香粉咖啡匙。 &lt;br /&gt;　　6、熟芝麻一大匙。 &lt;br /&gt;　　7、香油一小匙。 &lt;br /&gt;　　8、盐、味精适量。 &lt;br /&gt;　　9、汤或水一汤匙。 &lt;br /&gt;　　做法： &lt;br /&gt;　　1、排骨斩段，过飞水捞出；葱切段；姜切片。 &lt;br /&gt;　　2、将排骨放沸水锅中煮约二十分钟，捞出后装碗里，放入酱油、姜片、盐，拌匀码味约三十分钟。 &lt;br /&gt;　　3、锅中放油烧至七成热，下排骨炸至表面微黄色后捞出。锅中留约一两油，放入排骨、汤或水、五香粉、味精，用中火烧至汤汁将干时，放芝麻、香油铲匀即可起锅装盘上桌。 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;2、草莓酱排骨&lt;br /&gt;&lt;table width="100%" cellpadding="0" cellspacing="0" border="0"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td align="left"&gt;&lt;img border="0" src="http://img.tugus.com/img3/2010/01/05/0915559446-888512_3.jpg" /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align="left"&gt;&lt;span style="font-size: 12px; "&gt;酱香&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;用料： &lt;br /&gt;　　1、猪排骨半斤。 &lt;br /&gt;　　2、草莓酱两大匙。 &lt;br /&gt;　　3、蕃茄酱两大匙。 &lt;br /&gt;　　4、白糖一咖啡匙。 &lt;br /&gt;　　5、盐、鸡精适量。 &lt;br /&gt;　　做法： &lt;br /&gt;　　1、排骨斩段，飞水去血沫后捞出。 &lt;br /&gt;　　2、将排骨装盘子里，放沸水蒸锅中大火蒸约半小时后，取出待用。 &lt;br /&gt;　　3、锅中放油烧至四成热，放入草莓酱、蕃茄酱、白糖、盐用小火慢炒约一分钟，下排骨、鸡精，翻炒均匀后起锅装盘即成。 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;3、糖醋排骨 &lt;br /&gt;&lt;table width="100%" cellpadding="0" cellspacing="0" border="0"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td align="left"&gt;&lt;img border="0" src="http://img.tugus.com/img3/2010/01/05/0915559446-513339_4.jpg" /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align="left"&gt;&lt;span style="font-size: 12px; "&gt;酸甜&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;用料： &lt;br /&gt;　　1、猪排骨一斤，斩段。 &lt;br /&gt;　　2、白糖三大匙。 &lt;br /&gt;　　3、醋四大匙。 &lt;br /&gt;　　4、酱油两大匙。 &lt;br /&gt;　　5、葱四棵，切段。 &lt;br /&gt;　　6、老姜一小块、蒜一瓣，均切片。 &lt;br /&gt;　　7、泡辣椒六个，切段。 &lt;br /&gt;　　8、淀粉一大匙，加水兑成芡汁。 &lt;br /&gt;　　9、盐适量。 &lt;br /&gt;　　做法： &lt;br /&gt;　　1、将排骨过沸水，捞出沥干待用。 &lt;br /&gt;　　2、锅中放油烧至七成热，下排骨爆干水气再爆至微黄，放入酱油、泡辣椒段、姜蒜片略炒后，加约两斤水，烧沸后改小火烧约一小时。至汤汁快干时，下盐、醋、糖、葱铲匀，勾芡，铲匀，起锅装盘即成。&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;4、豉香排骨 &lt;br /&gt;&lt;table width="100%" cellpadding="0" cellspacing="0" border="0"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td align="left"&gt;&lt;img border="0" src="http://img.tugus.com/img3/2010/01/05/0915559446-30488_5.jpg" /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align="left"&gt;&lt;span style="font-size: 12px; "&gt;豆豉&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;用料： &lt;br /&gt;　　1、排骨一斤半。 &lt;br /&gt;　　2、豆豉三大匙。 &lt;br /&gt;　　3、芹菜二两。 &lt;br /&gt;　　4、葱半两。 &lt;br /&gt;　　5、老姜一块。 &lt;br /&gt;　　6、蒜半个。 &lt;br /&gt;　　7、油辣椒三大匙。 &lt;br /&gt;　　8、蚝油两大匙。 &lt;br /&gt;　　9、干红葡萄酒半汤匙。 &lt;br /&gt;　　10、盐、鸡精适量。 &lt;br /&gt;　　做法： &lt;br /&gt;　　1、将排骨过沸水后捞出沥干水分；蒜切末；老姜一半切末一半切片；芹菜切段；葱切段。 &lt;br /&gt;　　2、在排骨中放入姜片、葱段、干红葡萄酒，拌匀后码味二十分钟以上。 &lt;br /&gt;　　3、放沸水蒸锅中大火蒸约四十分钟，取出后沥干水分。 &lt;br /&gt;　　4、锅中放油烧至五成热，下排骨炸呈微黄色后捞出待用。 &lt;br /&gt;　　5、锅中留约一汤匙油，烧至五成热，下姜末、蒜末、豆豉，改小火不断翻炒约一分半钟，下排骨、油辣椒、芹菜、蚝油、盐，慢炒约三分钟至入味，放鸡精铲匀，起锅装盘即成。 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;5、五香粉蒸排骨&lt;br /&gt;&lt;table width="100%" cellpadding="0" cellspacing="0" border="0"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td align="left"&gt;&lt;img border="0" src="http://img.tugus.com/img3/2010/01/05/0915559446-127694_6.jpg" /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align="left"&gt;&lt;span style="font-size: 12px; "&gt;黏糊粉&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;用料： &lt;br /&gt;　　1、猪排骨一斤，斩段。 &lt;br /&gt;　　2、大米二两。 &lt;br /&gt;　　3、葱四棵，切碎。 &lt;br /&gt;　　4、甜面酱一大匙。 &lt;br /&gt;　　5、红糖一大匙。 &lt;br /&gt;　　6、酱油两大匙。 &lt;br /&gt;　　7、老姜极小块，切末。 &lt;br /&gt;　　8、醪糟汁两大匙。 &lt;br /&gt;　　9、五香粉一小匙。 &lt;br /&gt;　　做法： &lt;br /&gt;　　1、在排骨中放入盐、酱油、红糖、甜面酱、醪糟汁、葱碎、姜末、五香粉拌匀码味。 &lt;br /&gt;　　2、将珍珠米下锅烘焙呈微黄色，盛出晾凉后，放搅拌机里搅碎，倒入排骨中拌匀。上沸水蒸锅里用中大火蒸一小时。将碗取出后用另一大盘扣在碗上，把排骨翻倒在盘里即可上桌。 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;6、海带排骨汤&lt;br /&gt;&lt;table width="100%" cellpadding="0" cellspacing="0" border="0"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td align="left"&gt;&lt;img border="0" src="http://img.tugus.com/img3/2010/01/05/0915559446-528346_7.jpg" /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align="left"&gt;&lt;span style="font-size: 12px; "&gt;海带&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;用料： &lt;br /&gt;　　1、猪排骨两斤，斩段。 &lt;br /&gt;　　2、鲜海带一斤，切长方块。 &lt;br /&gt;　　3、老姜一块，用刀拍破。 &lt;br /&gt;　　4、花椒二十余粒。 &lt;br /&gt;　　5、黄酒两大匙。 &lt;br /&gt;　　6、盐适量。 &lt;br /&gt;　　做法： &lt;br /&gt;　　1、将海带块放沸水中十分钟，捞出后泡清水里。 &lt;br /&gt;　　2、将排骨放沸水里焯一下去血沫。 &lt;br /&gt;　　3、在炖锅中加半锅水，下排骨、海带、老姜、花椒、黄酒，大火烧沸后改微火煲一个半小时后放盐，改中火炖约十分钟，起锅盛汤钵里可配上适合自己口味的调料即可食用。&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;7、莲藕排骨汤 &lt;br /&gt;&lt;table width="100%" cellpadding="0" cellspacing="0" border="0"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td align="left"&gt;&lt;img border="0" src="http://img.tugus.com/img3/2010/01/05/0915559446-291095_8.jpg" /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align="left"&gt;&lt;span style="font-size: 12px; "&gt;莲藕香&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;用料： &lt;br /&gt;　　1、排骨一斤半，斩成段在沸水中焯一下后捞起。 &lt;br /&gt;　　2、藕两斤（边沿九孔的粉藕），切小块或切段后用刀拍破。 &lt;br /&gt;　　3、老姜一切，用刀拍破。 &lt;br /&gt;　　4、花椒约二十粒。 &lt;br /&gt;　　5、黄酒两大匙。 &lt;br /&gt;　　6、盐适量。 &lt;br /&gt;　　做法： &lt;br /&gt;　　先把藉放炖锅中小火炖四十分钟，或在高压锅中压二十分钟，然后放入排骨，烧沸后打去浮沫，再放料酒、花椒、老姜，沸后改小火炖一小时后，放盐再继续炖一小时即成。&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;8、冬瓜排骨汤 &lt;br /&gt;&lt;table width="100%" cellpadding="0" cellspacing="0" border="0"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td align="left"&gt;&lt;img border="0" src="http://img.tugus.com/img3/2010/01/05/0915559446-645657_9.jpg" /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align="left"&gt;&lt;span style="font-size: 12px; "&gt;冬瓜肉&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;用料： &lt;br /&gt;　　1、猪排骨一斤，斩块。 &lt;br /&gt;　　2、冬瓜一斤半，切约一厘米厚的片。 &lt;br /&gt;　　3、葱半两，挽结。 &lt;br /&gt;　　4、老姜一块，用刀拍破。 &lt;br /&gt;　　5、花椒约二十粒。 &lt;br /&gt;　　6、黄酒两匙。 &lt;br /&gt;　　7、盐适量。 &lt;br /&gt;　　做法： &lt;br /&gt;　　1、将排骨在沸水中焯一下去腥味和血水，捞起备用。 &lt;br /&gt;　　2、炖锅中加水，放入姜块、葱结、花椒，烧沸后倒入排骨、黄酒。 &lt;br /&gt;　　3、再次烧沸后放盐，改微火煲一个半小时，再倒入冬瓜块。 &lt;br /&gt;　　4、改中火煮约二十分钟至冬瓜软熟，捞去葱结不要，盛烫碗里即可上桌。 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;9、孜然排骨 &lt;br /&gt;&lt;table width="100%" cellpadding="0" cellspacing="0" border="0"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td align="left"&gt;&lt;img border="0" src="http://img.tugus.com/img3/2010/01/05/0915559446-495691_10.jpg" /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align="left"&gt;&lt;span style="font-size: 12px; "&gt;孜然一体&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;用料： &lt;br /&gt;　　1、猪排骨半斤，斩小段后充分洗净。 &lt;br /&gt;　　2、孜然粉一咖啡匙。 &lt;br /&gt;　　3、花椒粉一咖啡匙。 &lt;br /&gt;　　4、辣椒粉两匙（可依个人喜好增减）。 &lt;br /&gt;　　5、葱两棵切碎。 &lt;br /&gt;　　6、老姜一小小块切末。 &lt;br /&gt;　　7、料酒两大匙。 &lt;br /&gt;　　8、白糖一匙。 &lt;br /&gt;　　9、盐、味精、红油适量。 &lt;br /&gt;　　做法： &lt;br /&gt;　　1、用盐、姜末、葱碎料酒放排骨里拌匀腌两小时以上。 &lt;br /&gt;　　2、放入孜然粉、花椒粉、辣椒粉、白糖、味精、红油，拌匀。 &lt;br /&gt;　　3、放微波炉里高火烤10分钟即成&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5931631434944515423-6225834246947450287?l=hxlich.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hxlich.blogspot.com/feeds/6225834246947450287/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5931631434944515423&amp;postID=6225834246947450287' title='1 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/6225834246947450287'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/6225834246947450287'/><link rel='alternate' type='text/html' href='http://hxlich.blogspot.com/2010/01/9.html' title='9种排骨做法'/><author><name>龙加</name><uri>http://www.blogger.com/profile/02424615920585053635</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_fbhMkQzafCA/SLobyz_37BI/AAAAAAAAACo/mrSZALNoSzo/S220/L605781519172GAZ.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5931631434944515423.post-2989416018284637093</id><published>2009-09-27T10:25:00.001-07:00</published><updated>2009-09-27T10:25:29.588-07:00</updated><title type='text'>来自官方的 windows 7 快捷键大全</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, Geneva, sans-serif; font-size: 14px; line-height: 21px; "&gt;&lt;h2 id="h-1" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0.5em; margin-right: 0px; margin-bottom: 0.2em; margin-left: 0px; font-size: 1em; color: black; line-height: 1.7em; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(136, 136, 136); "&gt;1. 轻松访问键盘快捷方式 &lt;a href="http://xbeta.info/windows-7-shortcuts.htm#index" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; color: black; text-decoration: none; "&gt;↖&lt;/a&gt;&lt;/h2&gt;&lt;p style="padding-top: 5px; padding-right: 0px; padding-bottom: 5px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;下表包含了可以有助于使计算机更易于使用的键盘快捷方式。&lt;br /&gt;按键 功能&lt;br /&gt;按住右 Shift 八秒钟 启用和关闭筛选键&lt;br /&gt;按左 Alt+左 Shift+PrtScn（或 PrtScn） 启用或关闭高对比度&lt;br /&gt;按左 Alt+左 Shift+Num Lock 启用或关闭鼠标键&lt;br /&gt;按 Shift 五次 启用或关闭粘滞键&lt;br /&gt;按住 Num Lock 五秒钟 启用或关闭切换键&lt;br /&gt;Windows 徽标键 + U 打开轻松访问中心&lt;/p&gt;&lt;h2 id="h-2" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0.5em; margin-right: 0px; margin-bottom: 0.2em; margin-left: 0px; font-size: 1em; color: black; line-height: 1.7em; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(136, 136, 136); "&gt;2. 常规键盘快捷方式 &lt;a href="http://xbeta.info/windows-7-shortcuts.htm#index" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; color: black; text-decoration: none; "&gt;↖&lt;/a&gt;&lt;/h2&gt;&lt;p style="padding-top: 5px; padding-right: 0px; padding-bottom: 5px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;下表包含了常规键盘快捷方式。&lt;br /&gt;按键 功能&lt;br /&gt;F1 显示帮助&lt;br /&gt;Ctrl+C 复制选择的项目&lt;br /&gt;Ctrl+X 剪切选择的项目&lt;br /&gt;Ctrl+V 粘贴选择的项目&lt;br /&gt;Ctrl+Z 撤消操作&lt;br /&gt;Ctrl+Y 重新执行某项操作&lt;br /&gt;Delete 删除所选项目并将其移动到“回收站”&lt;br /&gt;Shift+Delete 不先将所选项目移动到“回收站”而直接将其删除&lt;br /&gt;F2 重命名选定项目&lt;br /&gt;Ctrl+向右键 将光标移动到下一个字词的起始处&lt;br /&gt;Ctrl+向左键 将光标移动到上一个字词的起始处&lt;br /&gt;Ctrl+向下键 将光标移动到下一个段落的起始处&lt;br /&gt;Ctrl+向上键 将光标移动到上一个段落的起始处&lt;br /&gt;Ctrl+Shift 加某个箭头键 选择一块文本&lt;br /&gt;Shift 加任意箭头键 在窗口中或桌面上选择多个项目，或者在文档中选择文本&lt;br /&gt;Ctrl 加任意箭头键+空格键 选择窗口中或桌面上的多个单个项目&lt;br /&gt;Ctrl+A 选择文档或窗口中的所有项目&lt;br /&gt;F3 搜索文件或文件夹&lt;br /&gt;Alt+Enter 显示所选项的属性&lt;br /&gt;Alt+F4 关闭活动项目或者退出活动程序&lt;br /&gt;Alt+空格键 为活动窗口打开快捷方式菜单&lt;br /&gt;Ctrl+F4 关闭活动文档（在允许同时打开多个文档的程序中）&lt;br /&gt;Alt+Tab 在打开的项目之间切换&lt;br /&gt;Ctrl+Alt+Tab 使用箭头键在打开的项目之间切换&lt;br /&gt;Ctrl+鼠标滚轮 更改桌面上的图标大小&lt;br /&gt;Windows 徽标键 + Tab 使用 Aero Flip 3-D 循环切换任务栏上的程序&lt;br /&gt;Ctrl + Windows 徽标键 + Tab 通过 Aero Flip 3-D 使用箭头键循环切换任务栏上的程序&lt;br /&gt;Alt+Esc 以项目打开的顺序循环切换项目&lt;br /&gt;F6 在窗口中或桌面上循环切换屏幕元素&lt;br /&gt;F4 在 Windows 资源管理器中显示地址栏列表&lt;br /&gt;Shift+F10 显示选定项目的快捷菜单&lt;br /&gt;Ctrl+Esc 打开「开始」菜单&lt;br /&gt;Alt+加下划线的字母 显示相应的菜单&lt;br /&gt;Alt+加下划线的字母 执行菜单命令（或其他有下划线的命令）&lt;br /&gt;F10 激活活动程序中的菜单栏&lt;br /&gt;向右键 打开右侧的下一个菜单或者打开子菜单&lt;br /&gt;向左键 打开左侧的下一个菜单或者关闭子菜单&lt;br /&gt;F5 刷新活动窗口&lt;br /&gt;Alt+向上键 在 Windows 资源管理器中查看上一级文件夹&lt;br /&gt;Esc 取消当前任务&lt;br /&gt;Ctrl+Shift+Esc 打开任务管理器&lt;br /&gt;插入 CD 时按住 Shift 阻止 CD 自动播放&lt;/p&gt;&lt;h2 id="h-3" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0.5em; margin-right: 0px; margin-bottom: 0.2em; margin-left: 0px; font-size: 1em; color: black; line-height: 1.7em; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(136, 136, 136); "&gt;3. 对话框键盘快捷方式 &lt;a href="http://xbeta.info/windows-7-shortcuts.htm#index" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; color: black; text-decoration: none; "&gt;↖&lt;/a&gt;&lt;/h2&gt;&lt;p style="padding-top: 5px; padding-right: 0px; padding-bottom: 5px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;下表包含了在对话框中使用的键盘快捷方式。&lt;br /&gt;按键 功能&lt;br /&gt;Ctrl+Tab 在选项卡上向前移动&lt;br /&gt;Ctrl+Shift+Tab 在选项卡上向后移动&lt;br /&gt;Tab 在选项上向前移动&lt;br /&gt;Shift+Tab 在选项上向后移动&lt;br /&gt;Alt+加下划线的字母 执行与该字母匹配的命令（或选择选项）&lt;br /&gt;Enter 对于许多选定命令代替单击鼠标&lt;br /&gt;空格键 如果活动选项是复选框，则选中或清除该复选框&lt;br /&gt;箭头键 如果活动选项是一组选项按钮，则选择某个按钮&lt;br /&gt;F1 显示帮助&lt;br /&gt;F4 显示活动列表中的项目&lt;br /&gt;Backspace 如果在“另存为”或“打开”对话框中选中了某个文件夹，则打开上一级文件夹&lt;/p&gt;&lt;h2 id="h-4" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0.5em; margin-right: 0px; margin-bottom: 0.2em; margin-left: 0px; font-size: 1em; color: black; line-height: 1.7em; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(136, 136, 136); "&gt;4. Windows 徽标键相关的快捷键 &lt;a href="http://xbeta.info/windows-7-shortcuts.htm#index" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; color: black; text-decoration: none; "&gt;↖&lt;/a&gt;&lt;/h2&gt;&lt;p style="padding-top: 5px; padding-right: 0px; padding-bottom: 5px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;Windows徽标键就是显示为Windows旗帜，或标有文字Win或Windows的按键，以下简称Win键。XP时代有4个经典的 Win 键组合：R/E/F/L。到了 Win7，花样更多了。&lt;br /&gt;Win：打开或关闭开始菜单。&lt;br /&gt;Win + Pause：显示系统属性对话框。&lt;br /&gt;Win + D：显示桌面。&lt;br /&gt;Win + M：最小化所有窗口。&lt;br /&gt;Win + SHIFT + M：还原最小化窗口到桌面上。&lt;br /&gt;Win + E：打开我的电脑&lt;br /&gt;Win + F：搜索文件或文件夹。&lt;br /&gt;Ctrl + Win + F：搜索计算机（如果您在网络上） 。&lt;br /&gt;Win + L：锁定您的计算机或切换用户。&lt;br /&gt;Win + R：打开运行对话框。&lt;br /&gt;Win + T：切换任务栏上的程序（感觉是和alt+ESC 一样 ）&lt;br /&gt;Win + 数字：让位于任务栏指定位置（按下的数字作为序号）的程序，新开一个实例。（感觉这个比较新颖，貌似快速启动。） Shift + Windows logo key +number：Start a new instance of the program pinned to the taskbar in the position indicated by the number.&lt;br /&gt;Ctrl + Win + 数字：让位于任务栏指定位置（按下的数字作为序号）的程序，切换到上一次的活动窗口。 Ctrl+Windows logo key +number：Switch to the last active window of the program pinned to the taskbar in the position indicated by the number.&lt;br /&gt;ALT + Win + 数字：让位于任务栏指定位置（按下的数字作为序号）的程序，显示跳转清单。 Alt+Windows logo key +number： Open the Jump List for the program pinned to the taskbar in the position indicated by the number.&lt;br /&gt;Win + TAB：循环切换任务栏上的程序并使用的Aero三维效果。&lt;br /&gt;Ctrl + Win + TAB：使用方向键来循环循环切换任务栏上的程序，并使用的Aero三维效果。&lt;br /&gt;按Ctrl + Win + B：切换到在通知区域中显示信息的程序&lt;br /&gt;Win + 空格：预览桌面。&lt;br /&gt;Win + ↑：最大化窗口。&lt;br /&gt;Win + ↓：最小化窗口。&lt;br /&gt;Win + ←：最大化到窗口左侧的屏幕上。&lt;br /&gt;Win + →：最大化窗口到右侧的屏幕上。&lt;br /&gt;Win + Home：最小化所有窗口，除了当前激活窗口。&lt;br /&gt;Win+ SHIFT + ↑：拉伸窗口的到屏幕的顶部和底部。&lt;br /&gt;Win+ SHIFT + →/←：移动一个窗口，从一个显示器到另一个。&lt;br /&gt;Win + P：选择一个演示文稿显示模式。&lt;br /&gt;Win + G：循环切换侧边栏的小工具。&lt;br /&gt;Win + U：打开轻松访问中心。&lt;br /&gt;Win + x：打开Windows移动中心。&lt;/p&gt;&lt;h2 id="h-5" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0.5em; margin-right: 0px; margin-bottom: 0.2em; margin-left: 0px; font-size: 1em; color: black; line-height: 1.7em; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(136, 136, 136); "&gt;5. Windows Explorer相关快捷键 &lt;a href="http://xbeta.info/windows-7-shortcuts.htm#index" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; color: black; text-decoration: none; "&gt;↖&lt;/a&gt;&lt;/h2&gt;&lt;p style="padding-top: 5px; padding-right: 0px; padding-bottom: 5px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;Ctrl+N  打开新窗口&lt;br /&gt;Ctrl+Shift+N  新建文件夹&lt;br /&gt;End  显示活动窗口的底部&lt;br /&gt;Home  显示活动窗口的顶部&lt;br /&gt;F11  最大化或最小化活动窗口&lt;br /&gt;Num Lock+小键盘星号(*) 显示选中文件夹的所有子文件夹&lt;br /&gt;Num Lock+小键盘加号(+) 显示选中文件夹的内容&lt;br /&gt;Num Lock+小键盘减号(-) 折叠选中文件夹&lt;br /&gt;左方向键  折叠当前展开的选中文件夹或选中上层文件夹&lt;br /&gt;Alt+Enter  打开选中项目的属性对话框&lt;br /&gt;Alt+P  显示预览窗格&lt;br /&gt;Alt+左方向键  切换到前一次打开的文件夹&lt;br /&gt;右方向键  显示（展开）当前选中项目或选中第一个子文件夹&lt;br /&gt;Alt+右方向键  切换到下一次后打开的文件夹&lt;br /&gt;Alt+上方向键  打开上层文件夹&lt;br /&gt;Ctrl+鼠标滚轮  改变文件和文件夹图标的大小和外观&lt;br /&gt;Alt+D  选中地址栏（定位到地址栏）&lt;br /&gt;Ctrl+E  选中搜索框（定位到搜索框）&lt;/p&gt;&lt;h2 id="h-6" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0.5em; margin-right: 0px; margin-bottom: 0.2em; margin-left: 0px; font-size: 1em; color: black; line-height: 1.7em; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(136, 136, 136); "&gt;6. 放大镜键盘快捷方式 &lt;a href="http://xbeta.info/windows-7-shortcuts.htm#index" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; color: black; text-decoration: none; "&gt;↖&lt;/a&gt;&lt;/h2&gt;&lt;p style="padding-top: 5px; padding-right: 0px; padding-bottom: 5px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;下表包含了使用放大镜的键盘快捷方式。&lt;br /&gt;按键 功能&lt;br /&gt;Windows 徽标键 + 加号或减号 放大或缩小&lt;br /&gt;Ctrl+Alt+空格键 显示鼠标指针&lt;br /&gt;Ctrl+Alt+F 切换到全屏模式&lt;br /&gt;Ctrl+Alt+L 切换到镜头模式&lt;br /&gt;Ctrl+Alt+D 切换到停靠模式&lt;br /&gt;Ctrl+Alt+I 反色&lt;br /&gt;Ctrl+Alt+箭头键 按箭头键的方向平移&lt;br /&gt;Ctrl+Alt+R 调整镜头的大小&lt;br /&gt;Windows 徽标键 + Esc 退出放大镜&lt;/p&gt;&lt;h2 id="h-7" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0.5em; margin-right: 0px; margin-bottom: 0.2em; margin-left: 0px; font-size: 1em; color: black; line-height: 1.7em; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(136, 136, 136); "&gt;7. 远程桌面相关快捷键 &lt;a href="http://xbeta.info/windows-7-shortcuts.htm#index" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; color: black; text-decoration: none; "&gt;↖&lt;/a&gt;&lt;/h2&gt;&lt;p style="padding-top: 5px; padding-right: 0px; padding-bottom: 5px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;Alt+Page Up  按从左向右顺序切换程序&lt;br /&gt;Alt+Page Down  按从右向左切换程序&lt;br /&gt;Alt+Insert  按程序打开先后顺序循环切换程序&lt;br /&gt;Alt+Home  显示“开始”菜单&lt;br /&gt;Ctrl+Alt+Break  在窗口模式和全屏之间切换&lt;br /&gt;Ctrl+Alt+End  显示Windows安全性对话框&lt;br /&gt;Alt+Delete  显示当前窗口的系统菜单&lt;br /&gt;Ctrl+Alt+-（小键盘减号） 当前活动窗口截图&lt;br /&gt;Ctrl+Alt++（小键盘加号） 全屏截图&lt;br /&gt;Ctrl+Alt+向右键 从远程桌面控件“跳转”到主机程序中的控件（如按钮或文本框）。将远程桌面控件嵌入到其他（主机）程序后，此功能非常有用。&lt;br /&gt;Ctrl+Alt+向左键 从远程桌面控件“跳转”到主机程序中的控件（如按钮或文本框）。将远程桌面控件嵌入到其他（主机）程序后，此功能非常有用。&lt;/p&gt;&lt;h2 id="h-8" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0.5em; margin-right: 0px; margin-bottom: 0.2em; margin-left: 0px; font-size: 1em; color: black; line-height: 1.7em; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(136, 136, 136); "&gt;8. 画图键盘快捷方式 &lt;a href="http://xbeta.info/windows-7-shortcuts.htm#index" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; color: black; text-decoration: none; "&gt;↖&lt;/a&gt;&lt;/h2&gt;&lt;p style="padding-top: 5px; padding-right: 0px; padding-bottom: 5px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;下表包含了使用画图的键盘快捷方式。&lt;br /&gt;按键 功能&lt;br /&gt;Ctrl+N 创建新的图片&lt;br /&gt;Ctrl+O 打开现有图片&lt;br /&gt;Ctrl+S 将更改保存到图片&lt;br /&gt;F12 将此图片另存为新文件&lt;br /&gt;Ctrl+P 打印图片&lt;br /&gt;Alt+F4 关闭图片及其画图窗口&lt;br /&gt;Ctrl+Z 撤消更改&lt;br /&gt;Ctrl+Y 恢复更改&lt;br /&gt;Ctrl+A 选择整个图片&lt;br /&gt;Ctrl+X 剪切选择内容&lt;br /&gt;Ctrl+C 将选择内容复制到剪贴板&lt;br /&gt;Ctrl+V 从剪贴板粘贴选择内容&lt;br /&gt;向右键 将选择内容或活动图形向右移动一个像素&lt;br /&gt;向左键 将选择内容或活动图形向左移动一个像素&lt;br /&gt;向下键 将选择内容或活动图形向下移动一个像素&lt;br /&gt;向上键 将选择内容或活动图形向上移动一个像素&lt;br /&gt;Esc 取消某个选择&lt;br /&gt;Delete 删除某个选择&lt;br /&gt;Ctrl+B 粗体选择文本&lt;br /&gt;Ctrl++ 将画笔、直线或形状轮廓的宽度增加一个像素&lt;br /&gt;Ctrl+- 将画笔、直线或形状轮廓的宽度减少一个像素&lt;br /&gt;Ctrl+I 将所选文本改为斜体&lt;br /&gt;Ctrl+U 为所选文本添加下划线&lt;br /&gt;Ctrl+E 打开“属性”对话框&lt;br /&gt;Ctrl+W 打开“调整大小和扭曲”对话框&lt;br /&gt;Ctrl+Page Up 放大&lt;br /&gt;Ctrl+Page Down 缩小&lt;br /&gt;F11 以全屏模式查看图片&lt;br /&gt;Ctrl+R 显示或隐藏标尺&lt;br /&gt;Ctrl+G 显示或隐藏网格线&lt;br /&gt;F10 或 Alt 显示快捷键提示&lt;br /&gt;Shift+F10 显示当前快捷菜单&lt;br /&gt;F1 打开“画图”帮助&lt;/p&gt;&lt;h2 id="h-9" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0.5em; margin-right: 0px; margin-bottom: 0.2em; margin-left: 0px; font-size: 1em; color: black; line-height: 1.7em; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(136, 136, 136); "&gt;9. 写字板的键盘快捷方式 &lt;a href="http://xbeta.info/windows-7-shortcuts.htm#index" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; color: black; text-decoration: none; "&gt;↖&lt;/a&gt;&lt;/h2&gt;&lt;p style="padding-top: 5px; padding-right: 0px; padding-bottom: 5px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;按键 功能&lt;br /&gt;Ctrl+N 新建一个文档&lt;br /&gt;Ctrl+O 打开一个现有文档&lt;br /&gt;Ctrl+S 将更改保存到文档&lt;br /&gt;F12 将此文档另存为新文件&lt;br /&gt;Ctrl+P 打印文档&lt;br /&gt;Alt+F4 关闭“写字板”&lt;br /&gt;Ctrl+Z 撤消更改&lt;br /&gt;Ctrl+Y 恢复更改&lt;br /&gt;Ctrl+A 选择整个文档&lt;br /&gt;Ctrl+X 剪切选择内容&lt;br /&gt;Ctrl+C 将选择内容复制到剪贴板&lt;br /&gt;Ctrl+V 从剪贴板粘贴选择内容&lt;br /&gt;Ctrl+B 将所选文本改为粗体&lt;br /&gt;Ctrl+I 将所选文本改为斜体&lt;br /&gt;Ctrl+U 为所选文本添加下划线&lt;br /&gt;Ctrl+= 使选择的文本成为下标&lt;br /&gt;Ctrl+Shift+= 使选择的文本成为上标&lt;br /&gt;Ctrl+L 向左对齐文本&lt;br /&gt;Ctrl+E 向中心对齐文本&lt;br /&gt;Ctrl+R 向右对齐文本&lt;br /&gt;Ctrl+J 对齐文本&lt;br /&gt;Ctrl+1 设置单倍行距&lt;br /&gt;Ctrl+2 设置双倍行距&lt;br /&gt;Ctrl+5 将行距设置为 1.5&lt;br /&gt;Ctrl+Shift+&gt; 增加字体大小&lt;br /&gt;Ctrl+Shift+&lt; 减小字体大小&lt;br /&gt;Ctrl+Shift+A 将字符更改为全部使用大写字母&lt;br /&gt;Ctrl+Shift+L 更改项目符号样式&lt;br /&gt;Ctrl+D 插入 Microsoft 画图图片&lt;br /&gt;Ctrl+F 在文档中查找文本&lt;br /&gt;F3 在“查找”对话框中查找文本的下一个实例&lt;br /&gt;Ctrl+H 在文档中替换文本&lt;br /&gt;Ctrl+向左键 将光标向左移动一个字&lt;br /&gt;Ctrl+向右键 将光标向右移动一个字&lt;br /&gt;Ctrl+向上键 将光标移动到上一行&lt;br /&gt;Ctrl+向下键 将光标移动到下一行&lt;br /&gt;Ctrl+Home 移动到文档的开头&lt;br /&gt;Ctrl+End 移动到文档的结尾&lt;br /&gt;Ctrl+Page Up 向上移动一个页面&lt;br /&gt;Ctrl+Page Down 向下移动一个页面&lt;br /&gt;Ctrl+Delete 删除下一个字&lt;br /&gt;F10 显示快捷键提示&lt;br /&gt;Shift+F10 显示当前快捷菜单&lt;br /&gt;F1 打开“写字板”帮助&lt;/p&gt;&lt;h2 id="h-10" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0.5em; margin-right: 0px; margin-bottom: 0.2em; margin-left: 0px; font-size: 1em; color: black; line-height: 1.7em; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(136, 136, 136); "&gt;10. 计算器的键盘快捷方式 &lt;a href="http://xbeta.info/windows-7-shortcuts.htm#index" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; color: black; text-decoration: none; "&gt;↖&lt;/a&gt;&lt;/h2&gt;&lt;p style="padding-top: 5px; padding-right: 0px; padding-bottom: 5px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;按键 功能&lt;br /&gt;Atl+1 切换到标准模式&lt;br /&gt;Alt+2 切换到科学型模式&lt;br /&gt;Alt+3 切换到程序员模式&lt;br /&gt;Alt+4 切换到统计信息模式&lt;br /&gt;Ctrl+E 打开日期计算&lt;br /&gt;Ctrl+H 将计算历史记录打开或关闭&lt;br /&gt;Ctrl+U 打开单位转换&lt;br /&gt;Alt+C 计算或解决日期计算和工作表&lt;br /&gt;F1 打开“计算器”帮助&lt;br /&gt;Ctrl+Q 按下 M- 按钮&lt;br /&gt;Ctrl+P 按下 M+ 按钮&lt;br /&gt;Ctrl+M 按下 MS 按钮&lt;br /&gt;Ctrl+R 按下 MR 按钮&lt;br /&gt;Ctrl+L 按下 MC 按钮&lt;br /&gt;% 按下 % 按钮&lt;br /&gt;F9 按下 +/– 按钮&lt;br /&gt;/ 按下 / 按钮&lt;br /&gt;* 按下 * 按钮&lt;br /&gt;+ 按下 + 按钮&lt;br /&gt;- 按下 – 按钮&lt;br /&gt;R 按下 1/× 按钮&lt;br /&gt;@ 按下平方根按钮&lt;br /&gt;0-9 按下数字按钮 (0-9)&lt;br /&gt;= 按下 = 按钮&lt;br /&gt;. 按下 .（小数点）按钮&lt;br /&gt;Backspace 按下 Backspace 按钮&lt;br /&gt;Esc 按下 C 按钮&lt;br /&gt;Del 按下 CE 按钮&lt;br /&gt;Ctrl+Shift+D 清除计算历史记录&lt;br /&gt;F2 编辑计算历史记录&lt;br /&gt;向上箭头键 在计算历史记录中向上导航&lt;br /&gt;向下箭头键 在计算历史记录中向下导航&lt;br /&gt;Esc 取消编辑计算历史记录&lt;br /&gt;Enter 编辑后重新计算计算历史记录&lt;br /&gt;F3 在科学型模式下选择“角度”&lt;br /&gt;F4 在科学型模式下选择“弧度”&lt;br /&gt;F5 在科学型模式下选择“梯度”&lt;br /&gt;I 在科学型模式下按 Inv 按钮&lt;br /&gt;D 在科学型模式下按 Mod 按钮&lt;br /&gt;Ctrl+S 在科学型模式下按 sinh 按钮&lt;br /&gt;Ctrl+O 在科学型模式下按 cosh 按钮&lt;br /&gt;Ctrl+T 在科学型模式下按 tanh 按钮&lt;br /&gt;( 在科学型模式下按 ( 按钮&lt;br /&gt;) 在科学型模式下按 ) 按钮&lt;br /&gt;N 在科学型模式下按 ln 按钮&lt;br /&gt;; 在科学型模式下按 Int 按钮&lt;br /&gt;S 在科学型模式下按 sin 按钮&lt;br /&gt;O 在科学型模式下按 cos 按钮&lt;br /&gt;T 在科学型模式下按 tan 按钮&lt;br /&gt;M 在科学型模式下按 dms 按钮&lt;br /&gt;P 在科学型模式下按 pi 按钮&lt;br /&gt;V 在科学型模式下按 F-E 按钮&lt;br /&gt;X 在科学型模式下按 Exp 按钮&lt;br /&gt;Q 在科学型模式下按 x^2 按钮&lt;br /&gt;Y 在科学型模式下按 x^y 按钮&lt;br /&gt;# 在科学型模式下按 x^3 按钮&lt;br /&gt;L 在科学型模式下按 log 按钮&lt;br /&gt;! 在科学型模式下按 n! 按钮&lt;br /&gt;Ctrl+Y 在科学型模式下按 y√x 按钮&lt;br /&gt;Ctrl+B 在科学型模式下按 3√x 按钮&lt;br /&gt;Ctrl+G 在科学型模式下按 10x 按钮&lt;br /&gt;F5 在程序员模式下选择 Hex&lt;br /&gt;F6 在程序员模式下选择 Dec&lt;br /&gt;F7 在程序员模式下选择 Oct&lt;br /&gt;F8 在程序员模式下选择 Bin&lt;br /&gt;F12 在程序员模式下选择 Qword&lt;br /&gt;F2 在程序员模式下选择 Dword&lt;br /&gt;F3 在程序员模式下选择 Word&lt;br /&gt;F4 在程序员模式下选择 Byte&lt;br /&gt;K 在程序员模式下按 RoR 按钮&lt;br /&gt;J 在程序员模式下按 RoL 按钮&lt;br /&gt;% 在程序员模式下按 Mod 按钮&lt;br /&gt;( 在程序员模式下按 ( 按钮&lt;br /&gt;) 在程序员模式下按 ) 按钮&lt;br /&gt;| 在程序员模式下按 Or 按钮&lt;br /&gt;^ 在程序员模式下按 Xor 按钮&lt;br /&gt;~ 在程序员模式下按 Not 按钮&lt;br /&gt;&amp;amp; 在程序员模式下按 And 按钮&lt;br /&gt;A-F 在程序员模式下按 A-F 按钮&lt;br /&gt;空格键 在程序员模式下切换位值&lt;br /&gt;A 在统计信息模式下按 Average 按钮&lt;br /&gt;Ctrl+A 在统计信息模式下按 Average Sq 按钮&lt;br /&gt;S 在统计信息模式下按 Sum 按钮&lt;br /&gt;Ctrl+S 在统计信息模式下按 Sum Sq 按钮&lt;br /&gt;T 在统计信息模式下按 S.D. 按钮&lt;br /&gt;Ctrl+T 在统计信息模式下按 Inv S.D. 按钮&lt;br /&gt;D 在统计信息模式下按 CAD 按钮&lt;/p&gt;&lt;h2 id="h-11" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0.5em; margin-right: 0px; margin-bottom: 0.2em; margin-left: 0px; font-size: 1em; color: black; line-height: 1.7em; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(136, 136, 136); "&gt;11. Windows 日记本键盘快捷方式 &lt;a href="http://xbeta.info/windows-7-shortcuts.htm#index" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; color: black; text-decoration: none; "&gt;↖&lt;/a&gt;&lt;/h2&gt;&lt;p style="padding-top: 5px; padding-right: 0px; padding-bottom: 5px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;下表包含了使用 Windows 日记的键盘快捷方式。&lt;br /&gt;按键 功能&lt;br /&gt;Ctrl+N 开始新的便笺&lt;br /&gt;Ctrl+O 打开最近使用的便笺&lt;br /&gt;Ctrl+S 将更改保存到便笺&lt;br /&gt;Ctrl+Shift+V 将便笺移动到特定的文件夹&lt;br /&gt;Ctrl+P 打印便笺&lt;br /&gt;Alt+F4 关闭便笺及其日记本窗口&lt;br /&gt;Ctrl+Z 撤消更改&lt;br /&gt;Ctrl+Y 恢复更改&lt;br /&gt;Ctrl+A 选择页面上的所有项目&lt;br /&gt;Ctrl+X 剪切选择内容&lt;br /&gt;Ctrl+C 将选择内容复制到剪贴板&lt;br /&gt;Ctrl+V 从剪贴板粘贴选择内容&lt;br /&gt;Esc 取消某个选择&lt;br /&gt;Delete 删除某个选择&lt;br /&gt;Ctrl+F 开始基本查找&lt;br /&gt;Ctrl+G 转到页面&lt;br /&gt;F5 刷新查找结果&lt;br /&gt;F5 刷新便笺列表&lt;br /&gt;F6 在便笺列表和便笺之间切换&lt;br /&gt;Ctrl+Shift+C 显示便笺列表中列标题的快捷菜单&lt;br /&gt;F11 以全屏模式查看便笺&lt;br /&gt;F1 打开“日记本”帮助&lt;/p&gt;&lt;h2 id="h-12" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0.5em; margin-right: 0px; margin-bottom: 0.2em; margin-left: 0px; font-size: 1em; color: black; line-height: 1.7em; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(136, 136, 136); "&gt;12. Windows 帮助查看器键盘快捷方式 &lt;a href="http://xbeta.info/windows-7-shortcuts.htm#index" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; color: black; text-decoration: none; "&gt;↖&lt;/a&gt;&lt;/h2&gt;&lt;p style="padding-top: 5px; padding-right: 0px; padding-bottom: 5px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;下表包含了帮助查看器使用的键盘快捷方式。&lt;br /&gt;按键 功能&lt;br /&gt;Alt+C 显示目录&lt;br /&gt;Alt+N 显示“连接设置”菜单&lt;br /&gt;F10 显示“选项”菜单&lt;br /&gt;Alt+向左键 返回先前查看过的主题&lt;br /&gt;Alt+向右键 向前移动到下一个（先前已查看过的）主题&lt;br /&gt;Alt+A 显示客户支持页面&lt;br /&gt;Alt+Home 显示帮助和支持主页&lt;br /&gt;Home 移动到主题的开头&lt;br /&gt;End 移动到主题的末尾&lt;br /&gt;Ctrl+F 搜索当前主题&lt;br /&gt;Ctrl+P 打印主题&lt;br /&gt;F3 将光标移动到搜索框&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5931631434944515423-2989416018284637093?l=hxlich.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hxlich.blogspot.com/feeds/2989416018284637093/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5931631434944515423&amp;postID=2989416018284637093' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/2989416018284637093'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/2989416018284637093'/><link rel='alternate' type='text/html' href='http://hxlich.blogspot.com/2009/09/windows-7.html' title='来自官方的 windows 7 快捷键大全'/><author><name>龙加</name><uri>http://www.blogger.com/profile/02424615920585053635</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_fbhMkQzafCA/SLobyz_37BI/AAAAAAAAACo/mrSZALNoSzo/S220/L605781519172GAZ.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5931631434944515423.post-6286097606846535338</id><published>2009-08-12T11:46:00.001-07:00</published><updated>2009-08-12T11:46:33.677-07:00</updated><title type='text'>用英语描述疾病</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: Tahoma, Verdana, sans-serif, simsun; font-size: 14px; color: rgb(51, 51, 51); line-height: 21px; "&gt;&lt;p align="center" style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(0, 0, 0); "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: Tahoma; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: medium; color: rgb(255, 0, 0); background-color: rgb(255, 255, 255); "&gt;(1) 一般病情:&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(255, 0, 0); font-family: Tahoma; "&gt;He feels headache, nausea and vomiting. (他觉得头痛、恶心和想吐。) &lt;br /&gt;He is under the weather. (他不舒服，生病了。) &lt;br /&gt;He began to feel unusually tired. (他感到反常的疲倦。) &lt;br /&gt;He feels light-headed. (他觉得头晕。) &lt;br /&gt;She has been shut-in for a few days. (她生病在家几天了。) &lt;br /&gt;Her head is pounding. (她头痛。) &lt;br /&gt;His symptoms include loss of appetite, weight loss, excessive fatigue, fever and chills. (他的症状包括没有食欲、体重减轻、非常疲倦、发烧和发冷。) &lt;br /&gt;He feels exhausted or fatigued most of the time. (他大部份时间都觉得非常疲倦。) &lt;br /&gt;He has been lacking in energy for some time. (他感到虚弱有段时间了。)  &lt;br /&gt;He feels drowsy, dizzy and nauseated. (他觉得昏昏欲睡，头晕目眩和想吐。) &lt;br /&gt;He feels as though everything around him is spinning. (他感到周围的东西都在打转。) &lt;br /&gt;He has noticed some loss of hearing. (他发觉听力差些。) &lt;br /&gt;She has some pains and itching around her eyes. (她眼睛四周又痛又痒。)&lt;/span&gt;&lt;/p&gt;&lt;p align="center" style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p align="center" style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p align="center" style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;br /&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: medium; color: rgb(255, 153, 0); font-family: Tahoma; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;(2) 伤风感冒：&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(255, 153, 0); font-family: Tahoma; "&gt;He has been coughing up rusty or greenish-yellow phlegm. (他咳嗽带有绿黄色的痰。) &lt;br /&gt;His eyes feel itchy and he has been sneezing. (他眼睛发痒，而且一直在打喷嚏。)&lt;br /&gt;He has a fever, aching muscles and hacking cough. (hacking = constant) (他有发烧，筋骨酸痛和常常咳嗽。) &lt;br /&gt;He coughed with sputum and feeling of malaise. (malaise = debility) (他咳嗽有浓痰，而且觉得很虚弱。)&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(255, 153, 0); font-family: Tahoma; "&gt;He gets a cold with a deep hacking cough. (他伤风咳嗽。) &lt;br /&gt;He has a headache, aching bones and joints. (他头痛，骨头、关节也痛。) &lt;br /&gt;He has a persistent cough. (他不停地在咳。) &lt;br /&gt;He has bouts of uncontrollable coughing. (他一阵阵的咳嗽，难以控制。)&lt;br /&gt;He has hoarse and has lost his voice sometimes. (他声音嘶哑，有时失声。) &lt;br /&gt;He has a sore throat and a stuffy nose. (他嗓子疼痛而且鼻子不通。) &lt;br /&gt;His breathing is harsh and wheezy. (他呼吸时，有气喘似的呼哧呼哧作响。)&lt;br /&gt;He has a stabbing pain that comes on suddenly in one or both temples. (有时突然间太阳穴刺痛。) &lt;br /&gt;He has a runny nose, sneezing or a scratchy throat. (他流鼻水，打喷嚏和喉咙沙哑。)&lt;/span&gt;&lt;/p&gt;&lt;p align="center" style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p align="center" style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p align="center" style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;br /&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: medium; color: rgb(153, 204, 0); font-family: Tahoma; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;(3) 女性疾病：&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(153, 204, 0); font-family: Tahoma; "&gt;She has noticed one lump in her breast. (她发觉乳房有个肿块。)&lt;br /&gt;There is a hard, swollen lump on her right breast. (她右乳房有肿块。) &lt;br /&gt;Her left breast is painful and swollen. (她左乳房疼痛且肿大。) &lt;br /&gt;She has heavy bleeding with her periods. (她月经来的很多。) &lt;br /&gt;Her vaginal discharge is white or greenish-yellow and unpleasant smelling. (她阴道分泌物带白色或绿黄色，而且气味不好。) &lt;br /&gt;She has noticed occasional spotting of blood between periods. (在月经来的前后，她有时也发觉有滴滴达达的流血。) &lt;br /&gt;She has some bleeding after intercourse. (性交后有出血。) &lt;br /&gt;She feels some vaginal itching. (她感到阴部发痒。) &lt;br /&gt;She has painful periods and abnormal vaginal discharge. (她月经来时疼痛，而且阴道有不正常的分泌物。)&lt;/span&gt;&lt;/p&gt;&lt;p align="center" style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p align="center" style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p align="center" style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;br /&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: Tahoma; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: medium; color: rgb(51, 153, 102); "&gt;(4) 手脚疾病：&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(51, 153, 102); font-family: Tahoma; "&gt;His both hands and feet ache all over. (他两手两脚都很酸痛。) &lt;br /&gt;He has pain on the sole of his feet. (他脚底很痛。)&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(51, 153, 102); font-family: Tahoma; "&gt;There is a wart-like lump on the sole of right foot. (我右脚底有个像肉疣般的硬块。)&lt;br /&gt;His ankles look puffy and they pit when he presses them with his finger.  (pit = small dent form；句里的 they 和 them 都是指 ankles)(他的足踝好象肿了，用手按，就有小坑痕。) &lt;br /&gt;The pain in his left foot is accompanied by redness and swelling. (左脚酸痛，并有红肿。) &lt;br /&gt;The joints near his fingernails and knuckles look swollen. (指头和指节旁边的关节，似乎有肿大。) &lt;br /&gt;He has numbness and tingling in his hands and fingers. (他的手和指头感到麻木和刺痛。) &lt;br /&gt;His legs become painful following strenuous exercise. (激烈运动后，他的腿就痛。)&lt;br /&gt;His knee is misshapen or unable to move. (他的膝盖有点畸形，也不能动。)&lt;br /&gt;There are some swellings in his armpit. (他的腋窝肿大。) &lt;br /&gt;He is troubled with painful muscles and joints. (他的筋骨和关节都痛。) &lt;br /&gt;She is troubled by the pains in the back and shoulders. (她的后背和肩膀都痛。) &lt;br /&gt;His knee has been bothering him for some time. (他的膝盖不舒服，已有一段时间了。)&lt;/span&gt;&lt;/p&gt;&lt;p align="center" style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p align="center" style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p align="center" style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;br /&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: medium; color: rgb(51, 204, 204); font-family: Tahoma; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;(5) 睡眠不好：&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(51, 204, 204); font-family: Tahoma; "&gt;He is sleeping poorly.（他睡不好）&lt;br /&gt;He has difficulty in sleeping, inability to concentrate.（他不易入睡，也难集中精神。） &lt;br /&gt;It is usually hard for her to fall asleep when she goes to bed at night.（她晚上就寝，很难入睡。）&lt;br /&gt;He wakes during the night or early morning and finds it difficult to fall asleep again.（他晚间或清早醒来后，再也不能入睡。） &lt;br /&gt;He has nightmares occasionally.（他有时做噩梦。） &lt;/span&gt;&lt;/p&gt;&lt;p align="center" style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p align="center" style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p align="center" style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;br /&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: medium; color: rgb(51, 102, 255); font-family: Tahoma; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;(6) 男性疾病：&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(51, 102, 255); font-family: Tahoma; "&gt;He urinates more frequently than usual.（他小便比平时多。） &lt;br /&gt;He has difficulty controlling his bladder.（他很难控制小便。）(bladder：膀胱) &lt;br /&gt;There are some lumps on his testicles. （他的睪丸有些硬块。）&lt;br /&gt;He has had burning or pain when he urinates.（他小便时感到发烫和疼痛。） &lt;br /&gt;He is passing less urine than usual.（他小便比平时少。）&lt;br /&gt;He has had painless swelling in his scrotum.（他的阴囊有不痛的肿大。） &lt;br /&gt;He feels lack of interest in sex.（他自觉对性的兴趣大减。） &lt;br /&gt;He has difficulty starting his urine flow.（他小便不畅通。）&lt;br /&gt;His urine stream is very weak and slow.（他小便流动得很慢很弱。）&lt;br /&gt;He dribbles a little urine after he has finished urinating.（他小便后，还会有少量零星地滴下。）&lt;br /&gt;He has had some discharge from his penis.（他的阴茎排出一些流脓。） &lt;br /&gt;His urine is cloudy and it smells strong.（他的小便混浊，而且气味不好。） &lt;br /&gt;He has a dull heavy ache in the crotch.（他的胯部感到隐痛。） &lt;br /&gt;He has a small leakage of urine when he coughs or sneezes.（他咳嗽或打喷嚏时，会有点泄尿。） &lt;br /&gt;He has trouble urinating.（他小便有困难。）&lt;/span&gt;&lt;/p&gt;&lt;p align="center" style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p align="center" style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p align="center" style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;br /&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: medium; color: rgb(128, 0, 128); font-family: Tahoma; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;(7) 呼吸方面：&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: Tahoma; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(128, 0, 128); "&gt;His breathing has become increasingly difficult.（他呼吸越来越困难。）&lt;br /&gt;He has to breathe through his mouth.（他要用口呼吸。）&lt;br /&gt;He is short of breath, even when he has not been exercising, he is breathless.（他喘气；即使不运动，他也是上气不接下气。）&lt;br /&gt;His cough is more like wheezing.（他的咳嗽有呼哧呼哧的响声。） &lt;br /&gt;His cough is dry, producing no phlegm.（他是干咳，没有痰。） &lt;br /&gt;He has coughed up blood.（他咳嗽有血。） &lt;br /&gt;His nose stuffed up when he had a cold.（他感冒时鼻子就不通。） &lt;br /&gt;He coughs up a lot of phlegm (thick spit) on most days.（他多半时间咳出浓浓的痰。）&lt;br /&gt;He has a feeling of tightness in the chest or a feeling that he is suffocating.（他胸部觉得闷闷的，好象透不过气来。）&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p align="center" style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p align="center" style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p align="center" style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;br /&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: medium; color: rgb(150, 150, 150); font-family: Tahoma; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;(8)口腔毛病：&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(150, 150, 150); font-family: Tahoma; "&gt;He has pain in his teeth or jaw. (他的牙齿和下巴疼痛。)&lt;br /&gt;He has some problems with his teeth. (他牙齿有问题。) &lt;br /&gt;The tooth hurts only when he bites down on it. (他咬东西时，牙齿就痛。) &lt;br /&gt;His gums are red and swollen. (他的牙床红肿。)&lt;br /&gt;His tongue is red and sore all over. (他的舌头到处红和痛。)&lt;br /&gt;His breath smells bad and he has a foul taste in his mouth. (他口里有怪味。) &lt;br /&gt;His gums do bleed. (他牙床有出血。) &lt;br /&gt;He has some sore swellings on his gum or jaw. (他的牙床和下巴肿痛。) &lt;br /&gt;He has sore places on or around the lip. (他的嘴唇和周围都很痛。) &lt;br /&gt;There are cracks at the corners of his mouth. (他的嘴巴角落破了。) &lt;br /&gt;There are some discolored areas inside on his tongue. (他舌头里边有些地方颜色怪怪的。)&lt;/span&gt;&lt;/p&gt;&lt;p align="center" style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p align="center" style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p align="center" style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;br /&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: medium; color: rgb(255, 0, 255); font-family: Tahoma; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;(9) 肠胃毛病：&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(255, 0, 255); font-family: Tahoma; "&gt;He has a bloated, uncomfortable feeling after meal. (他饭后肚子觉得胀胀的，很不舒服。)&lt;br /&gt;He has bouts of abdominal pain. (他有一阵阵的肚痛。) &lt;br /&gt;He feels bloated in his abdominal area. (他感到肚子胀胀的。) (注：胀胀的，像「puff up」，但不是真正的肿「swell up」。) &lt;br /&gt;The pain is mainly in the lower (upper) right part of the abdomen. (痛是在肚子下半部。) &lt;br /&gt;He has nausea and vomiting. (他有恶心和呕吐。) &lt;br /&gt;It is difficult or painful for him to swallow. (他吞下食物时会痛。) &lt;br /&gt;He has passed more gas than usual. (他放…比平常多。)&lt;br /&gt;He has been constipated for a few days. (他便秘了好几天。)&lt;br /&gt;He suffers pains when he moves his bowels. (他大便时很痛。) &lt;br /&gt;He has some bleeding from his rectum. (他的肛门出血。) &lt;br /&gt;He has noticed some blood in his bowel movements. (他发觉大便时有些血。) &lt;br /&gt;His bowel movements are pale, greasy and foul smelling. (他大便呈灰白色，含油脂的恶臭。) &lt;br /&gt;His bowel movements are grey (or black) in color. (他的大便呈灰白色。) &lt;br /&gt;He has trouble with diarrhea. (他拉肚子。)&lt;/span&gt;&lt;/p&gt;&lt;p align="center" style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p align="center" style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p align="center" style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;br /&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: Tahoma; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(0, 0, 0); "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: medium; "&gt;(10) 血压&amp;amp;感官&lt;/span&gt;&lt;/strong&gt;：&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: Tahoma; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(0, 0, 0); "&gt;His blood pressure is really up. (他的血压很高。) &lt;br /&gt;High blood pressure is creeping up on him.&lt;br /&gt;He has noticed frequent urination, increased thirst and unexpected tireness. (他发觉常常小便，非常口渴和更加疲倦。) &lt;br /&gt;It is a chest pain that gets worse when he bends over or lies down. (他弯腰或躺下时，胸部更痛。) &lt;br /&gt;He has noticed excessive sweating and unexplained tireness. (他体会到过度的出汗和难以解释的疲倦。) &lt;br /&gt;He has a sharp pain in one area of his spine. (他的脊椎某部位刺痛。) &lt;br /&gt;He has pain in other joints including hip, knee and ankle. (其它关节疼痛包括臀部、膝盖和脚踝。) &lt;br /&gt;His eyes seem to be bulging. (他的眼睛觉得有点肿胀。) &lt;br /&gt;He has double vision. (他的视线有双重影子。)&lt;br /&gt;He feels there is a film over his eyes. (他觉得眼里有种薄膜似的东西，挡住视线。)&lt;br /&gt;His vision in the right eye blurred. (他右眼视线模糊不清。) &lt;br /&gt;He has had some earaches lately. (他近来耳朵有点痛。)&lt;br /&gt;He has a repeated buzzing or other noises in his ears. (他耳朵常有嗡嗡的声音。)&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5931631434944515423-6286097606846535338?l=hxlich.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hxlich.blogspot.com/feeds/6286097606846535338/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5931631434944515423&amp;postID=6286097606846535338' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/6286097606846535338'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/6286097606846535338'/><link rel='alternate' type='text/html' href='http://hxlich.blogspot.com/2009/08/blog-post_3762.html' title='用英语描述疾病'/><author><name>龙加</name><uri>http://www.blogger.com/profile/02424615920585053635</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_fbhMkQzafCA/SLobyz_37BI/AAAAAAAAACo/mrSZALNoSzo/S220/L605781519172GAZ.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5931631434944515423.post-914060299403389854</id><published>2009-08-12T04:04:00.000-07:00</published><updated>2009-08-12T04:05:19.276-07:00</updated><title type='text'>如何在校外下载期刊全文</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: Tahoma, Verdana, sans-serif, simsun; font-size: 14px; color: rgb(51, 51, 51); line-height: 21px; "&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: medium; font-family: 黑体; "&gt;如何在校外下载期刊全文--应对大家工作后的资料搜寻（转）&lt;/span&gt; &lt;br /&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(255, 0, 0); "&gt;马上就要工作了，觉得学校里面图书馆资料很多，并且很有用，都可以在中文CNKI数据库，和西文数据库荷兰DOS中全文下载，但是仅仅限于校内IP用户。到了工作单位上，想进入这些数据库查资料就很不容易了。。。并且要收很高昂的费用。。。离开了学校才知道学校里面这么好的电子图书馆的资源当时没有好好利用。&lt;br /&gt;所以在网上找到了在家里和单位都能下载全文的地方。&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;/strong&gt; &lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;/strong&gt; &lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;下面是几年来收集整理的全文下载地址和心得，都是网友的无私奉献和结晶，我把分散的信息总结出来，希望对大家有用，有些地址和进入方式可能过期了，我没有一一核对，希望多多理解和包涵。&lt;/strong&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: large; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;全文期刊：&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;EBSCO/UMI/SDOS三个数据库扫荡一下，这三本都有全文。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: large; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;/strong&gt;&lt;/span&gt; &lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: large; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;硕博论文全文下载&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;http://202.120.13.45/umi/index.htm ,这是英文的博士论文。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: large; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;/strong&gt;&lt;/span&gt; &lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: large; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;中国期刊网是中文学位论文&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;图书馆全文无法下载，需要用户卡&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;图书馆全文下载数据库&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;PQDD&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;www.edu.cnki.net&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;Proquest数据库&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;cnki硕博论文全文 http://lib.hutc.zj.cn/cdmd.html  &lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;学校图书馆的清华中国学术期刊网上没法下载硕博士论文。可以通过中国期刊网在 上海交大图书馆的镜像登陆。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;网址：http://cnki.lib.sjtu.edu.cn&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;账号：syshjd  密码：shjd&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;右边数据库列表中选择第二项：中国优秀博硕士学位论文全文数据库（CDMD）&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;第一项中国期刊全文数据库（CJFD）可以在我们学校的期刊网联接中进入。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;cnki:  syshjd,shjd没有此帐号&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;图书馆提供：cdmd,cdmd过期&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: large; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;/strong&gt;&lt;/span&gt; &lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: large; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;图书馆下载毕业论文全文摘要&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;http://cnki.lib.sjtu.edu.cn/&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;202.120.13.45/umi/index.hlm&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;中国学术期刊全文数据库密码要小写，从东大镜像点上， http://www.nj.cnki.net 用户/密码：&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;NJ0080/njdxts&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: large; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;/strong&gt;&lt;/span&gt; &lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: large; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;中国学位论文全文&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(59, 88, 136); "&gt;http://202.199.155.201:85/&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(59, 88, 136); "&gt;http://www.sh.cnki.net/&lt;/span&gt;帐号和密码都是syzjdx&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: large; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;/strong&gt;&lt;/span&gt; &lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: large; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;全文论文网&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(59, 88, 136); "&gt;http://www.nstl.gov.cn/index.html&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(59, 88, 136); "&gt;http://www.thesis4u.com/index.asp&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: large; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;/strong&gt;&lt;/span&gt; &lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: large; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;John Wiley出版社电子期刊可否下载全文 ？&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;可以，用10.10.2.51，2.52都可以的，或上动态&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(59, 88, 136); "&gt;http://www.interscience.wiley.com&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: large; "&gt; &lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: large; "&gt; 一个可以浏览论文全文的地方&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;1、166.111.34.136断口45576&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;清华的sock5代理 用sockscap代理ie出去，访问下面的网址 http://www.cdmd.cnki.net/&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;然后输入用户名和口令（都是thlib） 这个是中国优秀博士硕士学位论文库 包括理科工科农业文学，政治，经济教育等多方面文章 可以在线浏览，也可以打印（还可以虚拟打印成pdf格式保存到硬盘上）动作要快哦，代理不晓得什么时候失效&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;2. cnki硕博论文全文 http://lib.hutc.zj.cn/cdmd.html&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;3.mit的硕博论文，可浏览全文 http://www.theses.mit.edu 年代约从1940S-至今 为单页图象格式，需一页一页下载，虽然费点时间，不过很清晰，同时论文质量也高，何乐而不为？&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;前一段时间MIT网站被封，最近刚开放！ 据说用flashget可以批量下载这些图片，没有尝试成功&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: large; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;外文全文站点&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;1、Annual Reviewshttp://www.anualreviews.org 该数据库收录各学科的综述性文章按SCI影响因子极高。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;2、BiomedNethttp://www.bmn.com 即BMN 世界上著名医学、生命科学数据库。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;3、Blackwell-synhttp://www.blackwell-synergy.com/&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;该数据库包括Plant J. Plant Molecular Biotechnology等&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;影响因子较高的期刊&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;4、Carctwordhttp://www.catchword.com/ 一个综合性数据库&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;5、EBSCOhttp://search.epnet.com EBSCO公司是专门经营纸本期刊、电子期刊发行和电子文献数据库出版发行业务的集团公 司。其数据库是一个大型综合数据库，其中的学术研究精粹数据库（Academic Search Elit）包括生物科学、工商经济、咨询科技、通讯传播、工程、教育、艺术、医药学等 领域的1,700余种全文期刊，该数据库每天更新。Academic Search Premier 包括3，40 0余种科技期刊。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;6、ECOhttp://www.cnpeak.com.cn/oclcpsp/oclclogin.jsp 即OCLC或First Search也是一个综合性较强的数据库，大部分文章都有全文。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;7、Highwirehttp://highwire.stanford.edu 世界上第二大免费数据库（最大的免费数据库没有生物学、农业方面的文献），该网站 提供部分文献的免费检索，和所用文献的超级链接，免费文献在左边标有FREE.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;8、Idealibraryhttp://www.idealibrary.com 世界著名全文数据库，与Elsvier 等出版社有合作,今年年底将于SCIENCEDIRECT合并&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;9、Ingenta/Uncoverhttp://www.ingenta.com Ingenta.com是Ingenta公司的一个主要产品，是一个全球性学术研究的大型网关。它致 力于学术研究性文章的网上检索和传递，目前收集有25，000种出版物的摘要和4，500种 出版物全文。140个出版商在Ingenta.com上提供了他们的文章全文。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;10、Kluwerhttp://www.kluweronline.com 荷兰Kluwer Academic Publisher是具有国际性声誉的学术出版商，它出版的图书、期刊 一向品质较高，备受专家和学者的信赖和赞誉。Kluwer Online是Kluwer出版的750余种 期刊的网络版，专门基于互联网提供Kluwer电子期刊的查询、阅览服务。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;OVID Kluwerhttp://www.cdrompro.com.br/kluwer 北京大学镜像站点http://kluwer.calis.edu.cn/&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;11、Lexis-nexishttp://www.lexisnexis.com/universe&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;12、Nature Presshttp://www.nature.com&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;13、OVIDhttp://gateway.ovid.com 综合性数据库有medline等&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;14、Oxford Referencehttp://www.oxfordreference.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;15、Oxford Presshttp://www.oup.co牛津大学出版社出版的150多种期刊&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;16、Sciencedirecthttp://www.sciencedirect.com Sciencedirect 是由荷兰Elsevier Science建立的全文检索数据库，包括原来的Ideali brary在内的期刊总计1500多种。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;17、Springer 德国站http://link.springer.de/ 德国著名出版社Springer提供的数据库，包括该出版社出版的430余种期刊的全文。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;18、UMIhttp://global.umi.com/pqdweb 商业数据库&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: large; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: large; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;有关生命科学的出版物－原文丁香园&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;1、美国科学杂志中文版http://www.china.sciencemag.org&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;2、遗传http://www.ycjournal.com&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;3、Cellhttp://www.cell.com/&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;4、Crop Sciencehttp://crop.scijournals.org/&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;5、Developmental Biologyhttp://www.ijdb.ehu.es&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;6、EMBOhttp://emboj.oupjournals.org/&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;7、Genes and Developmenthttp://www.genesdev.org&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;8、JBC（著名生化http://www.jbc.org ）&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;10、Journal of Molecular Biologyhttp://journals.bmn.com/journals/list/lates t?jcode=jmb&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;11、Naturehttp://www.nature.com&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;12、Nucleic Acids Researchhttp://nar.oupjournals.org/&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;13、Plant Cellhttp://www.plantcell&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;14、Plant Physiologyhttp://www.plantphysiol.org&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;15、Science Magazinehttp://www.sciencemag.org/  &lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: large; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;关于外文期刊全文的获得&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;1，一部分外文期刊提供全文服务 www.freemedicaljournals.com&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;2，通过国外代理，一般国外大学的代理可以获得一部分外文期刊的全文&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;3，将刊物的名字＋username+password进行搜索,相关技巧可以在丁香园和生命论坛找到。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;4，在bbs.bioon.com的高级会友区，提供了一些常见的用户名和密码。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;5，有一些期刊需要注册获得密码，但是文章free。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: large; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: large; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;文献检索&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;简单来说，方法是专业医学搜索引擎或者数据库搜索，取定确切的文章名称和刊物详细资料免费全文数据库下载或者交费下载 本地图书馆查阅复印或者光盘检索打印，局域网搜索下载 向作者索取。 详细来说：&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;1，搜索引擎是非常重要的途径，一般的非专业英文搜索引擎包括Yahoo，AltaVista，We bcrawler，Lycos，Inforseek，Goole等。其中在搜索中，注意其中AltaVista和Lycos的Advanced Search可以选择搜索的匹配程度。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;Yahoo和Alta Vista（Advanced）可以限定查询时间。在搜索中注意运用通配符（＃，或者＊，不同的搜索引擎不太一样，需要在FAQ中或者Help中查询）。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;此外，所有的搜索引擎都内嵌布尔操作器也就是逻辑操作器，可以在关键词之间使用And或者OR等，其中Alta Vista可以使用Near（邻近）的逻辑词。Lycos不支持符号和数字检索。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;www.searchenginewatch.com 是一个动态跟踪搜索引擎的站点，如果觉得上面的不够用，可以访问该站点。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;inforseek http://www.infoseek.com 显示的结果按照匹配程度排成列表&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;yahoo http://www.yahoo.com Alta Vista http://www.altavista.digital.com 拥有最大的搜索引擎&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: large; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;数据库&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;Excite http://www.,excite.com Lycos htto://www.lycos.com 搜索到的站点均为经过专家挑选过的优秀节点webcrawler http://www.webcrawler.com Google http://www.google.com 这么好的搜索引擎，我就不说了，看FAQ和HELP吧 中文的搜索引擎我就不说了。。。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;搜索的时候，应该注意&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;1、晓得搜索的引擎数据库的特点&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;2、注意阅读引擎的FAQ和HELP文档&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;3、使用适当的句法或者操作器，也就是And/or之类的东东&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;4、准确拼写，不要用美式拼写在英国的搜索引擎上搜索&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;5、尽量检索不常用的词，或使用准确的短语&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;6、试一试同义词搜索&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;7、多个搜索引擎共同使用&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;一些医学专业搜索引擎： Achoo http://www.achoo.com 分为human health and disease,business of health,organizations and sourse三个部分，注意如果进行目录下搜索，有可能部分有交叉。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;Medsite http://www.medsite.com Omni http://omni.ac.uk Medical&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;Matrix http://www.medmatrix.org/index.asp&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;一些其他的专科搜索引擎：&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;心脏科：http://www.cardioguide.com&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;牙科：http://www.dentalgate.com&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;皮肤科：http://www.dermguide.com&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;眼科：http://ophthoguide.com&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;脑科：http://neuroguide.com&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;泌尿科：http://www.uroguide.com&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;2、网络医药文献数据库的检索 现在网上的数据库大多提供免费检索或者使用邮箱进行注册然后使用。其中以Medlin最为著名。Medline就是Medlars Online（Medical Literature Analyusis Retrieval System ONline）。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;免费的Medline节点包括&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;pubmed http://www.ncbi.nlm.nih.gov/pubmed/ internet Grateful&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;Med http://igm.nlm.nih.gov Healthgate http://www.healthgate.com infotrieve&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;http://www.infotrieve.com 以上均不需要注册。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;Pubmed包括了70多个国家的4600多种生物医学期刊，时间起自1966年。是最主要的网上医学文献检索数据库。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;它可以提供词语（关键词）检索，作者检索，刊名检索等等，详细可以参看相应的Help文档。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;Nlm Gateway系统 http://gateway.nlm.nih.gov/gw/cmd是美国过李医学图书馆的多种信息系统和数据库的综合性网络检索系统，可同时或者分别检索Medline／Oldmedline，Locatorplus，Medlineplus，Dirlin，Aids Meetings,HSR Proj系统和数据库。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;Toxnet http://toxnet.nlm.nih.gov是美国国立图书馆的一组数据库的总称，包括毒理学和有害化学物质及其相关领域的信息。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;3，免费的医学期刊资源&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;Highwire Press http://www.highwire.org 免费期刊文献网站是美国斯坦福大学所属的HighWire出版社建立的，主要收集生命科学，医学以及物理科学和少量社会科学的出版物及网络出版物。提供333HighWire期刊的免费全文以及4500种Medline期刊上的免费全文。相关检索方法可以参看网站Help文档。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;FreemedicalJournals http://www.freemedicaljournals.com 收录了970种英文和非英文生物医学全文期刊。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;一般搜索到相应的文献，获知确切的刊物名称期号和页数或者通过网上连接，通过上述的免费全文数据库可以直接从网络上获得PDF文档格式的全文。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;4、图书馆资源（一定要重视图书馆资源） 一般本地图书馆（大学或者研究所）提供局域网的全文检索和下载，例如清华全文数据库，荷兰Elsevier Science （1299种刊物，在清华大学和上海交大有镜像服务器）美国UMI 荷兰Swets Net 美国Ebsco Online（5500中电子刊物）ProQuest（涵盖200中医学刊物） OCLC ECO PSP 等全文期刊，部分可以直接通过局域网获得，部分需要到图书馆进行光盘检索打印获得。 其中清华全文数据库是中文刊物较全的文献数据库。 一般图书馆均提供局域网内的搜索和全文下载。 需要注意的是，局域网文献检索一般图书馆会检测IP地址，同时有可能需要向图书馆申请用户名和密码。  &lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: large; color: rgb(255, 0, 0); "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;文献全文免费下载心得&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;目前较好的数据库多采用IP限制，在大学IP地址范围内，都可无密码登陆。因此找到有用的代理是长期使用的关键，而且有一些数据库，如ScienceDirect和Idealibrary，网上没有可用的密码。其实说白了就是找一个已花钱买了期刊电子版的学校开设的免费代理，然后你用这个代理当然就能下载该期刊的全文了！只不过这种代理不多，而且不太好找，倒不是搜索方法有什么诀窍，而是要肯花很多时间去验证，最土的办法无非就是到网上找一个巨大的proxylist（这类网址很多，推荐http://bbs.bioon.com/bbs/dispbbs.asp?boardID=25&amp;amp;RootID=627&amp;amp;ID=627），然后一个一个去验证能不能下载你所要的文献了。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;感觉一个搜索高手的成长过程是：&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;1.新手阶段&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;不断总结改善检索式，增加搜索技巧。但现在密码越来越难找，而且密码有时间性。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;2.中级阶段&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;到网上找一个巨大的proxylist，然后一个一个去验证能不能下载你所要的文献了。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;3.高手阶段&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;主动出击。利用平时搜集的信息，主要是大学IP地址信息，用ProxyHunter 搜索，得到Free Proxy。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;4.顶级高手&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;用ProxyHunter搜索，找到需要密码的代理，破解它，需要专门软件和时间 、技巧。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;推荐使用AccessDiverhttp://soft.winzheng.com/可找到。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;5.必杀高手&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;在大学范围内，找到肉鸡，开后门和端口。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: large; color: rgb(128, 0, 128); "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;给新手，搜索技巧参考&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;http://bbs.bioon.com/bbs/dispbbs.asp? BoardID=17&amp;amp;RootID=3417&amp;amp;id=3530&amp;amp;star=1&amp;amp;skin=&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;对中级，解释两点：&lt;/p&gt;&lt;p align="left" style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;1、如何找到proxylist，去诸多代理网站，http://bbs.bioon.com/bbs/dispbbs.asp?boardID=25&amp;amp;RootID=627&amp;amp;ID=627&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;2、验证，我通常采用Idealibrary与ScienceDirect来验证。为何选用这两个，其一对绝大多数中级来说，这两个数据库是难以攻克的；其二一般单位不同时定购这两个数据库，如ScienceDirect就有ScienceDirect和ScienceDirect Onsite两个版本，若该单位定购了SDOS，则用ScienceDirect得不出结果。若你要保险，不漏过一个可用的Proxy，建议加用Willy。特别是Idealibrary。选用My Profile菜单，会显示定购信息，其中不仅有定购的期刊目录还有学校名称。嘿嘿，知道了把。google搜一下，你的数据库就不止Idealibrary与ScienceDirect了。这一步没有什么技巧，就是挂上代理，然后一个一个去验证能不能下载你所要的文献了。当然一个一个通过IE工具设置，太烦。若你没有耐心，别试了，等待好心人吧。提醒你的是，在这一步前，proxylist需要先用ProxyHunter验证，方法，http://bbs.bioon.com/bbs/dispbbs.asp?BoardID=17&amp;amp;RootID=3417&amp;amp;id=3530&amp;amp;star=1&amp;amp;skin=。同时最好参见一下IP地址范围，若不是学校IP范围，就删除吧。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;实验室一定要注意http://www.sciencedirect.com/后，在右上角会出现Athens Login菜单。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;若没有出现Athens Login，恭喜你，你成功了。别忘了将代理告诉我哈。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;给高手。使用ProxyHunter，还是有小技巧的。注意参数设置的验证数据设置，你应自己建立验证资源，对Idealibrary与ScienceDirect，似乎无法用关键字串直接辨别代理可用否。我主要用匹配文件选项。你试试选用可用的代理登陆ScienceDirect，在右上角不会出现AthensLogin菜单。也就是说，存在差异的。但我现在还没有得到阳性结果，也就是说，我只得到非登陆的匹配文件。我选用非登陆的匹配文件后，验证，Free的则删除，然后一一验证。至于破解密码和种植肉鸡，太专业了，小心成了黑客，我就不介绍了。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: large; color: rgb(255, 0, 0); "&gt;下面在谈谈下载技巧：&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;以下是几个出版社在全文下载时所设的身份验证方式, 有助于大家更快的下载全文：&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;ACS：对每一个期刊，只验证一次，也就是说当你用代理成功下载全文后，就可以把IE里的代理改成免费代理直接下载了，真爽。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;AIP, APS, IDEAL，Springer, RSC：这几个出版社的期刊，是每次下载都要进行身份验证的，当然啦，你可以先用免费代理快速连接到有Full text连接的那个页面，在下载时再换用二级代理。这样能减少代理使用，要知道大部分代理有流量记录，减少使用会延长代理生存时间，谢谢了。 Wiley：对身份验证最严格！从开始一直到那个有Full text连接的页面都需要用二级代理；等到出现Full text联机页面，这时就可以换一个免费代理来爽爽的下载了；但是如果你时机未把握好，发现不能下全文，你就必须得关掉所有的浏览器窗口，换上可下全文的代理再重新连结，才能生效！&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;有朋友提出，搜得代理后，一个一个数据库去试，看都可用于其它那几个数据库。 我的经验是首先用Idealibrary数据库的My Profile菜单，打开View the licensedinstitutions list链接，会出现Sub&lt;a style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(0, 94, 172); "&gt;&lt;/a&gt;&lt;a style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(0, 94, 172); "&gt;&lt;/a&gt;&lt;a style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(0, 94, 172); "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(59, 88, 136); "&gt;script&lt;/span&gt;&lt;/a&gt;ion list，注意此时会有机构名称。嘿嘿，用google大法。找到机构网址，查图书馆，一切搞定。另外ingenta与Femald数据库也会在主页右上角提示登陆机构名称。试试就知道了。不用一个一个盲目去试。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: large; color: rgb(255, 0, 0); "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: large; color: rgb(255, 0, 0); "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;用代理主要有几点：&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;1、上某些敏感性站点；&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;2、隐藏真实身份，即IP；&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;3、免费看Fulltext；&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;4、黑客····。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;如果你嫌宽带慢，就不要用代理了，一般代理不会比宽带快的。&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; &lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;关于Proxyhunter的特征字串问题，我的体会是：ScinenceDirect的特征字串以及匹配文件，找到并不困难。但Idealibrary的特征字串以及匹配文件，我用Proxyhunter根本接收不到，也传不过来，看来只能寻找其它软件了&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5931631434944515423-914060299403389854?l=hxlich.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hxlich.blogspot.com/feeds/914060299403389854/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5931631434944515423&amp;postID=914060299403389854' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/914060299403389854'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/914060299403389854'/><link rel='alternate' type='text/html' href='http://hxlich.blogspot.com/2009/08/blog-post_12.html' title='如何在校外下载期刊全文'/><author><name>龙加</name><uri>http://www.blogger.com/profile/02424615920585053635</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_fbhMkQzafCA/SLobyz_37BI/AAAAAAAAACo/mrSZALNoSzo/S220/L605781519172GAZ.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5931631434944515423.post-4618265993536016849</id><published>2009-08-03T01:58:00.001-07:00</published><updated>2009-08-03T01:58:44.791-07:00</updated><title type='text'>数学单词</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: Verdana, Helvetica, Arial, sans-serif; font-size: 14px; border-collapse: collapse; color: rgb(68, 68, 68); line-height: 22px; "&gt;安省教学大纲上找的词，适合大一新生&lt;br /&gt;虽然把这些单词的中文也写上了，但是强烈不建议大家背！对照参考一下，没见过的概念查一下了解就够了，上课以后老师会把几乎所有概念重新解释一遍的，到时候直接记住英文，不用翻译了。&lt;br /&gt;&lt;br /&gt;1.        theorem  定理&lt;br /&gt;2.        proof  证明&lt;br /&gt;3.        axiom  公理&lt;br /&gt;4.        sequence  数列&lt;br /&gt;5.        nth term  第n项&lt;br /&gt;6.        recursion formula  递推公式&lt;br /&gt;7.        arithmetic  算术&lt;br /&gt;8.        geometry  几何  geometric  几何的&lt;br /&gt;9.        algebra  代数，algebraic  代数的&lt;br /&gt;10.        sum  和&lt;br /&gt;11.        function  函数&lt;br /&gt;12.        sine  sin,  cosine  cos,  tangent  tan,  cotangent  cot&lt;br /&gt;13.        trigonometric function  三角函数&lt;br /&gt;14.        triangle  三角，rectangle  长方形&lt;br /&gt;15.        acute angle  锐角，right angle  直角，obtuse angle  钝角&lt;br /&gt;16.        dimension  维度  two dimension  2-D, three dimension  3-D&lt;br /&gt;17.        radian  弧度&lt;br /&gt;18.        linear  线性的&lt;br /&gt;19.        quadratic equation  二次方程&lt;br /&gt;20.        graph  图像&lt;br /&gt;21.        transformation  变换 translation  平移，reflection  反射，stretch  拉伸&lt;br /&gt;22.        amplitude  振幅，period  周期，phase  相位&lt;br /&gt;23.        domain  定义域，range  值域&lt;br /&gt;24.        circle  圆，parabola  抛物线，ellipse  椭圆，hyperbola  双曲线&lt;br /&gt;25.        center  圆心&lt;br /&gt;26.        radius  半径&lt;br /&gt;27.        vertex  顶点&lt;br /&gt;28.        focus  焦点  foci  焦点（复数）&lt;br /&gt;29.        axis  轴&lt;br /&gt;30.        asymptote  渐近线&lt;br /&gt;31.        directrix  准线&lt;br /&gt;32.        area  面积&lt;br /&gt;33.        volume  体积&lt;br /&gt;34.        arc length  弧长&lt;br /&gt;35.        sphere  球，cylinder  柱，cone  圆锥&lt;br /&gt;36.        inequality  不等式&lt;br /&gt;37.        add / plus 加，subtract / minus  减，multiply /time  乘，divide  除&lt;br /&gt;38.        product  积，quotient  商&lt;br /&gt;39.        polynomials  多项式&lt;br /&gt;40.        method of completing the square  配方法&lt;br /&gt;41.        integer  整数，rational numbers  有理数，irrational numbers  无理数，real  numbers  实数，complex numbers  复数，imaginary numbers  虚数&lt;br /&gt;42.        positive  正的，negative  负的&lt;br /&gt;43.        root  （方程的）根&lt;br /&gt;44.        variable  变量，可变的&lt;br /&gt;45.        value  值&lt;br /&gt;46.        exponent  指数，logarithm  对数&lt;br /&gt;47.        power  幂&lt;br /&gt;48.        inverse (of a function)  （函数的）逆&lt;br /&gt;49.        symmetry  对称性&lt;br /&gt;50.        remainder  余数&lt;br /&gt;51.        factor  因数&lt;br /&gt;52.        calculus  微积分&lt;br /&gt;53.        infinite  无穷大&lt;br /&gt;54.        horizontal  水平的&lt;br /&gt;55.        vertical  竖直的&lt;br /&gt;56.        intersect  相交，intersection  交点&lt;br /&gt;57.        parallel  平行&lt;br /&gt;58.        skewed  异面&lt;br /&gt;59.        limit  极限&lt;br /&gt;60.        derivative  导数  second derivative  二阶导数&lt;br /&gt;61.        slope  斜率&lt;br /&gt;62.        tangent  切线&lt;br /&gt;63.        normal / orthogonal  正交，垂直&lt;br /&gt;64.        continuous  连续的，discontinuous  不连续的&lt;br /&gt;65.        differentiate  微分，differentiable  可微的&lt;br /&gt;66.        chain rule  链式法则&lt;br /&gt;67.        implicit function  隐函数&lt;br /&gt;68.        integral  积分&lt;br /&gt;69.        vector  向量&lt;br /&gt;70.        scalar multiplication  数乘，dot product  点乘，cross product  叉乘&lt;br /&gt;71.        Cartesian coordinate system  笛卡尔坐标系&lt;br /&gt;72.        origin  原点&lt;br /&gt;73.        x-axis  x轴，y-axis  y轴&lt;br /&gt;74.        parametric  参数的，parameter  参数&lt;br /&gt;75.        line  线，curve  曲线，surface  曲面，plane  平面&lt;br /&gt;76.        matrix  矩阵，matrices  矩阵（复数）&lt;br /&gt;77.        binomial  二项式&lt;br /&gt;78.        coefficient  系数&lt;br /&gt;79.        expansion  展开&lt;br /&gt;80.        discrete  离散的&lt;br /&gt;81.        Venn diagram  韦恩图&lt;br /&gt;82.        permutation and combination  排列组合&lt;br /&gt;83.        Pascal  帕斯卡&lt;br /&gt;84.        probability  概率&lt;br /&gt;85.        statistics  统计&lt;br /&gt;86.        data  数据&lt;br /&gt;87.        念数字的时候一般两位两位念：226  two twenty-six，1287  twelve eighty seven，1.115  one point one fifteen&lt;br /&gt;88.        a + b  a plus b, a and b&lt;br /&gt;89.        a – b  a minus b&lt;br /&gt;90.        a * b  a times b  （北大来的个化学助教把这个念成plus，汗了）&lt;br /&gt;91.        a / b  a divided by b, a over b  （分数，分式都念over）&lt;br /&gt;92.        a ^ b  a to the b th, a to b&lt;br /&gt;93.        e ^ b  e to b&lt;br /&gt;94.        sqrt(a)  square root a  根号a&lt;br /&gt;95.        a ^ 2  a square&lt;br /&gt;96.        a ^ 3  a cube&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5931631434944515423-4618265993536016849?l=hxlich.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hxlich.blogspot.com/feeds/4618265993536016849/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5931631434944515423&amp;postID=4618265993536016849' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/4618265993536016849'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/4618265993536016849'/><link rel='alternate' type='text/html' href='http://hxlich.blogspot.com/2009/08/blog-post.html' title='数学单词'/><author><name>龙加</name><uri>http://www.blogger.com/profile/02424615920585053635</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_fbhMkQzafCA/SLobyz_37BI/AAAAAAAAACo/mrSZALNoSzo/S220/L605781519172GAZ.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5931631434944515423.post-7010314730077536483</id><published>2009-05-09T03:40:00.001-07:00</published><updated>2009-05-09T03:40:46.652-07:00</updated><title type='text'>手动去除迅雷烦人的广告</title><content type='html'>&lt;span class="Apple-style-span" style="color: rgb(102, 102, 102); font-family: 微软雅黑; font-size: 14px; line-height: 21px; "&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;&lt;span style="color: rgb(0, 0, 255); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;一、去除迅雷顶部广告&lt;/span&gt;     &lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;打开迅雷的安装目录中Program文件夹： 　　&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;1、找到gui.cfg文件，然后用记事本打开，把它的内容改为：&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt; [URL] ADServer=&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;LastModifyTime=Sat, 7 Jul 2007 01:00:26 GMT&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;NavigateTimes=10&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;TimeSpan=300&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;PartnerNavigateTimers=10&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;PartnerTimeSpan=300&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;PVServer=&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;PVPort=3076&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;PVTimeSpan=5&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;ADCountingServer=&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;ADCountingPort=3076&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;HomePage= 　&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;（也就是将其所有的广告来源网址都去掉）　&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;2、修改完后保存。 　　&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;3、在迅雷的安装目录中Program文件夹下找到geturl.htm和getAllurl.htm文件，然后用记事本打开，清空里面所有内容，修改完后保存。 　　&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;4、打开Ad文件夹，删除n*.swf。（n为文件名的第一个字，只留下main.gif、002.gif、new.gif和default_main.swf这四个文件，如果不留的话广告栏会是空白的）    &lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;修改完后保存，然后重新启动迅雷。 　&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;　&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;&lt;span style="color: rgb(0, 0, 255); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;二、 去掉热门推荐：&lt;br /&gt;&lt;/span&gt;打开迅雷的安装目录中Components文件夹，找到P4PClient文件夹，删除里面所有文件（关键是要删掉Components\P4PClient目录下的P4PClient.dll）。&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;（不要删除P4PClient文件夹）&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;　　&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;&lt;span style="color: rgb(0, 0, 255); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;三、去资源信息 (必须先关迅雷在改) &lt;/span&gt;   &lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;打开迅雷的安装目录中Profiles文件夹： 　　&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;1.找到迅雷安装文件夹（Thunder Network)---Thunder---profile---userconfig然后用记事本打开&lt;br /&gt;2.找到&lt;span style="color: red; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;[splitter-1]&lt;/strong&gt;&lt;span style="color: rgb(0, 0, 0); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;，&lt;/span&gt;&lt;/span&gt;里面有第二个&lt;span style="color: red; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;pane1-hide=0&lt;/strong&gt;&lt;/span&gt;，将里面的0改为1，并将文件保存为只读即可。&lt;br /&gt;&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;四、去掉搜索栏：&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;打开Thunder Network\Thunder\Components\Search&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;把里面的XLSearch.dll删除，迅雷界面上的狗狗搜索框就会被去掉&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt; &lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;&lt;span style="color: rgb(0, 0, 255); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="color: rgb(0, 0, 255); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="color: rgb(255, 0, 0); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="color: rgb(255, 0, 0); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;五、屏蔽右下角弹出小窗口&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;&lt;span style="color: rgb(255, 0, 255); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="color: rgb(255, 0, 255); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="color: rgb(0, 128, 0); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="color: rgb(0, 128, 0); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="color: rgb(0, 0, 128); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="color: rgb(0, 0, 128); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="color: rgb(255, 102, 0); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="color: rgb(255, 102, 0); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="color: rgb(255, 0, 255); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="color: rgb(255, 0, 255); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;打开Thunder Network\Thunder\Components\Tips&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;&lt;span style="color: rgb(255, 0, 255); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="color: rgb(255, 0, 255); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="color: rgb(0, 128, 0); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="color: rgb(0, 128, 0); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="color: rgb(0, 0, 128); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="color: rgb(0, 0, 128); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="color: rgb(255, 102, 0); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="color: rgb(255, 0, 255); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;把里面的tipsextend.exe删除并建立一个同名文件替代，那下载的时候就不会在桌面右下角弹出讨厌的小窗口了 !!&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;　&lt;/span&gt;   &lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt; &lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt; &lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="color: rgb(0, 128, 0); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="color: rgb(0, 128, 0); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;迅雷去除广告\热门推荐\社区互动方法!&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;&lt;span style="color: rgb(0, 0, 255); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;1. 清除顶部横幅广告 &lt;br /&gt;&lt;/span&gt;首先确定已关闭迅雷.在迅雷安装目录里打开“Program”文件夹,找到“gui.cfg”文件,选择用记事本打开,找到以下四个单词:&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;程序代码&lt;br /&gt;ADServer=&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;PVServer=&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;ADCountingServer=&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;HomePage=&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;//将“=”后面的网址都删掉&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;保存文件。右键点击改动后的"gui.cfg",将属性,改为“只读”。&lt;br /&gt;之后删除Program\Ad目录下的所有文件。启动迅雷,小广告已经没有了..&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 255); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;2.屏蔽顶部和右侧热门推荐&lt;/span&gt;&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;在迅雷的安装目录中Program文件夹下找到geturl.htm和getAllurl.htm文件，然后用记事本打开，清空里面所有内容，修改完后保存。右击这俩文件，选择“属性”在弹出的对话框中选中“只读”属性。&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;&lt;br /&gt;用记事本打开该目录下的 adhistory.xml 及 adtask.xml 文件，然后将里面的内容全部删除并保存，然后给它们添加 只读 属性。&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;&lt;br /&gt;打开Ad文件夹，删除所有文件，之后删除Ad文件夹所有用户的访问权限&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;&lt;br /&gt;还是确定是否已关闭迅雷.在迅雷安装目录里打开“Profiles”文件夹,找到“UserConfig.ini”文件,用记事本打开,找到“[Splitter_1]”在其下方找到“Pane1_Hide=0”,将0改为1.保存文件,启动迅雷后,你会发现右侧的热门推荐已经没有了!&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt; &lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;去掉迅雷中的社区互动:迅雷目录下Components\Community,找到XLCommunity.dll文件,用Restorator软件编辑.删除dialog下的1076文件,保存后重新打开迅雷就发现社区互动没了Restorator软件网上有下载,如霏凡等。&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt; &lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;删除社区互动，Components-目录下的Community子目录,找到XLCommunity.dll文件,用记事本打开它；&lt;br /&gt;查找网址“http://recommend.xunlei.com/client_down.html”把它删除，保存在重新打开迅雷就发现社区互动没了，不过相应的雷友登录也不存在了，如果你使用雷友积分功能，不建议删除。&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt; &lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;&lt;span style="color: rgb(0, 0, 255); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="color: rgb(0, 0, 255); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="color: rgb(255, 0, 0); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="color: rgb(255, 0, 0); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;3.防止迅雷偷偷上传资料&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;删除系统中Windows\system32\cid_store.dat ，然后建立一个同名的只读空文件cid_store.dat，基于微软OS同位置不能存在同名文件或目录的原理，迅雷也就没办法再建同名文件了。&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;以下加上自己的补充：&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;\Program\Update目录下的所有文件删除，然后建子目录 update.dat 禁止迅雷偷偷下载更新组件&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-indent: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5931631434944515423-7010314730077536483?l=hxlich.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hxlich.blogspot.com/feeds/7010314730077536483/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5931631434944515423&amp;postID=7010314730077536483' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/7010314730077536483'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/7010314730077536483'/><link rel='alternate' type='text/html' href='http://hxlich.blogspot.com/2009/05/blog-post.html' title='手动去除迅雷烦人的广告'/><author><name>龙加</name><uri>http://www.blogger.com/profile/02424615920585053635</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_fbhMkQzafCA/SLobyz_37BI/AAAAAAAAACo/mrSZALNoSzo/S220/L605781519172GAZ.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5931631434944515423.post-4421899956079117312</id><published>2009-04-21T17:45:00.000-07:00</published><updated>2009-04-21T17:46:07.092-07:00</updated><title type='text'>怎么在加拿大打电话</title><content type='html'>&lt;span class="Apple-style-span" style="border-collapse: collapse; color: rgb(68, 68, 68); font-family: Verdana; font-size: 14px; line-height: 22px; "&gt;&lt;strong style="word-wrap: break-word; text-align: left; font-style: normal; line-height: normal; font-weight: bold; "&gt;在&lt;span href="tag.php?name=%BC%D3%C4%C3%B4%F3" onclick="tagshow(event)" class="t_tag" style="word-wrap: break-word; line-height: normal; cursor: pointer; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(255, 0, 0); white-space: nowrap; "&gt;加拿大&lt;/span&gt;打&lt;span href="tag.php?name=%B5%E7%BB%B0" onclick="tagshow(event)" class="t_tag" style="word-wrap: break-word; line-height: normal; cursor: pointer; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(255, 0, 0); white-space: nowrap; "&gt;电话&lt;/span&gt;和在其他国家打电话大致相同。几乎所有的&lt;span href="tag.php?name=%B9%FA%BC%CA%B3%A4%CD%BE" onclick="tagshow(event)" class="t_tag" style="word-wrap: break-word; line-height: normal; cursor: pointer; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(255, 0, 0); white-space: nowrap; "&gt;国际长途&lt;/span&gt;都可以直接拨打。&lt;/strong&gt; &lt;br /&gt;&lt;span style="font-size: 0px; color: rgb(255, 255, 255); word-wrap: break-word; line-height: normal; "&gt;8 k+ H' ]% H" _" ]6 l&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: 0px; color: rgb(255, 255, 255); word-wrap: break-word; line-height: normal; "&gt;+ E$ n1 ?/ Z8 b* B  e&lt;/span&gt;&lt;br /&gt;所有加拿大境内的电话 (包括市内的电话), 您都需要拨打10 位数字的号码: 前3位是区号, 后7位是电话号码。大部分市内电话费用都包在您的月费里了。如果您想跟您的邻居(假设这是市内电话)一个月讲大约500个小时的电话,您只需要付您的基本月费20-30加币。不好的一方面是, 就算您一个电话也不打您还是要付同样的月费。 &lt;br /&gt;如果您打给一个市内的移动电话，您不需要再交费。但是您那个&lt;span href="tag.php?name=%CA%D6%BB%FA" onclick="tagshow(event)" class="t_tag" style="word-wrap: break-word; line-height: normal; cursor: pointer; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(255, 0, 0); white-space: nowrap; "&gt;手机&lt;/span&gt;电话的朋友可能要按每分钟付费。 &lt;br /&gt;长途电话：长途电话包括国内长途和国际长途。国内长途电话服务允许您打给加拿大境内任何一个城市，一般来说如果使用一个长途电话公司，您打任何一个境内的城市付的费用是一样的。也就是说，如果您住在&lt;span href="tag.php?name=%B6%E0%C2%D7%B6%E0" onclick="tagshow(event)" class="t_tag" style="word-wrap: break-word; line-height: normal; cursor: pointer; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(255, 0, 0); white-space: nowrap; "&gt;多伦多&lt;/span&gt;，您打给安大略省的温莎或者是不列颠哥伦比亚省的&lt;span href="tag.php?name=%CE%C2%B8%E7%BB%AA" onclick="tagshow(event)" class="t_tag" style="word-wrap: break-word; line-height: normal; cursor: pointer; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(255, 0, 0); white-space: nowrap; "&gt;温哥华&lt;/span&gt;都是一个价钱。&lt;span style="font-size: 0px; color: rgb(255, 255, 255); word-wrap: break-word; line-height: normal; "&gt;) M( N# G- t4 S! I) c5 y&lt;/span&gt;&lt;br /&gt;&lt;strong style="word-wrap: break-word; text-align: left; font-style: normal; line-height: normal; font-weight: bold; "&gt;国内长途电话 （加拿大境内的通迅）:&lt;/strong&gt; 要打长途电话，您要先拨 1 然后再拨您要打的10 个数字的号码。如果您要拨打一个市外区号的手机号，您需要付长途电话费，您的朋友根据他/她的手机计划可能要付每分钟的电话费。 &lt;span style="font-size: 0px; color: rgb(255, 255, 255); word-wrap: break-word; line-height: normal; "&gt;  f8 `- J0 e) O7 A$ X&lt;/span&gt;&lt;br /&gt;&lt;strong style="word-wrap: break-word; text-align: left; font-style: normal; line-height: normal; font-weight: bold; "&gt;国际长途电话:&lt;/strong&gt; 拨打&lt;span href="tag.php?name=%BA%A3%CD%E2" onclick="tagshow(event)" class="t_tag" style="word-wrap: break-word; line-height: normal; cursor: pointer; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(255, 0, 0); white-space: nowrap; "&gt;海外&lt;/span&gt;长途电话时，通常您需要先拨一个前缀 011，之后拨打国家区号。比如说如果您要打给中国，您需要拨打：011 86，然后拨您要接通的地区号和电话号码。 &lt;span style="font-size: 0px; color: rgb(255, 255, 255); word-wrap: break-word; line-height: normal; "&gt;6 E5 }7 i( m" B4 e&lt;/span&gt;&lt;br /&gt;在这个拨打协议里有一个特例。加拿大和&lt;span href="tag.php?name=%C3%C0%B9%FA" onclick="tagshow(event)" class="t_tag" style="word-wrap: break-word; line-height: normal; cursor: pointer; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(255, 0, 0); white-space: nowrap; "&gt;美国&lt;/span&gt;的国家区号是一样的，所以您打给美国时规则与拨打加拿大长途是同样的。比如说，如果您要打到美国的迈阿密（市区号是 305），您需要拨打 1 305，然后拨您想要接通的号码。 &lt;span style="font-size: 0px; color: rgb(255, 255, 255); word-wrap: break-word; line-height: normal; "&gt;, N6 N7 ?2 O&amp;amp; {4 A$ z8 @6 A0 A6 Y3 w&lt;/span&gt;&lt;br /&gt;免费电话免费电话通常意味着不论您从那一部电话机打，这个电话都是免费的，除非您从手机拨打。在用手机拨打一个免费电话号码的情况下，您需要付您手机计划每分钟规定的费用。 &lt;br /&gt;大部分的免费电话开始的号码是：1 800、 1 888、 1 877、 1 866。通常加拿大大部分公司的客户服务中心都有一个免费电话号码。 &lt;span style="font-size: 0px; color: rgb(255, 255, 255); word-wrap: break-word; line-height: normal; "&gt;&amp;amp; [; i6 Z% `0 f8 k9 J- W6 x&lt;/span&gt;&lt;br /&gt;1-900 号码拨打1-900的号码您每分钟通常需要付很昂贵的费用，费用直接付给号码的所有人。大部分这类电话都是在成人/娱乐&lt;span href="tag.php?name=%D0%D0%D2%B5" onclick="tagshow(event)" class="t_tag" style="word-wrap: break-word; line-height: normal; cursor: pointer; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(255, 0, 0); white-space: nowrap; "&gt;行业&lt;/span&gt;，在接通的几秒钟后您会被告知他们的收费标准。当然到了这个地步，就算您原本不想交费也已经太晚了。所以您一定要小心。 &lt;br /&gt;对方付款的电话您可以直接从任何一个电话亭或您家里的电话要求接线员或者您的电讯商帮您连通一个对方付款的电话。 &lt;br /&gt;接线员从加拿大任何一个电话亭的电话您可以拨打“0”，接线员可以帮您接通一个对方付款的电话。 &lt;span style="font-size: 0px; color: rgb(255, 255, 255); word-wrap: break-word; line-height: normal; "&gt;: `7 D$ k9 }( a- ]0 w8 x5 P&lt;/span&gt;&lt;br /&gt;紧急情况在紧急情况下，例如您需要救火车、救生车、警察等等的时候，您可以从加拿大任何一部电话拨通 911。 拨通这个电话可以帮您接通一个紧急情况下的调度员。但是如果您虚报一个紧急情况，您会犯下很严重的罪过，甚至可以送您进监狱。&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5931631434944515423-4421899956079117312?l=hxlich.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hxlich.blogspot.com/feeds/4421899956079117312/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5931631434944515423&amp;postID=4421899956079117312' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/4421899956079117312'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/4421899956079117312'/><link rel='alternate' type='text/html' href='http://hxlich.blogspot.com/2009/04/blog-post_21.html' title='怎么在加拿大打电话'/><author><name>龙加</name><uri>http://www.blogger.com/profile/02424615920585053635</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_fbhMkQzafCA/SLobyz_37BI/AAAAAAAAACo/mrSZALNoSzo/S220/L605781519172GAZ.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5931631434944515423.post-4830122930148074753</id><published>2009-04-21T00:01:00.001-07:00</published><updated>2009-04-21T00:01:29.992-07:00</updated><title type='text'>一个老工程师对理工科学生的忠告</title><content type='html'>&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: Tahoma; font-size: 14px; line-height: 21px; "&gt;好好规划自己的路，不要跟着感觉走！根据个人的理想决策安排，绝大部分人并不指望成为什么院士或教授，而是希望活得滋润一些，爽一些。那么，就需要慎重安排自己的轨迹。从哪个行业入手，逐渐对该行业深入了解，不要频繁跳槽，特别是不要为了一点工资而转移阵地，从长远看，这点钱根本不算什么，当你对一个行业有那么几年的体会，以后钱根本不是问题。频繁地动荡不是上策，最后你对哪个行业都没有摸透，永远是新手！ &lt;br /&gt;&lt;br /&gt;　　　 &lt;br /&gt;[2]可以做技术，切不可沉湎于技术。千万不可一门心思钻研技术！给自己很大压力，如果你的心思全部放在这上面，那么注定你将成为孔乙己一类的人物！适可而止为之，因为技术只不过是你今后前途的支柱之一，而且还不是最大的支柱，除非你只愿意到老还是个工程师！ &lt;br /&gt;&lt;br /&gt;　　　 &lt;br /&gt;[3]不要去做技术高手，只去做综合素质高手！在企业里混，我们时常瞧不起某人，说他“什么都不懂，凭啥拿那么多钱，凭啥升官！”这是普遍的典型的工程师的迂腐之言。8051很牛吗？人家能上去必然有他的本事，而且是你没有的本事。你想想，老板搞经营那么多年，难道见识不如你这个新兵？人家或许善于管理，善于领会老板意图，善于部门协调等等。因此务必培养自己多方面的能力，包括管理，亲和力，察言观色能力，攻关能力等，要成为综合素质的高手，则前途无量，否则只能躲在角落看示波器！技术以外的技能才是更重要的本事！！从古到今，美国日本，一律如此！　　　 &lt;br /&gt;&lt;br /&gt;[4]多交社会三教九流的朋友！不要只和工程师交往，认为有共同语言，其实更重要的是和其他类人物交往，如果你希望有朝一日当老板或高层管理，那么你整日面对的就是这些人。了解他们的经历，思维习惯，爱好，学习他们处理问题的模式，了解社会各个角落的现象和问题，这是以后发展的巨大的本钱，没有这些以后就会笨手笨脚，跌跌撞撞，遇到重重困难，交不少学费，成功的概率大大降低！ &lt;br /&gt;&lt;br /&gt;[5]知识涉猎不一定专，但一定要广！多看看其他方面的书，金融，财会，进出口，税务，法律等等，为以后做一些积累，以后的用处会更大！会少交许多学费！！　 &lt;br /&gt;&lt;br /&gt;[6]抓住时机向技术管理或市场销售方面的转变！要想有前途就不能一直搞开发，适当时候要转变为管理或销售，前途会更大，以前搞技术也没有白搞，以后还用得着。搞管理可以培养自己的领导能力，搞销售可以培养自己的市场概念和思维，同时为自己以后发展积累庞大的人脉！应该说这才是前途的真正支柱！！！　　　 &lt;br /&gt;&lt;br /&gt;[7]逐渐克服自己的心里弱点和性格缺陷！多疑，敏感，天真（贬义，并不可爱），犹豫不决，胆怯，多虑，脸皮太薄，心不够黑，教条式思维……这些工程师普遍存在的性格弱点必须改变！很难吗？只在床上想一想当然不可能，去帮朋友守一个月地摊，包准有效果，去实践，而不要只想！不克服这些缺点，一切不可能，甚至连项目经理都当不好--尽管你可能技术不错！　　　 &lt;br /&gt;&lt;br /&gt;[8]工作的同时要为以后做准备！建立自己的工作环境！及早为自己配置一个工作环境，装备电脑，示波器（可以买个二手的），仿真器，编程器等，业余可以接点活，一方面接触市场，培养市场感觉，同时也积累资金，更重要的是准备自己的产品，咱搞技术的没有钱，只有技术，技术的代表不是学历和证书，而是产品，拿出象样的产品，就可技术转让或与人合作搞企业！先把东西准备好，等待机会，否则，有了机会也抓不住！　　　 &lt;br /&gt;&lt;br /&gt;[9]要学会善于推销自己！不仅要能干，还要能说，能写，善于利用一切机会推销自己，树立自己的品牌形象，很必要！要创造条件让别人了解自己，不然老板怎么知道你能干？外面的投资人怎么相信你？提早把自己推销出去，机会自然会来找你！搞个个人主页是个好注意！！特别是培养自己在行业的名气，有了名气，高薪机会自不在话下，更重要的是有合作的机会...　　　 &lt;br /&gt;&lt;br /&gt;[10]该出手时便出手！永远不可能有100%把握！！！条件差不多就要大胆去干，去闯出自己的事业，不要犹豫，不要彷徨，干了不一定成功，但至少为下一次冲击积累了经验，不干永远没出息，而且要干成必然要经历失败。不经历风雨，怎么见彩虹，没有人能随随便便成功！&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5931631434944515423-4830122930148074753?l=hxlich.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hxlich.blogspot.com/feeds/4830122930148074753/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5931631434944515423&amp;postID=4830122930148074753' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/4830122930148074753'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/4830122930148074753'/><link rel='alternate' type='text/html' href='http://hxlich.blogspot.com/2009/04/blog-post.html' title='一个老工程师对理工科学生的忠告'/><author><name>龙加</name><uri>http://www.blogger.com/profile/02424615920585053635</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_fbhMkQzafCA/SLobyz_37BI/AAAAAAAAACo/mrSZALNoSzo/S220/L605781519172GAZ.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5931631434944515423.post-2555221788545800384</id><published>2009-04-14T08:44:00.001-07:00</published><updated>2009-04-14T08:44:43.372-07:00</updated><title type='text'>分享申请re-entry visa的经验</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: verdana; font-size: 14px; line-height: 21px; "&gt;&lt;div align="left"&gt;&lt;span style="font-size:100%;"&gt;很多人询问加拿大re-entry visa的问题，所以想写这个贴子分享一下自己的经验。&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;div align="left"&gt;&lt;span style="font-size:100%;"&gt;我是以自己几次申请re-entry visa经过写出来的，当中也许有不足之处，欢迎各位有经验的朋友指出错误&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="color:blue;"&gt;我几次的经验中，从寄出申请到收到回邮大概是两至三周的时间~~&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="color:#0000ff;"&gt;也听说有其他朋友是一周内收到的，也听说有朋友是一个月才收到的。&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="color:#0000ff;"&gt;所以应该是一月内都是正常的吧~~&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;span style="font-size:6;"&gt;&lt;span style="color:#ff0000;"&gt;材料：&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="color:#0000ff;"&gt;我寄出的&lt;span style="color:blue;"&gt;材料&lt;/span&gt;有：&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="color:#0000ff;"&gt;1。Document CheckList&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="color:#0000ff;"&gt;2。Application for a Temporary Resident Visa&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="color:#0000ff;"&gt;3。Fee Payment receipt&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="color:#0000ff;"&gt;4。Vaild passport&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="color:#0000ff;"&gt;5。Two passport size photos(Canadian passport size)&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="color:#0000ff;"&gt;6。Photo copy of your immigration document(study permit/work permit)&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="color:#0000ff;"&gt;7。Proof of financial support(Bank statement，我不清楚金额要多少，但是我认为只要证明你有足够资金给学费和生活费就好了吧。)&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="color:#0000ff;"&gt;8。School letter/ Enrolment Letter/Academic transcript &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;span style="color:red;"&gt;以上是我寄出的材料清单，因每个人情况不同，仅供参考。&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:6;"&gt;&lt;span style="color:red;"&gt;&lt;b&gt;表格：&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;哪里找表格呢？番茄炒西红柿 的贴子里面有非常详细的links了~~&lt;br /&gt;&lt;a href="http://bbs.comefromchina.com/forum13/thread583003.html" target="_blank" style="color: rgb(0, 0, 255); text-decoration: none; "&gt;申请FORMS [Re-entry VISA; Study Permits; Work Permits; Canadian Experience Class]&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:6;"&gt;&lt;span style="color:red;"&gt;&lt;b&gt;付款方式：&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;到银行做一张money order 给 Canada Consulate General. &lt;br /&gt;&lt;br /&gt;申请single entrey是$75加元,multi re-entrey是$150&lt;br /&gt;&lt;br /&gt;money order的手续费是$25.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:6;"&gt;&lt;span style="color:red;"&gt;&lt;b&gt;地址：&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;我每次都是寄到Buffalo，也有其他的地址，大家google一下就有了~&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="color:blue;"&gt;Consulate General of Canada &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="color:blue;"&gt;Immigration Regional Program Centre &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="color:blue;"&gt;3000 HSBC Center &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="color:blue;"&gt;Buffalo, New York &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="color:blue;"&gt;14203-2884, USA&lt;/span&gt;&lt;/span&gt;&lt;/b&gt; &lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;span style="font-size:6;"&gt;&lt;span style="color:#ff0000;"&gt;邮寄方式：&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="color:#0000ff;"&gt;我几次都是用fedex的快递往返的，是第二天就到达目的地的那种，记得好象是60多+tax吧，&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="color:#0000ff;"&gt;虽然很贵，但是用这个我感觉比较放心，毕竟寄出去的是唯一能让我回国的东西啊~&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="color:#0000ff;"&gt;而且它会给你两个track No.，你可以上它的网站查询你的邮件是否已经安全到达了。&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="color:#0000ff;"&gt;另外，需要强调的是：很多朋友说自己明明附上的回邮信封的，为什么他们不用那个信封帮你邮回来呢？&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="color:#0000ff;"&gt;原因也许是你用了信用卡去付这个信封的钱，所以他们就不会用了。&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="color:#0000ff;"&gt;回邮信封只能是用现金或debit card支付的。&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:6;"&gt;&lt;span style="color:#ff0000;"&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="color:#0000ff;"&gt;大家邮寄的时候应该注意这一点，不然那30多回邮信封费就白费了~还得干着急着为什么护照还不回来~&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;span style="font-size:6;"&gt;&lt;span style="color:red;"&gt;查询进展情况：&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;span style="color:blue;"&gt;&lt;span style="font-size:100%;"&gt;可email到&lt;/span&gt;&lt;/span&gt;&lt;a href="mailto:re-buffalo-im-enquiry@international.gc.ca" style="color: rgb(0, 0, 255); text-decoration: none; "&gt;&lt;u&gt;&lt;b&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="color:blue;"&gt;re-buffalo-im-enquiry@international.gc.ca&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/u&gt;&lt;/a&gt;&lt;span style="color:blue;"&gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;要在email内容里说明你的姓名，护照号，生日日期等基本资料，工作人员会在几天内回复你的。如果他们回复说你的资料不在他们的资料库里，不要惊慌，这可能是因为他们收到了你的邮件，但是还未打开，所以还未输入资料库而已。&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="color:#0000ff;"&gt;最好等个三个星期，还track不到你的回邮信封的时候再发email，否则你再发第二次email的时候，他们可能就不回了。我上次就试过...着急了老半天~&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5931631434944515423-2555221788545800384?l=hxlich.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hxlich.blogspot.com/feeds/2555221788545800384/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5931631434944515423&amp;postID=2555221788545800384' title='1 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/2555221788545800384'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/2555221788545800384'/><link rel='alternate' type='text/html' href='http://hxlich.blogspot.com/2009/04/re-entry-visa.html' title='分享申请re-entry visa的经验'/><author><name>龙加</name><uri>http://www.blogger.com/profile/02424615920585053635</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_fbhMkQzafCA/SLobyz_37BI/AAAAAAAAACo/mrSZALNoSzo/S220/L605781519172GAZ.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5931631434944515423.post-7657139321586534546</id><published>2009-03-31T10:43:00.000-07:00</published><updated>2009-03-31T10:44:07.664-07:00</updated><title type='text'>数学术语</title><content type='html'>&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: simsun; font-size: 14px; line-height: 24px; "&gt;Maths 数学术语 &lt;br /&gt;mathematics 数学&lt;br /&gt;theorem 定理&lt;br /&gt;calculation 计算&lt;br /&gt;operation 运算&lt;br /&gt;arithmetic 算术,四则运算&lt;br /&gt;addition 加法&lt;br /&gt;subtraction 减法&lt;br /&gt;multiplication 乘法&lt;br /&gt;division 除法&lt;br /&gt;sum 和&lt;br /&gt;remainder 余&lt;br /&gt;product 积&lt;br /&gt;quotient 商&lt;br /&gt;2 plus 1 equals 3 二加一等于三&lt;br /&gt;4 minus 2 equals 2 四减二等于二&lt;br /&gt;4 multiplied by 5, 4 times 5 四乘以五&lt;br /&gt;addend 加数&lt;br /&gt;plus sign 加号&lt;br /&gt;minus sign 减号&lt;br /&gt;multiplicand 被乘数&lt;br /&gt;multiplier 乘数&lt;br /&gt;divisor 除数&lt;br /&gt;dividend 被除数&lt;br /&gt;decimal point 小数点&lt;br /&gt;nought point four 零点四&lt;br /&gt;fraction 分数&lt;br /&gt;ratio 比&lt;br /&gt;proportion 比例&lt;br /&gt;numerator 分子&lt;br /&gt;common denominator 公分母&lt;br /&gt;exponent 指数&lt;br /&gt;differential calculus 微分学&lt;br /&gt;integral calculus 积分&lt;br /&gt;slide rule 计算尺&lt;br /&gt;function 函数&lt;br /&gt;derivative 导数&lt;br /&gt;power 幂,乘方&lt;br /&gt;to raise to the power of five 使乘五次方&lt;br /&gt;x squared 某数的平方&lt;br /&gt;cube 三次方&lt;br /&gt;three cubed 三次方的&lt;br /&gt;to the fourth power, to the power of four 乘四次方&lt;br /&gt;square root 平方根&lt;br /&gt;cube root 立方根&lt;br /&gt;rule of three 比例法&lt;br /&gt;logarithm 对数&lt;br /&gt;logarithm table 对数表&lt;br /&gt;algebra 代数&lt;br /&gt;equation 等式,方程式 &lt;br /&gt;unknown 未知数&lt;br /&gt;simple equation 一次方程&lt;br /&gt;quadratic equation 二次方程&lt;br /&gt;cubic equation 三次方程 &lt;br /&gt;plane geometry 平面几何&lt;br /&gt;solid geometry 立体几何&lt;br /&gt;descriptive geometry 画法几何&lt;br /&gt;space 空间&lt;br /&gt;area 面积&lt;br /&gt;line 线&lt;br /&gt;point 点&lt;br /&gt;circle 圆&lt;br /&gt;centre 圆心 (美作:center)&lt;br /&gt;circumference 圆周&lt;br /&gt;arc 弧&lt;br /&gt;radius 半径&lt;br /&gt;diameter 直径&lt;br /&gt;degree 度&lt;br /&gt;parallel 平行线&lt;br /&gt;polygon 多边形&lt;br /&gt;equilateral triangle 等边三角形&lt;br /&gt;isosceles triangle 等腰三角形&lt;br /&gt;scalene triangle 不等边三角形&lt;br /&gt;right-angled triangle 直角三角形 &lt;br /&gt;base 底&lt;br /&gt;side 边&lt;br /&gt;hypothenuse 斜边,弦&lt;br /&gt;quadrilateral 四边形&lt;br /&gt;rectangle 矩形&lt;br /&gt;square 正方形&lt;br /&gt;trapezium 斜方形&lt;br /&gt;rhomb, rhombus 菱形&lt;br /&gt;ellipse 椭圆&lt;br /&gt;acute angle 锐角&lt;br /&gt;right angle 直角&lt;br /&gt;obtuse angle 钝角&lt;br /&gt;cube 立方体,六面体&lt;br /&gt;sphere 球体&lt;br /&gt;cylinder 圆柱体&lt;br /&gt;cone 锥体&lt;br /&gt;pyramid 棱锥&lt;br /&gt;prism 棱柱&lt;br /&gt;frustum 截锥&lt;br /&gt;opposite 相对的&lt;br /&gt;similar 相似的&lt;br /&gt;rectangular, right-angled 直角的&lt;br /&gt;equidistant 等距的&lt;br /&gt;infinity 无限大&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5931631434944515423-7657139321586534546?l=hxlich.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hxlich.blogspot.com/feeds/7657139321586534546/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5931631434944515423&amp;postID=7657139321586534546' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/7657139321586534546'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/7657139321586534546'/><link rel='alternate' type='text/html' href='http://hxlich.blogspot.com/2009/03/blog-post_964.html' title='数学术语'/><author><name>龙加</name><uri>http://www.blogger.com/profile/02424615920585053635</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_fbhMkQzafCA/SLobyz_37BI/AAAAAAAAACo/mrSZALNoSzo/S220/L605781519172GAZ.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5931631434944515423.post-306646979008530029</id><published>2009-03-31T10:37:00.001-07:00</published><updated>2009-03-31T10:37:41.869-07:00</updated><title type='text'>数学常用短语与从句</title><content type='html'>&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: simsun; font-size: 14px; line-height: 24px; "&gt;&lt;p style="line-height: 200%; text-align: justify; "&gt;常见的涉及运算的短语或句子 &lt;/p&gt;&lt;p style="line-height: 200%; "&gt;1. Differentiate both sides of the equation and we get...&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;   Integrate  both sides of the equation and we get...&lt;/p&gt;&lt;p style="line-height: 200%; text-align: justify; "&gt;2. Differentiating both sides of the equation , we get...&lt;/p&gt;&lt;p style="text-indent: 18pt; line-height: 200%; text-align: justify; "&gt;Integrating both sides of the equation , we get...&lt;/p&gt;&lt;p style="margin-left: 30pt; text-indent: -30pt; line-height: 200%; text-align: justify; "&gt;3.            Add (A) to (B) and we have…   &lt;/p&gt;&lt;p style="text-indent: 30pt; line-height: 200%; text-align: justify; "&gt;(其中(A) 、(B)为某些表达式，如不等式、等式、方程等，下同)&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;4．Subtract  (B)  from  (A)  and  we have …&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;5. Multiplying each term of the equation by …, we obtain…&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;6. Dividing the equation through by ..., we have ...&lt;/p&gt;&lt;p style="text-align: justify; "&gt;7.   (A) and (B)  together   give  …             &lt;/p&gt;&lt;p style="text-indent: 30pt; text-align: justify; "&gt;(A) and (B)  together   yield …     &lt;/p&gt;&lt;p style="text-indent: 30pt; text-align: justify; "&gt;(A) and (B)  together   imply …     &lt;/p&gt;&lt;p style="text-align: justify; "&gt;8.  Comparing (A) with (B), it is easy to see that …&lt;/p&gt;&lt;p style="text-align: justify; "&gt;9.  Substituting (A) into (B), we obtain …&lt;/p&gt;&lt;p style="text-align: justify; "&gt;10. Eliminating (the parameter) t from (A) and (B),we have …&lt;/p&gt;&lt;p style="text-align: justify; "&gt;11. By introducing a new variable …, we can then rewrite (A) as follows&lt;/p&gt;&lt;p style="text-align: justify; "&gt;    By introducing a new variable …, we can then rewrite (A) in the following form&lt;/p&gt;&lt;p style="text-align: justify; "&gt;12. By a simple calculation, we obtain from (A) …&lt;/p&gt;&lt;p align="center" style="line-height: 200%; text-align: center; "&gt; &lt;/p&gt;&lt;p style="line-height: 200%; text-align: justify; "&gt;定理证明过程中常见的短语和句子 &lt;/p&gt;&lt;p style="line-height: 200%; "&gt;1.下面的句型可用来表达“根据什么即可得到什么”的意思&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;According to definition , it follows … &lt;/p&gt;&lt;p style="line-height: 200%; "&gt;According to hypothesis , it follows … &lt;/p&gt;&lt;p style="line-height: 200%; "&gt;According to asssumptions, it follows … &lt;/p&gt;&lt;p style="line-height: 200%; "&gt;According to theorem(N), it follows … &lt;/p&gt;&lt;p style="line-height: 200%; "&gt;According to lemma (A) , it follows … &lt;/p&gt;&lt;p style="line-height: 200%; "&gt;According to corollary (B) , it follows … &lt;/p&gt;&lt;p style="line-height: 200%; "&gt;According to the remark , it follows … &lt;/p&gt;&lt;p style="line-height: 200%; "&gt;According to the fact that … , it follows … &lt;/p&gt;&lt;p style="line-height: 200%; "&gt;(可以把上面的“according to ”换成“ by” )&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;Since …, it follows …&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;　&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;2. 如果一个论断可以通过一些简单运算或简单推理而获得，由于这些运算或推理比较简单，读者可以自行推算，因而只需直接写出论断来，这时可用下面句型：&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;(1)  It is easy to see that …&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;     It is easy to show that …&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;     It is easy to prove that …&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;     It is easy to verify that …&lt;/p&gt;&lt;p style="text-indent: 24pt; line-height: 200%; "&gt; It is easy to check that …&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;(2)  It can easily be seen that …&lt;/p&gt;&lt;p style="text-indent: 30pt; line-height: 200%; "&gt;It can easily be shown that …&lt;/p&gt;&lt;p style="text-indent: 30pt; line-height: 200%; "&gt;It can easily be proved that …&lt;/p&gt;&lt;p style="text-indent: 30pt; line-height: 200%; "&gt;It can easily be verified that …&lt;/p&gt;&lt;p style="text-indent: 30pt; line-height: 200%; "&gt;It can easily be checked that … &lt;/p&gt;&lt;p style="line-height: 200%; "&gt; &lt;/p&gt;&lt;p style="line-height: 200%; "&gt;3.如果所要提及的结论比较显浅，或是众所周知，无需作进一步的证明，这时可用下面句型：&lt;/p&gt;&lt;p style="line-height: 200%; "&gt; (1)   It is clear that …&lt;/p&gt;&lt;p style="text-indent: 42pt; line-height: 200%; "&gt;It is obvious that …&lt;/p&gt;&lt;p style="text-indent: 42pt; line-height: 200%; "&gt;It is evident that …&lt;/p&gt;&lt;p style="text-indent: 42pt; line-height: 200%; "&gt;It is well-known that …&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;(2)   Clearly, …&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;      Obviously, …&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;      Evidently,…&lt;/p&gt;&lt;p style="line-height: 200%; "&gt; &lt;/p&gt;&lt;p style="line-height: 200%; "&gt;4.为了证明一个定理有时需要引进辅助函数，这时可用下面句型：&lt;/p&gt;&lt;p style="text-indent: 12pt; line-height: 200%; "&gt; Let us first define the function…&lt;/p&gt;&lt;p style="text-indent: 18pt; line-height: 200%; "&gt;Let us introduce a new function…&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;   Let us consider the function…&lt;/p&gt;&lt;p style="text-indent: 18pt; line-height: 200%; "&gt;Let us first  investigate the function…&lt;/p&gt;&lt;p style="text-indent: 18pt; line-height: 200%; "&gt;Let …&lt;/p&gt;&lt;p style="text-indent: 18pt; line-height: 200%; "&gt;Set…&lt;/p&gt;&lt;p style="text-indent: 18pt; line-height: 200%; "&gt;Define…&lt;/p&gt;&lt;p style="text-indent: 18pt; line-height: 200%; "&gt;Put…&lt;/p&gt;&lt;p style="text-indent: 18pt; line-height: 200%; "&gt;Consider…&lt;/p&gt;&lt;p style="line-height: 200%; "&gt; &lt;/p&gt;&lt;p style="margin-left: 17.7pt; text-indent: -17.7pt; line-height: 200%; "&gt;5. 在一个定理中，有几个结论需要证明，其中有些结论比较明显，可不用证明，仅需证明余下结论即可，这时可用下面句型：&lt;/p&gt;&lt;p style="line-height: 200%; "&gt; Since (A) and (B) are obvious, we need only prove (C).&lt;/p&gt;&lt;p style="text-indent: 6pt; line-height: 200%; "&gt;Since (A) and (B) are trivial, we need only prove (C).&lt;/p&gt;&lt;p style="line-height: 200%; "&gt; Since (A) and (B) are trivial, it suffices to prove (C)&lt;/p&gt;&lt;p style="line-height: 200%; "&gt; &lt;/p&gt;&lt;p style="margin-left: 17.7pt; text-indent: -17.7pt; line-height: 200%; "&gt;6. 为了证明一个定理，有时我们并不是直接去证明，而是证明一个新的论断，一旦新的论断得到证明，已给定理不难由此而得证，这时可用下面句型：&lt;/p&gt;&lt;p style="line-height: 200%; "&gt; 以下各句用于新的论断被证明之前：&lt;/p&gt;&lt;p style="text-indent: 12pt; line-height: 200%; "&gt;The theorem will be proved if we can show…&lt;/p&gt;&lt;p style="text-indent: 12pt; line-height: 200%; "&gt;The result will be proved if we can show…&lt;/p&gt;&lt;p style="text-indent: 12pt; line-height: 200%; "&gt;The theorem will be proved by showing that…&lt;/p&gt;&lt;p style="text-indent: 12pt; line-height: 200%; "&gt;If we can prove…then the theorem follows immediately.&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;以下各句用于新的论断被证明之后：&lt;/p&gt;&lt;p style="text-indent: 12pt; line-height: 200%; "&gt;The theorem is now a direct consequence of what we have proved.&lt;/p&gt;&lt;p style="text-indent: 12pt; line-height: 200%; "&gt;The theorem follows immediately from what we have proved.&lt;/p&gt;&lt;p style="text-indent: 12pt; line-height: 200%; "&gt;The theorem is now evident from what we have proved.&lt;/p&gt;&lt;p style="text-indent: 12pt; line-height: 200%; "&gt;It is evident to see that the theorem holds.&lt;/p&gt;&lt;p style="line-height: 200%; "&gt; &lt;/p&gt;&lt;p style="line-height: 200%; "&gt;7.在证明过程中，有时要用到一些早已学过的知识或技巧，这时可用下面句子，以提醒读者：&lt;/p&gt;&lt;p style="line-height: 200%; "&gt; Recall that…&lt;/p&gt;&lt;p style="text-indent: 6pt; line-height: 200%; "&gt;Notice that…&lt;/p&gt;&lt;p style="text-indent: 6pt; line-height: 200%; "&gt;Note that…&lt;/p&gt;&lt;p style="text-indent: 6pt; line-height: 200%; "&gt;Observe that…&lt;/p&gt;&lt;p style="text-indent: 6pt; line-height: 200%; "&gt;In order to prove the theorem, we need the knowledge of …&lt;/p&gt;&lt;p style="text-indent: 6pt; line-height: 200%; "&gt;In order to obtain the following equation, we need…&lt;/p&gt;&lt;p style="line-height: 200%; "&gt; &lt;/p&gt;&lt;p style="margin-left: 17.7pt; text-indent: -17.7pt; line-height: 200%; "&gt;8. 如果需要证明的定理的假设条件是一般条件，但是，只要定理在特殊条件下成立，就不难推出定理在一般条件下也成立，这时仅需要在特殊情况下去证明定理就够了，为此可用下面句型：&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;   Without loss of generality, we may consider…&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;   Without loss of generality, we may assume…&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;   Without loss of generality, we may prove the theorem in the case…&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;   It suffices to prove the theorem in the case…&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;   We need only consider the case…&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;   For simplicity, we may take…&lt;/p&gt;&lt;p style="line-height: 200%; "&gt; &lt;/p&gt;&lt;p style="line-height: 200%; "&gt;9. 如果待证的论断可用以前用过的相似的方法或步骤进行证明，则可用下面句型：&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;   This theorem can be proved in the same way as shown before.&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;   This statement can be proved in a similar way as shown before.&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;   This theorem can be proved by the same method as employed in the last section.&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;   This theorem can be completed by the method analogous to that used above.&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;   Using the same argument as in the proof of theorem N, we can easily carry out the proof of this theorem.&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;   We now proceed as in the proof of theorem N.&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;   We shall adopt the same procedure as in the proof of theorem N.&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;  &lt;/p&gt;&lt;p style="line-height: 200%; "&gt;10. 如果我们用的是反证法，则其开头及结尾可用下面句型：&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;    If the statement(or assertion, conclusion) were false(or not true, not right) then…&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;    If the assertion would not hold, then…&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;    This is contrary to…&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;    This contradicts the fact that…&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;    This leads to a contradiction.&lt;/p&gt;&lt;p style="line-height: 200%; "&gt; &lt;/p&gt;&lt;p style="line-height: 200%; "&gt;11. 表示定理已证毕或者把前面所证的总结为一结论&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;    We have thus proved the theorem.&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;    This completes the proof.&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;    The proof of the theorem is now completed.&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;    It is now obvious that the theorem holds.&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;    Thus we have derived that …&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;    Consequently, we infer that…&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;    Thus we conclude that…&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;    Thus we are led to the conclusion that …&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;    Thus we arrive at the conclusion that …&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;    Thus we can summarize what we have proved as the following theorem.&lt;/p&gt;&lt;p style="line-height: 200%; "&gt; &lt;/p&gt;&lt;p style="line-height: 200%; "&gt;12. 其它&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;     There exist(s)…such that…&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;     We claim…in fact…&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;     We are now in a position to…&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;     If otherwise…&lt;/p&gt;&lt;p style="line-height: 200%; "&gt;     Provided that…  &lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5931631434944515423-306646979008530029?l=hxlich.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hxlich.blogspot.com/feeds/306646979008530029/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5931631434944515423&amp;postID=306646979008530029' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/306646979008530029'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/306646979008530029'/><link rel='alternate' type='text/html' href='http://hxlich.blogspot.com/2009/03/blog-post_31.html' title='数学常用短语与从句'/><author><name>龙加</name><uri>http://www.blogger.com/profile/02424615920585053635</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_fbhMkQzafCA/SLobyz_37BI/AAAAAAAAACo/mrSZALNoSzo/S220/L605781519172GAZ.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5931631434944515423.post-1862544474233410946</id><published>2009-03-28T20:26:00.001-07:00</published><updated>2009-03-28T20:26:45.747-07:00</updated><title type='text'>Windows 系统服务命令(快捷命令)</title><content type='html'>&lt;span class="Apple-style-span" style="border-collapse: collapse; color: rgb(67, 65, 65); font-family: Helvetica; font-size: 14px; line-height: 22px; "&gt;开始菜单中的“运行”是通向程序的快捷途径，输入特定的命令后，即可快速的打开Windows的大部分程序，熟练的运用它，将给我们的操作带来诸多便捷。&lt;br /&gt;&lt;br /&gt;winver 检查Windows版本&lt;br /&gt;wmimgmt.msc 打开Windows管理体系结构(wmi)&lt;br /&gt;wupdmgr Windows更新程序&lt;br /&gt;wscript Windows脚本宿主设置&lt;br /&gt;write 写字板&lt;br /&gt;winmsd 系统信息&lt;br /&gt;wiaacmgr 扫描仪和照相机向导&lt;br /&gt;winchat xp自带局域网聊天&lt;br /&gt;mem.exe 显示内存使用情况&lt;br /&gt;msconfig.exe 系统配置实用程序&lt;br /&gt;mplayer2 简易widnows media player&lt;br /&gt;mspaint 画图板&lt;br /&gt;mstsc 远程桌面连接&lt;br /&gt;mplayer2 媒体播放机&lt;br /&gt;magnify 放大镜实用程序&lt;br /&gt;mmc 打开控制台&lt;br /&gt;mobsync 同步命令&lt;br /&gt;&lt;br /&gt;dxdiag 检查directx信息&lt;br /&gt;drwtsn32 系统医生&lt;br /&gt;devmgmt.msc 设备管理器&lt;br /&gt;dfrg.msc 磁盘碎片整理程序&lt;br /&gt;diskmgmt.msc 磁盘管理实用程序&lt;br /&gt;dcomcnfg 打开系统组件服务&lt;br /&gt;ddeshare 打开dde共享设置&lt;br /&gt;dvdplay dvd播放器&lt;br /&gt;&lt;br /&gt;net stop messenger 停止信使服务&lt;br /&gt;net start messenger 开始信使服务&lt;br /&gt;notepad 打开记事本&lt;br /&gt;nslookup 网络管理的工具向导&lt;br /&gt;ntbackup 系统备份和还原&lt;br /&gt;narrator 屏幕“讲述人”&lt;br /&gt;ntmsmgr.msc 移动存储管理器&lt;br /&gt;ntmsoprq.msc 移动存储管理员操作请求&lt;br /&gt;netstat -an （tc）命令检查接口&lt;br /&gt;&lt;br /&gt;syncapp 创建一个公文包&lt;br /&gt;sysedit 系统配置编辑器&lt;br /&gt;sigverif 文件签名验证程序&lt;br /&gt;sndrec32 录音机&lt;br /&gt;shrpubw 创建共享文件夹&lt;br /&gt;secpol.msc 本地安全策略&lt;br /&gt;syskey 系统加密，一旦加密就不能解开，保护Windows xp系统的双重密码&lt;br /&gt;services.msc 本地服务设置&lt;br /&gt;sndvol32 音量控制程序&lt;br /&gt;sfc.exe 系统文件检查器&lt;br /&gt;sfc /scannow windows文件保护 tsshutdn 60秒倒计时关机命令&lt;br /&gt;tourstart xp简介（安装完成后出现的漫游xp程序）&lt;br /&gt;taskmgr 任务管理器&lt;br /&gt;&lt;br /&gt;eventvwr 事件查看器&lt;br /&gt;eudcedit 造字程序&lt;br /&gt;explorer 打开资源管理器&lt;br /&gt;&lt;br /&gt;packager 对象包装程序&lt;br /&gt;perfmon.msc 计算机性能监测程序&lt;br /&gt;progman 程序管理器&lt;br /&gt;&lt;br /&gt;regedit.exe 注册表&lt;br /&gt;rsop.msc 组策略结果集&lt;br /&gt;regedt32 注册表编辑器&lt;br /&gt;rononce -p 15秒关机&lt;br /&gt;regsvr32 /u *.dll 停止dll文件运行&lt;br /&gt;regsvr32 /u zipfldr.dll 取消zip支持&lt;br /&gt;&lt;br /&gt;cmd.exe cmd命令提示符&lt;br /&gt;chkdsk.exe chkdsk磁盘检查&lt;br /&gt;certmgr.msc 证书管理实用程序&lt;br /&gt;calc 启动计算器&lt;br /&gt;charmap 启动字符映射表&lt;br /&gt;cliconfg sql server 客户端网络实用程序&lt;br /&gt;clipbrd 剪贴板查看器&lt;br /&gt;conf 启动netmeeting&lt;br /&gt;compmgmt.msc 计算机管理&lt;br /&gt;cleanmgr 垃圾整理&lt;br /&gt;ciadv.msc 索引服务程序&lt;br /&gt;&lt;br /&gt;osk 打开屏幕键盘&lt;br /&gt;odbcad32 odbc数据源管理器&lt;br /&gt;oobe/msoobe /a 检查xp是否激活&lt;br /&gt;lusrmgr.msc 本机用户和组&lt;br /&gt;logoff 注销命令&lt;br /&gt;&lt;br /&gt;iexpress 木马捆绑工具，系统自带&lt;br /&gt;&lt;br /&gt;nslookup ip地址侦测器&lt;br /&gt;&lt;br /&gt;fsmgmt.msc 共享文件夹管理器&lt;br /&gt;&lt;br /&gt;utilman 辅助工具管理器&lt;br /&gt;&lt;br /&gt;gpedit.msc 组策略&lt;br /&gt;&lt;br /&gt;以下为Windows操作系统的常用运行命令,执行这些命令,就能打开系统对应的相关实用程序,如果大家能基本利用,就能检查并修复系统的最基本的故障,除注销,关闭系统命令外,其它所有命令,大家不妨一试!!&lt;br /&gt;&lt;br /&gt;运行\输入CMD\输入 对应的相关实用程序:&lt;br /&gt;. 打开C:＼Documents and Settings＼XXX(当前登录Windows XP的用户名)&lt;br /&gt;.. 打开Windows XP所在的盘符下的Documents and Settings文件夹&lt;br /&gt;... 打开“我的电脑”选项。&lt;br /&gt;accwiz.exe 辅助工具向导&lt;br /&gt;actmovie.exe 直接显示安装工具&lt;br /&gt;append.exe 允许程序打开制定目录中的数据&lt;br /&gt;arp.exe 显示和更改计算机的IP与硬件物理地址的对应列表&lt;br /&gt;at.exe 计划运行任务&lt;br /&gt;atmadm.exe ATM调用管理器统计&lt;br /&gt;attrib.exe 显示和更改文件和文件夹属性&lt;br /&gt;autochk.exe 检测修复文件系统 (XP不可用)&lt;br /&gt;autoconv.exe 在启动过程中自动转化系统 (XP不可用)&lt;br /&gt;autofmt.exe 在启动过程中格式化进程 (XP不可用)&lt;br /&gt;autolfn.exe 使用长文件名格式 (XP不可用)&lt;br /&gt;arp.exe 显示和更改计算机的IP与硬件物理地址的对应&lt;br /&gt;calc.exe 计算器&lt;br /&gt;Bootvrfy.exe 通报启动成功&lt;br /&gt;cacls.exe 显示和编辑ACL&lt;br /&gt;cdplayer.exe CD播放器&lt;br /&gt;change.exe 与终端服务器相关的查询 (XP不可用)&lt;br /&gt;charmap.exe 字符映射表&lt;br /&gt;chglogon.exe 启动或停用会话记录 (XP不可用)&lt;br /&gt;chgport.exe 改变端口（终端服务） (XP不可用)&lt;br /&gt;chgusr.exe 改变用户（终端服务） (XP不可用)&lt;br /&gt;chkdsk.exe 磁盘检测程序&lt;br /&gt;chkntfs.exe NTFS磁盘检测程序&lt;br /&gt;cidaemon.exe 组成Ci文档服务&lt;br /&gt;cipher.exe 在NTFS上显示或改变加密的文件或目录&lt;br /&gt;cisvc.exe 打开索引内容&lt;br /&gt;ckcnv.exe 变换Cookie&lt;br /&gt;cleanmgr.exe 磁盘清理&lt;br /&gt;cliconfg.exe SQL客户网络工具&lt;br /&gt;clipbrd.exe 剪贴簿查看器&lt;br /&gt;clipsrv.exe 运行Clipboard服务&lt;br /&gt;clspack.exe 建立系统文件列表清单&lt;br /&gt;cluster.exe 显示域的集群 (XP不可用)&lt;br /&gt;cmd.exe 进2000\XP DOS&lt;br /&gt;cmdl32.exe 自动下载连接管理&lt;br /&gt;cmmgr32.exe 连接管理器&lt;br /&gt;cmmon32.exe 连接管理器监视&lt;br /&gt;cmstp.exe 连接管理器配置文件安装程序&lt;br /&gt;comclust.exe 集群&lt;br /&gt;comp.exe 比较两个文件和文件集的内容&lt;br /&gt;conf 启动netmeeting聊天工具&lt;br /&gt;control userpasswords2 XP密码管理.&lt;br /&gt;compmgmt.msc 计算机管理&lt;br /&gt;cprofile.exe 转换显示模式 (XP不可用)&lt;br /&gt;开始,运行,输入CMD\输入net config workstation计算机名 \完整的计算机名\用户名&lt;br /&gt;工作站处于活动状态（即网络描述） \软件版本（即软件版本号） \工作站域 工作站域的 DNS 名称&lt;br /&gt;登录域 \COM 打开时间超时（秒） \COM 发送量（字节） \COM 发送超时 (msec)&lt;br /&gt;CMD\输入net config workstation 更改可配置工作站服务设置。&lt;br /&gt;CMD\输入net config server 可以显示不能配置的下服务器计算机名 \服务器注释 \服务器版本（即软件版本号）&lt;br /&gt;服务器处于活动状态（即网络描述） \服务器处于隐藏状态（即 /hidden 设置）&lt;br /&gt;最大登录用户数（即可使用服务器共享资源的最大用户数）&lt;br /&gt;每个会话打开文件的最大数（即用户可在一个会话中打开服务器文件的最大数）&lt;br /&gt;空闲会话时间（最小值）&lt;br /&gt;chkdsk.exe 磁盘检查.&lt;br /&gt;Chkdsk /r 2000命令控制台中的Chkdsk /r命令检查修复系统文件&lt;br /&gt;cleanmgr 垃圾整理&lt;br /&gt;Clipbrd 剪贴板查看器&lt;br /&gt;C:boot.ini 打开启动菜单&lt;br /&gt;compact.exe 显示或改变NTFS分区上文件的压缩状态&lt;br /&gt;conime.exe IME控制台&lt;br /&gt;control.exe 控制面板&lt;br /&gt;convert.exe NTFS 转换文件系统到NTFS&lt;br /&gt;convlog.exe 转换IIS日志文件格式到NCSA格式&lt;br /&gt;cprofile.exe 转换显示模式&lt;br /&gt;cscript.exe 较本宿主版本&lt;br /&gt;csrss.exe 客户服务器Runtime进程 (XP不可用)&lt;br /&gt;csvde.exe 格式转换程序 (XP不可用)&lt;br /&gt;dcpromo 活动目录安装(XP不可用)&lt;br /&gt;drwtsn32 系统医生&lt;br /&gt;diskmgmt.msc 磁盘管理器(和PowerQuest PartitionMagic 8.0)&lt;br /&gt;dvdplay DVD 播放器&lt;br /&gt;devmgmt.msc 设备管理器(检查电脑硬件,驱动)&lt;br /&gt;dxdiag 检查DirectX信息&lt;br /&gt;dcomcnfg.exe DCOM配置属性 (控制台根目录)&lt;br /&gt;dcpromo.exe 安装向导 (XP不可用)&lt;br /&gt;ddeshare.exe DDE共享&lt;br /&gt;debug.exe 检查DEBUG&lt;br /&gt;dfrgfat.exe FAT分区磁盘碎片整理程序&lt;br /&gt;dfrgntfs.exe NTFS分区磁盘碎片整理程序 (XP不可用)&lt;br /&gt;dfs_cmd_.exe 配置DFS树 (XP不可用)&lt;br /&gt;dfsinit.exe 分布式文件系统初始化(XP不可用)&lt;br /&gt;dfssvc.exe 分布式文件系统服务器 (XP不可用)&lt;br /&gt;diantz.exe 制作CAB文件&lt;br /&gt;diskperf.exe 磁盘性能计数器&lt;br /&gt;dmremote.exe 磁盘管理服务的一部分 (XP不可用)&lt;br /&gt;doskey.exe 命令行创建宏&lt;br /&gt;dosx.exe DOS扩展&lt;br /&gt;dplaysvr.exe 直接运行帮助 (XP不可用)&lt;br /&gt;drwatson.exe 华生医生错误检测&lt;br /&gt;drwtsn32.exe 华生医生显示和配置管理&lt;br /&gt;dvdplay.exe DVD播放&lt;br /&gt;dxdiag.exe Direct-X诊断工具&lt;br /&gt;edlin.exe 命令行的文本编辑&lt;br /&gt;esentutl.exe MS数据库工具&lt;br /&gt;eudcedit.exe 造字程序&lt;br /&gt;eventvwr.exe 事件查看器&lt;br /&gt;exe2bin.exe 转换EXE文件到二进制&lt;br /&gt;expand.exe 解压缩&lt;br /&gt;extrac32.exe 解CAB工具&lt;br /&gt;fsmgmt.msc 共享文件夹&lt;br /&gt;fastopen.exe 快速访问在内存中的硬盘文件&lt;br /&gt;faxcover.exe 传真封面编辑&lt;br /&gt;faxqueue.exe 显示传真队列&lt;br /&gt;faxsend.exe 发送传真向导&lt;br /&gt;faxsvc.exe 启动传真服务&lt;br /&gt;fc.exe 比较两个文件的不同&lt;br /&gt;find.exe 查找文件中的文本行&lt;br /&gt;findstr.exe 查找文件中的行&lt;br /&gt;finger.exe 一个用户并显示出统计结果&lt;br /&gt;fixmapi.exe 修复MAPI文件&lt;br /&gt;flattemp.exe 允许或者禁用临时文件目录 (XP不可用)&lt;br /&gt;fontview.exe 显示字体文件中的字体&lt;br /&gt;forcedos.exe 强制文件在DOS模式下运行&lt;br /&gt;ftp.exe FTP下载&lt;br /&gt;gpedit.msc 组策略&lt;br /&gt;gdi.exe 图形界面驱动&lt;br /&gt;grpconv.exe 转换程序管理员组&lt;br /&gt;hostname.exe 显示机器的Hostname&lt;br /&gt;Internat 输入法图标&lt;br /&gt;iexpress 木马捆绑工具，系统自带&lt;br /&gt;ieshwiz.exe 自定义文件夹向导&lt;br /&gt;iexpress.exe iexpress安装包&lt;br /&gt;iisreset.exe 重启IIS服务(未安装IIS,不可用)&lt;br /&gt;internat.exe 键盘语言指示器 (XP不可用)&lt;br /&gt;ipconfig.exe 查看IP配置&lt;br /&gt;ipsecmon.exe IP安全监视器&lt;br /&gt;ipxroute.exe IPX路由和源路由控制程序&lt;br /&gt;irftp.exe 无线连接&lt;br /&gt;ismserv.exe 安装或者删除Service Control Manager中的服务&lt;br /&gt;jdbgmgr.exe Java4的调试器&lt;br /&gt;jetconv.exe 转换Jet Engine数据库 (XP不可用)&lt;br /&gt;jetpack.exe 压缩Jet数据库 (XP不可用)&lt;br /&gt;jview.exe Java的命令行装载者&lt;br /&gt;label.exe 改变驱动器的卷标&lt;br /&gt;lcwiz.exe 许可证向导 (XP不可用)&lt;br /&gt;ldifde.exe LDIF目录交换命令行管理 (XP不可用)&lt;br /&gt;licmgr.exe 终端服务许可协议管理 (XP不可用)&lt;br /&gt;lights.exe 显示连接状况 (XP不可用)&lt;br /&gt;llsmgr.exe Windows 2000 许可协议管理 (XP不可用)&lt;br /&gt;llssrv.exe 启动许可协议服务器 (XP不可用)&lt;br /&gt;locator.exe RPC Locator 远程定位&lt;br /&gt;lodctr.exe 调用性能计数&lt;br /&gt;logoff.exe 注销当前用户&lt;br /&gt;lpq.exe 显示远端的LPD打印队列的状态，显示被送到基于Unix的服务器的打印任务&lt;br /&gt;lpr.exe 用于Unix客户打印机将打印任务发送给连接了打印设备的NT的打印机服务器。&lt;br /&gt;lsass.exe 运行LSA和Server的DLL&lt;br /&gt;lserver.exe 指定默认Server新的DNS域 (XP不可用)&lt;br /&gt;lusrmgr.msc 本地账户管理&lt;br /&gt;mmc 控制台&lt;br /&gt;mplayer2 播放器&lt;br /&gt;macfile.exe 管理MACFILES (XP不可用)&lt;br /&gt;magnify.exe 放大镜&lt;br /&gt;makecab.exe 制作CAB文件&lt;br /&gt;mem.exe 显示内存状态&lt;br /&gt;migpwd.exe 迁移密码&lt;br /&gt;mmc.exe 控制台&lt;br /&gt;mnmsrvc.exe 远程桌面共享&lt;br /&gt;mobsync.exe 同步目录管理器&lt;br /&gt;mountvol.exe 创建、删除或列出卷的装入点。&lt;br /&gt;mplay32.exe Media Player 媒体播放器&lt;br /&gt;mpnotify.exe 通知应用程序&lt;br /&gt;mqbkup.exe 信息队列备份和恢复工具&lt;br /&gt;mqmig.exe MSMQ Migration Utility 信息队列迁移工具&lt;br /&gt;mrinfo.exe 使用SNMP多点传送路由&lt;br /&gt;mscdexnt.exe 安装MSCD&lt;br /&gt;msdtc.exe 动态事务处理控制台&lt;br /&gt;msg.exe 发送消息到本地或远程客户&lt;br /&gt;mshta.exe HTML应用程序主机&lt;br /&gt;msiexec.exe 开始Windows安装程序&lt;br /&gt;mspaint.exe 打开画图板&lt;br /&gt;mstask.exe 任务计划表程序&lt;br /&gt;mstinit.exe 任务计划表安装&lt;br /&gt;Msconfig.exe 系统配置实用程序 (配置启动选项,服务项)&lt;br /&gt;mem.exe 显示内存使用情况&lt;br /&gt;mspaint 画图板&lt;br /&gt;Net Stop Messenger 停止信使服务&lt;br /&gt;Net Start Messenger 恢复信使服务&lt;br /&gt;nslookup 网络管理的工具&lt;br /&gt;Nslookup IP 地址侦测器&lt;br /&gt;ntbackup 系统备份和还原&lt;br /&gt;nbtstat.exe 使用 NBT（TCP/IP 上的 NetBIOS）显示协议统计和当前 TCP/IP 连接。&lt;br /&gt;nddeapir.exe NDDE API服务器端&lt;br /&gt;netsh.exe 用于配置和监控 Windows 2000 命令行脚本接口(XP不可用)&lt;br /&gt;netstat.exe 显示协议统计和当前的 TCP/IP 网络连接。&lt;br /&gt;nlsfunc.exe 加载特定国家的信息。Windows 2000 和 MS-DOS 子系统不使用该命令接受该命令只是为了与 MS-DOS 文件兼容。&lt;br /&gt;notepad.exe 打开记事本&lt;br /&gt;nslookup.exe 该诊断工具显示来自域名系统 (DNS) 名称服务器的信息。&lt;br /&gt;ntbackup.exe 备份和故障修复工具&lt;br /&gt;ntfrs.exe NT文件复制服务 (XP不可用)&lt;br /&gt;ntvdm.exe 模拟16位Windows环境&lt;br /&gt;nw16.exe NetWare转向器&lt;br /&gt;nwscript.exe 运行Netware脚本&lt;br /&gt;odbcad32.exe 32位ODBC数据源管理 (驱动程序管理)&lt;br /&gt;odbcconf.exe 命令行配置ODBC驱动和数据源&lt;br /&gt;packager.exe 对象包装程序&lt;br /&gt;pathping.exe 包含Ping和Tracert的程序&lt;br /&gt;pentnt.exe 检查Pentium的浮点错误&lt;br /&gt;perfmon.exe 系统性能监视器&lt;br /&gt;ping.exe 验证与远程计算机的连接&lt;br /&gt;posix.exe 用于兼容Unix&lt;br /&gt;print.exe 打印文本文件或显示打印队列的内容。&lt;br /&gt;progman.exe 程序管理器&lt;br /&gt;psxss.exe Posix子系统应用程序&lt;br /&gt;qappsrv.exe 在网络上显示终端服务器可用的程序&lt;br /&gt;qprocess.exe 在本地或远程显示进程的信息（需终端服务）&lt;br /&gt;query.exe 查询进程和对话 (XP不可用)&lt;br /&gt;quser.exe 显示用户登陆的信息（需终端服务）&lt;br /&gt;qwinsta.exe 显示终端服务的信息&lt;br /&gt;rononce -p 15秒关机&lt;br /&gt;rasAdmin 远程访问服务.&lt;br /&gt;regedit.exe 注册表编辑器&lt;br /&gt;rasadmin.exe 启动远程访问服务 (XP不可用)&lt;br /&gt;rasautou.exe 建立一个RAS连接&lt;br /&gt;rasdial.exe 宽带,拨号连接&lt;br /&gt;ras.exe 运行RAS连接 (XP不可用)&lt;br /&gt;rcp.exe 计算机和运行远程外壳端口监控程序 rshd 的系统之间复制文件&lt;br /&gt;rdpclip.exe 终端和本地复制和粘贴文件&lt;br /&gt;recover.exe 从坏的或有缺陷的磁盘中恢复可读取的信息。&lt;br /&gt;redir.exe 运行重定向服务&lt;br /&gt;regedt32.exe 32位注册服务&lt;br /&gt;regini.exe 用脚本修改注册许可&lt;br /&gt;regwiz.exe 注册向导&lt;br /&gt;replace.exe 用源目录中的同名文件替换目标目录中的文件。&lt;br /&gt;rexec.exe rexec 命令在执行指定命令前，验证远程计算机上的用户名，只有安装了 TCP/IP 协议后才可以使用该命令。&lt;br /&gt;risetup.exe 运行远程安装向导服务 (XP不可用)&lt;br /&gt;route.exe 控制网络路由表&lt;br /&gt;rsh.exe 在运行 RSH 服务的远程计算机上运行命令&lt;br /&gt;rsnotify.exe 远程存储通知回显&lt;br /&gt;runas.exe 允许用户用其他权限运行指定的工具和程序&lt;br /&gt;rundll32.exe 启动32位DLL程序&lt;br /&gt;rwinsta.exe 重置会话子系统硬件和软件到最初的值&lt;br /&gt;Sndvol32 音量控制程序&lt;br /&gt;sfc.exe 或CMD\ sfc.exe 回车 系统文件检查器&lt;br /&gt;services.msc 网络连接服务&lt;br /&gt;syskey 系统加密，(一旦加密就不能解开，保护windows xp系统的双重密码wupdmgr WIDNOWS UPDATE)&lt;br /&gt;SCANREG/RESTORE 命令恢复最近的注册表&lt;br /&gt;secedit.exe 自动化安全性配置管理&lt;br /&gt;services.exe 控制所有服务&lt;br /&gt;sethc.exe 设置高对比&lt;br /&gt;setver.exe 设置 MS-DOS 子系统向程序报告的 MS-DOS 版本号&lt;br /&gt;sfc.exe 系统文件检查&lt;br /&gt;shadow.exe 监控另外一台中端服务器会话&lt;br /&gt;shrpubw.exe 建立和共享文件夹&lt;br /&gt;sigverif.exe 文件签名验证&lt;br /&gt;smlogsvc.exe 性能日志和警报 (XP不可用)&lt;br /&gt;sndrec32.exe 录音机&lt;br /&gt;sndvol32.exe 显示声音控制信息&lt;br /&gt;snmp.exe 简单网络管理协议 (XP不可用)&lt;br /&gt;snmptrap.exe SNMP工具 (XP不可用)&lt;br /&gt;srvmgr.exe 服务器管理器 (XP不可用)&lt;br /&gt;subst.exe 将路径与驱动器盘符关联&lt;br /&gt;sysedit.exe 系统配置编辑器&lt;br /&gt;syskey.exe NT账号数据库加密工具&lt;br /&gt;sysocmgr.exe &gt; Windows 安装程序&lt;br /&gt;systray.exe 在低权限运行systray&lt;br /&gt;taskmgr 任务管理器&lt;br /&gt;tasklist /svc(CMD)了解每个SVCHOST进程到底提供了多少系统服务(2000\98不可用)&lt;br /&gt;tlist -S(CMD) 了解每个SVCHOST进程到底提供了多少系统服务(&lt;br /&gt;taskman.exe 任务管理器 (XP不可用)&lt;br /&gt;taskmgr.exe 任务管理器&lt;br /&gt;tcmsetup.exe 电话服务客户安装&lt;br /&gt;tcpsvcs.exe TCP服务&lt;br /&gt;termsrv.exe 终端服务&lt;br /&gt;tftp.exe 将文件传输到正在运行 TFTP 服务的远程计算机或从正在运行 TFTP 服务的远程计算机传输文件&lt;br /&gt;themes.exe 桌面主题 (XP不可用)&lt;br /&gt;tlntadmn.exe Administrator Telnet服务管理&lt;br /&gt;tlntsess.exe 显示目前的Telnet会话&lt;br /&gt;tlntsvr.exe 开始Telnet服务&lt;br /&gt;tracert.exe 诊断实用程序将包含不同生存时间 (TTL) 值的 Internet 控制消息协议 (ICMP) 回显数据包发送到目标，以决定到达目标采用的路由&lt;br /&gt;tsadmin.exe Administrator 终端服务管理器 (XP不可用)&lt;br /&gt;tscon.exe 粘贴用户会话到终端对话&lt;br /&gt;tsdiscon.exe 断开终端服务的用户&lt;br /&gt;tskill.exe 杀掉终端服务&lt;br /&gt;tsprof.exe 用终端服务得出查询结果&lt;br /&gt;tsshutdn.exe 关闭系统&lt;br /&gt;unlodctr.exe 性能监视器的一部分&lt;br /&gt;upg351db.exe 升级Jet数据库 (XP不可用)&lt;br /&gt;ups.exe UPS service UPS服务&lt;br /&gt;user.exe Windows核心服务&lt;br /&gt;userinit.exe 打开我的文档&lt;br /&gt;usrmgr.exe 域用户管理器&lt;br /&gt;utilman.exe 指定2000启动时自动打开那台机器&lt;br /&gt;vwipxspx.exe 调用IPX/SPX VDM&lt;br /&gt;w32tm.exe 时间服务器&lt;br /&gt;wextract.exe 解压缩Windows文件&lt;br /&gt;winchat.exe 打开Windows聊天工具&lt;br /&gt;winhlp32.exe 运行帮助系统&lt;br /&gt;winmsd.exe 查看系统信息&lt;br /&gt;winver.exe 显示Windows版本&lt;br /&gt;wizmgr.exe Windows管理向导 (XP不可用)&lt;br /&gt;wjview.exe Java 命令行调用Java&lt;br /&gt;write.exe 打开写字板&lt;br /&gt;wscript.exe 脚本工具&lt;br /&gt;wupdmgr.exe Windows update 运行Windows update升级向导&lt;br /&gt;winver 检查Windows版本&lt;br /&gt;Win98系统工具&lt;br /&gt;开始,运行,输入Msconfig 系统配置实用工具 配置启动选项，包括config.sys、autoexec.bat、win.ini、system.ini和注册表及程序菜单中的启动项。并可设置是否故障启动。&lt;br /&gt;开始,运行,输入Regedit 注册表修改工具 注册表编辑器，如果没有把握不要随意修改注册表！&lt;br /&gt;开始,运行,输入Regsvr32 dll注册工具 当提示找不到dll文件时，可用此来注册该动态连接库。&lt;br /&gt;开始,运行,输入Regwiz 注册向导 用于注册。校验系统文件，并可恢复系统文件。&lt;br /&gt;如果启动时出现类似*.vxd文件错误，可用此恢复该vxd文件。&lt;br /&gt;开始,运行,输入Scandskw 磁盘扫描程序,用于扫描修复磁盘。如果磁盘或文件出现错误，可用来初步修复。&lt;br /&gt;开始,运行,输入DxDiag DirectX诊断工具可用于检测DirectX运行是否正常。&lt;br /&gt;开始,运行,输入NETSCAPE&lt;br /&gt;&lt;br /&gt;ESC：清除当前命令行；&lt;br /&gt;F7：显示命令历史记录，以图形列表窗的形式给出所有曾经输入的命令，并可用上下箭头键选择再次执行该命令。&lt;br /&gt;F8：搜索命令的历史记录，循环显示所有曾经输入的命令，直到按下回车键为止；&lt;br /&gt;F9：按编号选择命令，以图形对话框方式要求您输入命令所对应的编号(从0开始)，并将该命令显示在屏幕上；&lt;br /&gt;Ctrl+H：删除光标左边的一个字符；&lt;br /&gt;Ctrl+C Ctrl+Break，强行中止命令执行；&lt;br /&gt;Ctrl+M：表示回车确认键；&lt;br /&gt;Alt+F7：清除所有曾经输入的命令历史记录；&lt;br /&gt;Alt+PrintScreen：截取屏幕上当前命令窗里的内容。&lt;br /&gt;病毒破坏了系统文件，请使用杀毒软件查杀病毒，然后利用Windows 2000提供的“命令控制台”中的Chkdsk /r命令检查修复系统文件即可。&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5931631434944515423-1862544474233410946?l=hxlich.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hxlich.blogspot.com/feeds/1862544474233410946/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5931631434944515423&amp;postID=1862544474233410946' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/1862544474233410946'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/1862544474233410946'/><link rel='alternate' type='text/html' href='http://hxlich.blogspot.com/2009/03/windows.html' title='Windows 系统服务命令(快捷命令)'/><author><name>龙加</name><uri>http://www.blogger.com/profile/02424615920585053635</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_fbhMkQzafCA/SLobyz_37BI/AAAAAAAAACo/mrSZALNoSzo/S220/L605781519172GAZ.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5931631434944515423.post-2224823366008828083</id><published>2009-03-28T20:22:00.003-07:00</published><updated>2009-03-28T20:22:56.239-07:00</updated><title type='text'>Windows XP硬件优化全功略</title><content type='html'>&lt;span class="Apple-style-span" style="border-collapse: collapse; color: rgb(0, 0, 128); font-family: Helvetica; font-size: 18px; "&gt;相信大家都想令自己的Windows XP启动速度更快，工作更稳定，那么如何做呢，下面我们就来简单介绍一下如何从优化Windows XP。 &lt;br /&gt;&lt;br /&gt;一、缩短启动时间 &lt;br /&gt;&lt;br /&gt;　　推荐大家使用微软发布的Bootvis软件，它能够对系统进行自动优化，以缩短启动所用的时间，在“Trace”中选择“Optimize System”然后重新启动即可；另外也可以通过Windows XP内建的MsConfig设置程序减少启动时所加载的程序来缩短启动时间，只在运行中输入启动“msconfig”再通过“Startup”进行相关设置即可。 &lt;br /&gt;&lt;br /&gt;1)、Bootvis &lt;br /&gt;&lt;br /&gt;2)、msconfig &lt;br /&gt;&lt;br /&gt;二、设置处理器二级缓存容量 &lt;br /&gt;&lt;br /&gt;　　Windows XP无法自动检测处理器的二级缓存容量，需要我们自己在注册表中手动设置，首先打开注册表(运行中输入“Regedit”)，再打开: &lt;br /&gt;&lt;br /&gt;HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Memory Management\\ &lt;br /&gt;&lt;br /&gt;　　选择“SecondLevelDataCache”，根据自己所用的处理器设置即可，例如PIII Coppermine/P4 Willamette是“256”，Athlon XP是“384”，P4 Northwood是“512”。 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;三、安装UPnP安全补丁程序 &lt;br /&gt;&lt;br /&gt;　　微软最新发布了针对Windows XP的UPnP安全补丁程序，该程序修正了WinXP中存在的安全漏洞，大家可以通过下面的地址更新： &lt;br /&gt;Windows XP Home &amp;amp; Pro UPnP Patch &lt;br /&gt;&lt;br /&gt;四、关闭系统还原及休眠支持 &lt;br /&gt;&lt;br /&gt;　　虽然这两项功能也并非完全没有任何作用，但考虑到需要需要占用很大的硬盘空间，所以最好把它们关闭；首先鼠标右健单击桌面上的“我的电脑”，选择“属性”，找到“系统还原(System Restore)”，在“Turn off System Restore on all drives”前打上勾就可以了。 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;休眠支持只需要通过控制面板 -&gt; 电源选项 -&gt; 休眠(Hibernate)，把“Enable Hibernate”前面的勾去掉就可以了，这样一来可以空出512MB的硬盘空间。 &lt;br /&gt;&lt;br /&gt;五、释放QoS Packet所占用的20%网络带宽 &lt;br /&gt;&lt;br /&gt;　　Windows XP内建的QoS Packet需要占用20%的网络带宽，还好我们可以通过“Group Policy”来关闭，具体步骤如下: 在运行中输入“gpedit.msc”，启动该程序后，选择Computer Configuration -&gt; Administrative Templates -&gt; Network -&gt; QoS Packet Scheduler，选择右边的“Limit reservable bandwidth”，设置为“Enabled”，再把“Bandwidth Limit”设置为“0”。 &lt;br /&gt;&lt;br /&gt;六、禁止虚拟内存(页面交换文件)执行 &lt;br /&gt;&lt;br /&gt;　　本方法最好在配备256MB以上内存(推荐384MB或512MB)的系统上使用，具体步骤为，启动注册表编辑器，然后找到： &lt;br /&gt;&lt;br /&gt;HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Memory Management\\ &lt;br /&gt;&lt;br /&gt;　　选择“DisablePagingExecutive(禁止页面文件执行)”，设置为“1”，这样可以从一定程度上改善内存的性能，提高系统的运行速度，毕竟内存比硬盘快得多。 &lt;br /&gt;&lt;br /&gt;七、删除Windows XP中不需要的组件 &lt;br /&gt;&lt;br /&gt;1)、删除系统文件备份，执行sfc.exe /purgecache &lt;br /&gt;&lt;br /&gt;2)、删除驱动备份，删除WINDOWS(XP安装目录)\\driver cache\\i386目录下的Driver.cab文件 &lt;br /&gt;&lt;br /&gt;3)、删除DLL备份文件，目录为WINDOWS(XP安装目录)\\system32\\dllcache, &lt;br /&gt;&lt;br /&gt;4)、删除WINDOWS(XP安装目录)\\ime下不用的输入法 &lt;br /&gt;&lt;br /&gt;八、验证Windows XP是否已激活 &lt;br /&gt;&lt;br /&gt;　　在运行中输入“oobe/msoobe /a”；版本号可以通过WINDOWS(XP安装目录)system32/NTOSKRNL.EXE，鼠标右键 -&gt; 选内容查看即可。 &lt;br /&gt;&lt;br /&gt;九、设置IRQ优先权 &lt;br /&gt;&lt;br /&gt;　　从HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\PriorityControl，在右边新建名为“IRQ#Priority”的DWORD键值，其中“#”为相关设备的IRQ号，例如“8”，然后把键值设置为“1”即可；如果遇到IRQ问题，可以试试这个方法。 &lt;br /&gt;&lt;br /&gt;十、加快关机速度 &lt;br /&gt;&lt;br /&gt;　　与启动一样，Windows XP的关机速度也是一样的慢，要加快关机速度，首先我们先要通过注册表开启WinXP的自动结束任务功能(AutoEndTasks)，具体步骤为: 找到HKEY_CURRENT_USER\\Control Panel\\Desktop，把AutoEndTasks的键值设置为1即可。 &lt;br /&gt;&lt;br /&gt;　　然后再修改“HungAppTimeout”为“4000(或更小)”(预设为50000)，该键值同样也在HKEY_CURRENT_USER\\Control Panel\\Desktop目录下；最后一步再找到HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\，同样把WaitToKillServiceTimeout设置为“4000”；通过这样设置后的关机速度明显快了一些， &lt;br /&gt;&lt;br /&gt;十一、完全关闭Windows XP文件保护功能 &lt;br /&gt;&lt;br /&gt;　　从注册表中找到HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Winlogon，修改“SFCDisable”键值为“FFFFFF9D”，如果需要重新启用该功能，重新设置为“0”就可以了。 &lt;br /&gt;&lt;br /&gt;十二、启动硬盘/光驱DMA模式 &lt;br /&gt;&lt;br /&gt;　　打开系统属性 -&gt; Hardware(硬件) -&gt; Device Manager(设备管理器) -&gt; IDE ATA/ATAPI controllers，选择“Primary IDE Channel”或“Secondary IDE Channel”，检查DMA模式是否已启动，一般来说如果设备支持，系统就会自动打开DMA功能；另外驱动器现在所用的传输模式也可以在这里看到。 &lt;br /&gt;&lt;br /&gt;十三、禁用Dr. Watson调试程序 &lt;br /&gt;&lt;br /&gt;　　在运行中输入“drwtsn32”，然后把除了“(Dump All Thread Contexts)转储全部线程上下文”之外的全都去掉，否则一旦有程序出错，硬盘会响很久，而且会占用很多硬盘空间。〕&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5931631434944515423-2224823366008828083?l=hxlich.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hxlich.blogspot.com/feeds/2224823366008828083/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5931631434944515423&amp;postID=2224823366008828083' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/2224823366008828083'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/2224823366008828083'/><link rel='alternate' type='text/html' href='http://hxlich.blogspot.com/2009/03/windows-xp.html' title='Windows XP硬件优化全功略'/><author><name>龙加</name><uri>http://www.blogger.com/profile/02424615920585053635</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_fbhMkQzafCA/SLobyz_37BI/AAAAAAAAACo/mrSZALNoSzo/S220/L605781519172GAZ.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5931631434944515423.post-171749432785218360</id><published>2009-03-28T20:22:00.001-07:00</published><updated>2009-03-28T20:22:15.479-07:00</updated><title type='text'>运行里输入的命令大全</title><content type='html'>&lt;span class="Apple-style-span" style="border-collapse: collapse; color: rgb(67, 65, 65); font-family: Helvetica; font-size: 12px; line-height: 19px; "&gt;&lt;h2 style="word-wrap: break-word; margin-top: 0px; margin-right: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: normal; font-size: 1.17em; margin-bottom: 0.5em; "&gt;&lt;span class="Apple-style-span" style="color: rgb(0, 0, 255); font-size: 18px; font-weight: normal; "&gt;Nslookup-------IP地址侦测器  &lt;/span&gt;&lt;br /&gt;&lt;/h2&gt;&lt;div id="postmessage_2401515" class="t_msgfont" style="word-wrap: break-word; font-size: 14px; line-height: 1.6em; "&gt;&lt;span style="word-wrap: break-word; line-height: normal; font-size:130%;"&gt;&lt;span style="word-wrap: break-word; line-height: normal; color:Blue;"&gt;explorer-------打开资源管理器  &lt;br /&gt;logoff---------注销命令  &lt;br /&gt;tsshutdn-------60秒倒计时关机命令  &lt;br /&gt;lusrmgr.msc----本机用户和组  &lt;br /&gt;services.msc---本地服务设置  &lt;br /&gt;oobe/msoobe /a----检查XP是否激活  &lt;br /&gt;notepad--------打开记事本  &lt;br /&gt;cleanmgr-------垃圾整理  &lt;br /&gt;net start messenger----开始信使服务  &lt;br /&gt;compmgmt.msc---计算机管理  &lt;br /&gt;net stop messenger-----停止信使服务  &lt;br /&gt;conf-----------启动netmeeting  &lt;br /&gt;dvdplay--------DVD播放器  &lt;br /&gt;charmap--------启动字符映射表  &lt;br /&gt;diskmgmt.msc---磁盘管理实用程序  &lt;br /&gt;calc-----------启动计算器  &lt;br /&gt;dfrg.msc-------磁盘碎片整理程序  &lt;br /&gt;chkdsk.exe-----Chkdsk磁盘检查  &lt;br /&gt;devmgmt.msc--- 设备管理器  &lt;br /&gt;regsvr32 /u *.dll----停止dll文件运行  &lt;br /&gt;drwtsn32------ 系统医生  &lt;br /&gt;rononce -p ----15秒关机  &lt;br /&gt;dxdiag---------检查DirectX信息  &lt;br /&gt;regedt32-------注册表编辑器  &lt;br /&gt;Msconfig.exe---系统配置实用程序  &lt;br /&gt;rsop.msc-------组策略结果集  &lt;br /&gt;mem.exe--------显示内存使用情况  &lt;br /&gt;regedit.exe----注册表  &lt;br /&gt;winchat--------XP自带局域网聊天  &lt;br /&gt;progman--------程序管理器  &lt;br /&gt;winmsd---------系统信息  &lt;br /&gt;perfmon.msc----计算机性能监测程序  &lt;br /&gt;winver---------检查Windows版本  &lt;br /&gt;sfc /scannow-----扫描错误并复原  &lt;br /&gt;taskmgr-----任务管理器（2000／xp／2003  &lt;br /&gt;winver---------检查Windows版本  &lt;br /&gt;wmimgmt.msc----打开windows管理体系结构(WMI)  &lt;br /&gt;wupdmgr--------windows更新程序  &lt;br /&gt;wscript--------windows脚本宿主设置  &lt;br /&gt;write----------写字板  &lt;br /&gt;winmsd---------系统信息  &lt;br /&gt;wiaacmgr-------扫描仪和照相机向导  &lt;br /&gt;winchat--------XP自带局域网聊天  &lt;br /&gt;mem.exe--------显示内存使用情况  &lt;br /&gt;Msconfig.exe---系统配置实用程序  &lt;br /&gt;mplayer2-------简易widnows media player  &lt;br /&gt;mspaint--------画图板  &lt;br /&gt;mstsc----------远程桌面连接  &lt;br /&gt;mplayer2-------媒体播放机  &lt;br /&gt;magnify--------放大镜实用程序  &lt;br /&gt;mmc------------打开控制台  &lt;br /&gt;mobsync--------同步命令  &lt;br /&gt;dxdiag---------检查DirectX信息  &lt;br /&gt;drwtsn32------ 系统医生  &lt;br /&gt;devmgmt.msc--- 设备管理器  &lt;br /&gt;dfrg.msc-------磁盘碎片整理程序  &lt;br /&gt;diskmgmt.msc---磁盘管理实用程序  &lt;br /&gt;dcomcnfg-------打开系统组件服务  &lt;br /&gt;ddeshare-------打开DDE共享设置  &lt;br /&gt;dvdplay--------DVD播放器  &lt;br /&gt;net stop messenger-----停止信使服务  &lt;br /&gt;net start messenger----开始信使服务  &lt;br /&gt;notepad--------打开记事本  &lt;br /&gt;nslookup-------网络管理的工具向导  &lt;br /&gt;ntbackup-------系统备份和还原  &lt;br /&gt;narrator-------屏幕“讲述人”  &lt;br /&gt;ntmsmgr.msc----移动存储管理器  &lt;br /&gt;ntmsoprq.msc---移动存储管理员操作请求  &lt;br /&gt;netstat -an----(TC)命令检查接口  &lt;br /&gt;syncapp--------创建一个公文包  &lt;br /&gt;sysedit--------系统配置编辑器  &lt;br /&gt;sigverif-------文件签名验证程序  &lt;br /&gt;sndrec32-------录音机  &lt;br /&gt;shrpubw--------创建共享文件夹  &lt;br /&gt;secpol.msc-----本地安全策略  &lt;br /&gt;syskey---------系统加密，一旦加密就不能解开，保护windows xp系统的双重密码  &lt;br /&gt;services.msc---本地服务设置  &lt;br /&gt;Sndvol32-------音量控制程序  &lt;br /&gt;sfc.exe--------系统文件检查器  &lt;br /&gt;sfc /scannow---windows文件保护  &lt;br /&gt;tsshutdn-------60秒倒计时关机命令  &lt;br /&gt;tourstart------xp简介（安装完成后出现的漫游xp程序）  &lt;br /&gt;taskmgr--------任务管理器  &lt;br /&gt;eventvwr-------事件查看器  &lt;br /&gt;eudcedit-------造字程序  &lt;br /&gt;explorer-------打开资源管理器  &lt;br /&gt;packager-------对象包装程序  &lt;br /&gt;perfmon.msc----计算机性能监测程序  &lt;br /&gt;progman--------程序管理器  &lt;br /&gt;regedit.exe----注册表  &lt;br /&gt;rsop.msc-------组策略结果集  &lt;br /&gt;regedt32-------注册表编辑器  &lt;br /&gt;rononce -p ----15秒关机  &lt;br /&gt;regsvr32 /u *.dll----停止dll文件运行  &lt;br /&gt;regsvr32 /u zipfldr.dll------取消ZIP支持  &lt;br /&gt;cmd.exe--------CMD命令提示符  &lt;br /&gt;chkdsk.exe-----Chkdsk磁盘检查  &lt;br /&gt;certmgr.msc----证书管理实用程序  &lt;br /&gt;calc-----------启动计算器  &lt;br /&gt;charmap--------启动字符映射表  &lt;br /&gt;cliconfg-------SQL SERVER 客户端网络实用程序  &lt;br /&gt;Clipbrd--------剪贴板查看器  &lt;br /&gt;conf-----------启动netmeeting  &lt;br /&gt;compmgmt.msc---计算机管理  &lt;br /&gt;cleanmgr-------垃圾整理  &lt;br /&gt;ciadv.msc------索引服务程序  &lt;br /&gt;osk------------打开屏幕键盘  &lt;br /&gt;odbcad32-------ODBC数据源管理器  &lt;br /&gt;oobe/msoobe /a----检查XP是否激活  &lt;br /&gt;lusrmgr.msc----本机用户和组  &lt;br /&gt;logoff---------注销命令  &lt;br /&gt;iexpress-------木马捆绑工具，系统自带  &lt;br /&gt;Nslookup-------IP地址侦测器  &lt;br /&gt;fsmgmt.msc-----共享文件夹管理器  &lt;br /&gt;utilman--------辅助工具管理器  &lt;br /&gt;gpedit.msc-----组策略&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5931631434944515423-171749432785218360?l=hxlich.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hxlich.blogspot.com/feeds/171749432785218360/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5931631434944515423&amp;postID=171749432785218360' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/171749432785218360'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/171749432785218360'/><link rel='alternate' type='text/html' href='http://hxlich.blogspot.com/2009/03/blog-post.html' title='运行里输入的命令大全'/><author><name>龙加</name><uri>http://www.blogger.com/profile/02424615920585053635</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_fbhMkQzafCA/SLobyz_37BI/AAAAAAAAACo/mrSZALNoSzo/S220/L605781519172GAZ.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5931631434944515423.post-2411005800641635012</id><published>2009-02-09T01:39:00.001-08:00</published><updated>2009-02-09T02:14:33.737-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='非诚勿扰、评论'/><title type='text'>看非诚勿扰有感</title><content type='html'>春晚冯巩有个小品讲的是海归美女放弃西方生活回国道等服装，冯小刚将的却是大龄海归征婚的故事。冯巩是投资女朋友去海外学习，葛优是没学习当导游赚中国人的钱。不知道为什么，今天看完这个电影不自然的吧这2个不相干的片段连到了一起。可能是一个人在外比较孤独吧，本来空虚的感情世界在没有交流的陌生国度更加折磨我本来就因为失眠而脆弱的精神。在艺术世界“死了都要爱，爱了都寻思”的最高境界下，冯小刚成果的塑造出中国海归白领与空姐的乌托邦爱情。在我这个非常不专业也非常没眼光的看热闹的观众看来，这个片子有点象张艺谋：极品的画面，没了的江南景色，北海道清亮的风景，用各种可以当作WINDOWS桌面来用的风景画切换场景确实是很刺激人的感官。但是拨开美丽的梦幻的经过包装的橘子皮，这个故事可以这样描述：一个上山下乡的青年跑到美国了在海外奋斗了N年弄到一身能把死人说活的本事回到北京，40好几了玩够了，想找个妞生孩子（典型的落叶归根的思想啊）可是呢，长相不行有钱没势，也不敢找好的，就弄个差不多的吧，说是眼界不高但是一般的也不行，必须找个完美的，性冷淡怀孕的都不行，遇到个小三就看上了，还跟人家玩同床异梦，然后答应试婚，本来见了美女感觉捡了便宜了，但是后来觉得不好，咱也是纯爷们，不能吃这个亏啊，把人家逼急了跳海摔残废了，这下好了，面子过不去了，养一辈子吧，好美丽的爱情故事。记着有个老师这么说过琼瑶，写了一辈子对爱情忠贞，爱情高于金钱，结果嫁给了大出版商人。两个故事看着有点象。在时下流行的元素(空姐，海归，白领，日本文化，高品位的餐馆，西湖，GAY）的包装下我们精明个海归被一个老实的美丽空姐耍了一回，我也跟着乐了一回。记住看过央视的第十放映室说过，冯小刚终于走出了京味幽默，但是看过这个片子感觉又回到大腕的感觉了，港台花瓶搭配葛优，感觉没有集结号的深度了，难道是有压力了，还是贺岁能共赢？&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5931631434944515423-2411005800641635012?l=hxlich.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hxlich.blogspot.com/feeds/2411005800641635012/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5931631434944515423&amp;postID=2411005800641635012' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/2411005800641635012'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/2411005800641635012'/><link rel='alternate' type='text/html' href='http://hxlich.blogspot.com/2009/02/blog-post.html' title='看非诚勿扰有感'/><author><name>龙加</name><uri>http://www.blogger.com/profile/02424615920585053635</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_fbhMkQzafCA/SLobyz_37BI/AAAAAAAAACo/mrSZALNoSzo/S220/L605781519172GAZ.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5931631434944515423.post-6064999109256037159</id><published>2009-01-20T11:07:00.000-08:00</published><updated>2009-01-20T11:08:33.382-08:00</updated><title type='text'>巫妖王之怒：炼金术防护药水出处</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: arial; font-size: 14px; line-height: 25px;"&gt;http://img2.178.com/wow/200901/26175088044/26175410743.jpg&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5931631434944515423-6064999109256037159?l=hxlich.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hxlich.blogspot.com/feeds/6064999109256037159/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5931631434944515423&amp;postID=6064999109256037159' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/6064999109256037159'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/6064999109256037159'/><link rel='alternate' type='text/html' href='http://hxlich.blogspot.com/2009/01/blog-post.html' title='巫妖王之怒：炼金术防护药水出处'/><author><name>龙加</name><uri>http://www.blogger.com/profile/02424615920585053635</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_fbhMkQzafCA/SLobyz_37BI/AAAAAAAAACo/mrSZALNoSzo/S220/L605781519172GAZ.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5931631434944515423.post-2466867981324727267</id><published>2009-01-19T15:40:00.001-08:00</published><updated>2009-01-19T15:40:17.634-08:00</updated><title type='text'>D版操作安装WMP 11的方法（绝对能用，我已经通过验证破解了）</title><content type='html'>&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: Arial; font-size: 12px; line-height: 20px; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; "&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; line-height: normal; padding-top: 4px; padding-right: 4px; padding-bottom: 4px; padding-left: 4px; "&gt;以前在测试期间已经用了WMP 11,哈哈，感觉不错，就是占用的内存大了点，运行时占用的CPU多了点，不过不知道现在怎么样了哈，所以就现在想去下载一下，和往常一样，去官方下载了来，安装的时候发现要验证，只能作罢，后来想到SKYCN，所以就去试试，下载来后，偶然看到注释里面竟然写着破解方法，哈哈&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; line-height: normal; padding-top: 4px; padding-right: 4px; padding-bottom: 4px; padding-left: 4px; "&gt;请看&lt;/p&gt;&lt;div forimg="1" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; filter: none; line-height: normal; font-size: 14px; "&gt;&lt;img border="0" src="http://hiphotos.baidu.com/woood/pic/item/e232f636e66c67300b55a917.jpg" small="0" class="blogimg" style="margin-right: 0px; margin-bottom: 0px; margin-left: 0px; line-height: normal; padding-top: 3px; padding-right: 3px; padding-bottom: 3px; padding-left: 3px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(128, 128, 128); border-right-color: rgb(128, 128, 128); border-bottom-color: rgb(128, 128, 128); border-left-color: rgb(128, 128, 128); border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; margin-top: 5px; " /&gt;&lt;/div&gt;&lt;div forimg="1" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; filter: none; line-height: normal; font-size: 14px; "&gt; &lt;/div&gt;&lt;div forimg="1" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; filter: none; line-height: normal; font-size: 14px; "&gt;下面是原文&lt;/div&gt;&lt;div forimg="1" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; filter: none; line-height: normal; font-size: 14px; "&gt; &lt;/div&gt;&lt;div forimg="1" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; filter: none; line-height: normal; font-size: 14px; "&gt;“提前声明，如果你已经通过更新验证或还没有通过更新验证的用户都无法使用WMP11”&lt;/div&gt;&lt;div forimg="1" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; filter: none; line-height: normal; font-size: 14px; "&gt;首先下载WMP11，不要在官方网上下，因为要求下载验证，下载好后首先确保你有WinRAR压缩工具，再在下载文件（也就是你刚下WMP11安装文件） &lt;br /&gt;上点右键选择“解压文件”随便解压到一个地方然后进入你解压的文件夹内分别运行 &lt;br /&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: normal; color:#ff9900;"&gt;&lt;umdf.exe&gt;,&lt;wmdbexport.exe&gt;,&lt;wmfdist11.exe&gt;,&lt;wmp11.exe&gt;这四个可执行文件,&lt;/span&gt; 要顺序安装（&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: normal; color:#800080;"&gt;不过我我安装的时候双击wmdbexport.exe的时候没有反应，我点了很多次也没有反应，我就跳了过去，不过还是被我成功安装成功了)&lt;br /&gt;&lt;/span&gt;安装完毕重新启动系统,这时一定不要点你下的那个安装文件,应该打开你以前旧版本的WMP,是不是打开后出现了WMP升级程序,点下一步 &lt;br /&gt;就开始安装WMP11了.&lt;/div&gt;&lt;div forimg="1" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; filter: none; line-height: normal; font-size: 14px; "&gt;这里我不多说什么,只是给大家解释一下,这个方法是我们网友世界编辑部所发现的一种绝非什么补丁和破解程序,绝对安全.&lt;/div&gt;&lt;div forimg="1" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; filter: none; line-height: normal; font-size: 14px; "&gt;请大家放心绝对不会再以后的使用中被封,&lt;最后希望大家支持正版软件&gt;使用D版的朋友, &lt;br /&gt;为了你的自身利益不受到侵害和维护正版市场请大家在以后购买正版的软件.&lt;/div&gt;&lt;div forimg="1" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; filter: none; line-height: normal; font-size: 14px; "&gt;原理:其实原先的WMP中可以进行更新升级成为新的版本,象WMP9升到WMP10,那为什么不能直接升到11呢?是因为微软的WMP11不是发行给XP系统的用户 &lt;br /&gt;使用的,所以WMP10中没有WMP11的更新文件,所以不能直接更新成为WMP11而上述办法是将WMP11中的更新文件提前进行安装,这样你过去的WMP中就含 &lt;br /&gt;有了WMP11的更新文件,(而这些更新文件的安装是要求用户重新启动计算机的)所以你过去的WMP不能直接运行而是提示你进行升级成为WMP11, &lt;br /&gt;这样你将不用安装WMP11而是更新成为WMP11所以当然就跳过了安装验证了(微软的这个验证只是对安装进行验证而不能对更新成为WMP11的用户进行验证) &lt;br /&gt;所以大家请放心使用.&lt;/div&gt;&lt;div forimg="1" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; filter: none; line-height: normal; font-size: 14px; "&gt; &lt;/div&gt;&lt;div forimg="1" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; filter: none; line-height: normal; font-size: 14px; "&gt;哈哈这个不能说是什么破解的方法，和破解不能相提并论&lt;/div&gt;&lt;div forimg="1" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; filter: none; line-height: normal; font-size: 14px; "&gt;我已经下载来了啊&lt;/div&gt;&lt;div forimg="1" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; filter: none; line-height: normal; font-size: 14px; "&gt; &lt;/div&gt;&lt;div forimg="1" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; filter: none; line-height: normal; font-size: 14px; "&gt;各位有兴趣的话，去下载啊。，&lt;/div&gt;&lt;div forimg="1" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; filter: none; line-height: normal; font-size: 14px; "&gt;SKYCN.COM去搜一下，然后按照上面的方法就能安装了&lt;/div&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5931631434944515423-2466867981324727267?l=hxlich.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hxlich.blogspot.com/feeds/2466867981324727267/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5931631434944515423&amp;postID=2466867981324727267' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/2466867981324727267'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/2466867981324727267'/><link rel='alternate' type='text/html' href='http://hxlich.blogspot.com/2009/01/dwmp-11.html' title='D版操作安装WMP 11的方法（绝对能用，我已经通过验证破解了）'/><author><name>龙加</name><uri>http://www.blogger.com/profile/02424615920585053635</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_fbhMkQzafCA/SLobyz_37BI/AAAAAAAAACo/mrSZALNoSzo/S220/L605781519172GAZ.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5931631434944515423.post-9172662241644986164</id><published>2008-12-18T17:35:00.001-08:00</published><updated>2008-12-18T17:35:32.057-08:00</updated><title type='text'>IBM THINKPAD T61 添加讯盘和内存方法</title><content type='html'>&lt;span class="Apple-style-span" style="border-collapse: collapse; font-family: Helvetica; font-size: 12px; line-height: 19px; "&gt;&lt;h2 style="word-wrap: break-word; margin-top: 0px; margin-right: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: normal; font-size: 1.17em; margin-bottom: 0.5em; "&gt;&lt;br /&gt;&lt;/h2&gt;&lt;div id="postmessage_4042" class="t_msgfont" style="word-wrap: break-word; font-size: 14px; line-height: 1.6em; "&gt;&lt;strong style="word-wrap: break-word; font-style: normal; line-height: normal; font-weight: bold; "&gt;跟着我一步一步做！看图说事~~&lt;br /&gt;&lt;img width="422" height="281" src="http://www.ibmsz.com/attachments/month_0805/20080520_9c66b52b6d952b8417c1dslpeu2s4tNk.jpg" border="0" alt="" style="word-wrap: break-word; line-height: normal; " /&gt;&lt;br /&gt;第一步：&lt;/strong&gt;&lt;br /&gt;&lt;strong style="word-wrap: break-word; font-style: normal; line-height: normal; font-weight: bold; "&gt;先拆螺丝1号，在拆螺丝2号，后面三个螺丝可以随便拆！&lt;/strong&gt;&lt;br /&gt;&lt;img width="431" height="288" src="http://www.ibmsz.com/attachments/month_0805/20080520_96ecedff088e086cecd0OSikMz6o5aEa.jpg" border="0" alt="" style="word-wrap: break-word; line-height: normal; " /&gt;&lt;br /&gt;&lt;strong style="word-wrap: break-word; font-style: normal; line-height: normal; font-weight: bold; "&gt;第二步：&lt;/strong&gt;&lt;br /&gt;&lt;strong style="word-wrap: break-word; font-style: normal; line-height: normal; font-weight: bold; "&gt;从两边轻轻拌起掌拖，下手要轻啊！&lt;/strong&gt;&lt;br /&gt;&lt;img width="431" height="286" src="http://www.ibmsz.com/attachments/month_0805/20080520_10d95569bee0f6f177b7Fro1SZJlMR6l.jpg" border="0" alt="" style="word-wrap: break-word; line-height: normal; " /&gt;&lt;br /&gt;&lt;strong style="word-wrap: break-word; font-style: normal; line-height: normal; font-weight: bold; "&gt;注意连接线！&lt;/strong&gt;&lt;br /&gt;&lt;img width="434" height="290" src="http://www.ibmsz.com/attachments/month_0805/20080520_c0d00496e513a0ac26bfXwFCu2Co54qo.jpg" border="0" alt="" style="word-wrap: break-word; line-height: normal; " /&gt;&lt;br /&gt;&lt;strong style="word-wrap: break-word; font-style: normal; line-height: normal; font-weight: bold; "&gt;第三步：&lt;/strong&gt;&lt;br /&gt;&lt;strong style="word-wrap: break-word; font-style: normal; line-height: normal; font-weight: bold; "&gt;拿起&lt;span href="tag.php?name=%BC%FC%C5%CC" onclick="tagshow(event)" class="t_tag" style="word-wrap: break-word; line-height: normal; cursor: pointer; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(255, 0, 0); white-space: nowrap; "&gt;键盘&lt;/span&gt;，就可以看到讯盘了。添加讯盘的时候这里是空的！&lt;/strong&gt;&lt;br /&gt;&lt;img width="438" height="292" src="http://www.ibmsz.com/attachments/month_0805/20080520_5d99c1b71fea039e3c700FkOBmeOrIQM.jpg" border="0" alt="" style="word-wrap: break-word; line-height: normal; " /&gt;&lt;br /&gt;&lt;strong style="word-wrap: break-word; font-style: normal; line-height: normal; font-weight: bold; "&gt;第四步：&lt;/strong&gt;&lt;br /&gt;&lt;strong style="word-wrap: break-word; font-style: normal; line-height: normal; font-weight: bold; "&gt;把讯盘对口，插入插槽，固定好2个螺丝！&lt;/strong&gt;&lt;br /&gt;&lt;img width="441" height="292" src="http://www.ibmsz.com/attachments/month_0805/20080520_e9ae7075679de4847a86jJAUxICYaW3J.jpg" border="0" alt="" style="word-wrap: break-word; line-height: normal; " /&gt;&lt;/div&gt;&lt;div id="postmessage_4042" class="t_msgfont" style="word-wrap: break-word; font-size: 14px; line-height: 1.6em; "&gt;&lt;span class="Apple-style-span" style="line-height: normal;"&gt;&lt;span class="Apple-style-span" style="line-height: 22px; "&gt;&lt;strong style="word-wrap: break-word; font-style: normal; line-height: normal; font-weight: bold; "&gt;这个是没加讯盘的时候主板上的样子！&lt;br /&gt;&lt;img width="436" height="290" src="http://www.ibmsz.com/attachments/month_0805/20080520_77a58760c6126a6545a5aeNQOyti0V41.jpg" border="0" alt="" style="word-wrap: break-word; line-height: normal; " /&gt;&lt;br /&gt;现在来看怎么加内存！&lt;/strong&gt;&lt;br /&gt;&lt;strong style="word-wrap: break-word; font-style: normal; line-height: normal; font-weight: bold; "&gt;底下那个是原来机器自带的内存，新加的内存可以加上面这个空插槽里！&lt;/strong&gt;&lt;br /&gt;&lt;img width="436" height="291" src="http://www.ibmsz.com/attachments/month_0805/20080520_e66506edb5b8efa7b604LFVK7Kko7068.jpg" border="0" alt="" style="word-wrap: break-word; line-height: normal; " /&gt;&lt;br /&gt;&lt;strong style="word-wrap: break-word; font-style: normal; line-height: normal; font-weight: bold; "&gt;把内存对好口，斜插入内存插槽中！&lt;/strong&gt;&lt;br /&gt;&lt;img width="438" height="291" src="http://www.ibmsz.com/attachments/month_0805/20080520_3022f7a3f84e593404cfWCKC6flnuATy.jpg" border="0" alt="" style="word-wrap: break-word; line-height: normal; " /&gt;&lt;br /&gt;&lt;strong style="word-wrap: break-word; font-style: normal; line-height: normal; font-weight: bold; "&gt;向下按下，卡扣扣上的时候就加好了！&lt;/strong&gt;&lt;br /&gt;&lt;strong style="word-wrap: break-word; font-style: normal; line-height: normal; font-weight: bold; "&gt;最后在按拆的时候的顺序，把键盘放上，注意把连接线接上，在把掌托放齐，上螺丝的时候也是先上1号在上2号，后面3个螺丝自由！&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5931631434944515423-9172662241644986164?l=hxlich.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hxlich.blogspot.com/feeds/9172662241644986164/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5931631434944515423&amp;postID=9172662241644986164' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/9172662241644986164'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5931631434944515423/posts/default/9172662241644986164'/><link rel='alternate' type='text/html' href='http://hxlich.blogspot.com/2008/12/ibm-thinkpad-t61.html' title='IBM THINKPAD T61 添加讯盘和内存方法'/><author><name>龙加</name><uri>http://www.blogger.com/profile/02424615920585053635</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_fbhMkQzafCA/SLobyz_37BI/AAAAAAAAACo/mrSZALNoSzo/S220/L605781519172GAZ.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5931631434944515423.post-8944809354394796079</id><published>2008-11-21T12:07:00.000-08:00</published><updated>2008-11-21T12:08:22.640-08:00</updated><title type='text'>WLK炼金资料整理</title><content type='html'>&lt;tr&gt;&lt;td style="width: 15%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;div style="text-align: center; "&gt;技能 &lt;br /&gt;&lt;/div&gt;&lt;/td&gt;&lt;td style="width: 32%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;div style="text-align: center; "&gt;技能名称及产品属性 &lt;br /&gt;&lt;/div&gt;&lt;/td&gt;&lt;td style="width: 20%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;div style="text-align: center; "&gt;材料 &lt;br /&gt;&lt;/div&gt;&lt;/td&gt;&lt;td style="width: 33%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;div style="text-align: center; "&gt;出处 &lt;br /&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;br /&gt;&lt;br /&gt;&lt;tr&gt;&lt;td style="width: 15%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_potion_112.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 50级&lt;/td&gt;&lt;td style="width: 32%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;混金术? &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?spell=53042" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Mixology&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt; &lt;br /&gt;当你使用&lt;span class="blue" style="color: rgb(0, 102, 187); "&gt;&lt;b&gt;自己可以制作的&lt;/b&gt;&lt;/span&gt;药剂或合剂时，将会获得额外时间及效果。&lt;/td&gt;&lt;td style="width: 20%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;-&lt;/td&gt;&lt;td style="width: 33%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;训练 &lt;br /&gt;&lt;span class="blue" style="color: rgb(0, 102, 187); "&gt;联盟&lt;/span&gt;&amp;amp;&lt;span class="red" style="color: rgb(221, 0, 0); "&gt;部落&lt;/span&gt;： &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?npc=28703" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Linzy Blackbolt&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;，达拉然&lt;42,33&gt; &lt;br /&gt;&lt;span class="blue" style="color: rgb(0, 102, 187); "&gt;联盟&lt;/span&gt;： &lt;br /&gt;炼金师格里比，地狱火半岛-荣耀堡&lt;52,36&gt; &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?npc=26903" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Lanolis Dewdrop&lt;/a&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;，Howling Fjord-Valgard(嚎风峡湾-瓦尔加德?)&lt;58,62&gt; &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?npc=26987" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Falorn Nightwhisper&lt;/a&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;，Borean Tundra-Valiance Keep(北风苔原-骁勇要塞?)&lt;58,72&gt; &lt;br /&gt;&lt;span class="red" style="color: rgb(221, 0, 0); "&gt;部落&lt;/span&gt;： &lt;br /&gt;部落方-药剂师安东尼维奇，地狱火半岛-萨尔玛&lt;53,65&gt; &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?npc=26975" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Arthur Henslowe&lt;/a&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;，Borean Tundra-Warsong Hold(北风苔原-军歌要塞?)&lt;42,54&gt; &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?npc=27023" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Apothecary Bre&lt;/a&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;，Dragonblight-Agmar's Hammer(龙骨荒野-阿格玛之锤?)&lt;36,49&gt; &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?npc=26951" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Wilhelmina Renel&lt;/a&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;，Howling Fjord-Vengeance Landing(嚎风峡湾-复仇码头?)&lt;79,29&gt; &lt;br /&gt;注：“额外时间”是指时间翻倍，额外“效果”则是指效果会有增加，根据不同药剂/合剂而有所区别，例如： &lt;br /&gt;&lt;a class="b" href="javascript:item_tooltip.open()" onmouseover="delay_showdscp(event,&amp;quot;single_ttip&amp;quot;,700);item_tooltip.get(&amp;quot;超级能量合剂&amp;quot;)" onmousemove="movedscp(event,&amp;quot;single_ttip&amp;quot;)" onmouseout="hidedscp(event,&amp;quot;single_ttip&amp;quot;);item_tooltip.clear()" style="text-decoration: none; color: rgb(29, 42, 99); font-weight: bold; "&gt;[超级能量合剂]&lt;/a&gt; 在Mixology作用下是：93 法术强度，提高了33% &lt;br /&gt;&lt;a class="b" href="javascript:item_tooltip.open()" onmouseover="delay_showdscp(event,&amp;quot;single_ttip&amp;quot;,700);item_tooltip.get(&amp;quot;精炼智慧合剂&amp;quot;)" onmousemove="movedscp(event,&amp;quot;single_ttip&amp;quot;)" onmouseout="hidedscp(event,&amp;quot;single_ttip&amp;quot;);item_tooltip.clear()" style="text-decoration: none; color: rgb(29, 42, 99); font-weight: bold; "&gt;[精炼智慧合剂]&lt;/a&gt;，在Mixology作用下是：85 智慧，提高了31% &lt;br /&gt;&lt;a class="b" href="javascript:item_tooltip.open()" onmouseover="delay_showdscp(event,&amp;quot;single_ttip&amp;quot;,700);item_tooltip.get(&amp;quot;强效恢复合剂&amp;quot;)" onmousemove="movedscp(event,&amp;quot;single_ttip&amp;quot;)" onmouseout="hidedscp(event,&amp;quot;single_ttip&amp;quot;);item_tooltip.clear()" style="text-decoration: none; color: rgb(29, 42, 99); font-weight: bold; "&gt;[强效恢复合剂]&lt;/a&gt;，在Mixology作用下是：每5秒回复38点法力值，提高了52% &lt;br /&gt;&lt;a class="b" href="javascript:item_tooltip.open()" onmouseover="delay_showdscp(event,&amp;quot;single_ttip&amp;quot;,700);item_tooltip.get(&amp;quot;纯粹死亡合剂&amp;quot;)" onmousemove="movedscp(event,&amp;quot;single_ttip&amp;quot;)" onmouseout="hidedscp(event,&amp;quot;single_ttip&amp;quot;);item_tooltip.clear()" style="text-decoration: none; color: rgb(29, 42, 99); font-weight: bold; "&gt;[纯粹死亡合剂]&lt;/a&gt;，在Mixology作用下是：冰火暗法术强度103，提高了28% &lt;br /&gt;&lt;a class="b" href="javascript:item_tooltip.open()" onmouseover="delay_showdscp(event,&amp;quot;single_ttip&amp;quot;,700);item_tooltip.get(&amp;quot;无情突袭合剂&amp;quot;)" onmousemove="movedscp(event,&amp;quot;single_ttip&amp;quot;)" onmouseout="hidedscp(event,&amp;quot;single_ttip&amp;quot;);item_tooltip.clear()" style="text-decoration: none; color: rgb(29, 42, 99); font-weight: bold; "&gt;[无情突袭合剂]&lt;/a&gt;，在Mixology作用下是：180攻强，提高了50%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="width: 15%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_potion_142.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 310级 &lt;br /&gt;&lt;b&gt;【&lt;span class="tomato" style="color: rgb(255, 99, 71); "&gt;310&lt;/span&gt;&lt;span class="sandybrown" style="color: rgb(244, 164, 96); "&gt;325&lt;/span&gt; &lt;span class="green" style="color: rgb(61, 159, 14); "&gt;332&lt;/span&gt;&lt;span class="silver" style="color: rgb(136, 136, 136); "&gt;340&lt;/span&gt;】&lt;/b&gt;&lt;/td&gt;&lt;td style="width: 32%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;a class="b" href="javascript:item_tooltip.open()" onmouseover="delay_showdscp(event,&amp;quot;single_ttip&amp;quot;,700);item_tooltip.get(&amp;quot;治疗能量药剂&amp;quot;)" onmousemove="movedscp(event,&amp;quot;single_ttip&amp;quot;)" onmouseout="hidedscp(event,&amp;quot;single_ttip&amp;quot;);item_tooltip.clear()" style="text-decoration: none; color: rgb(29, 42, 99); font-weight: bold; "&gt;[治疗能量药剂]&lt;/a&gt; &lt;br /&gt;Elixir of Healing Power &lt;br /&gt;需要等级 50 &lt;br /&gt;使用： 法术强度提高最多24点，精神提高24点，持续1小时。战斗药剂。&lt;/td&gt;&lt;td style="width: 20%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_misc_herb_sansamroot.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 黄金参(1)&lt;br /&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_misc_herb_dreamingglory.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 梦露花(1)&lt;br /&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_alchemy_imbuedvial.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 灌魔之瓶(1)&lt;/td&gt;&lt;td style="width: 33%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;训练&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="width: 15%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/trade_alchemy.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 350级&lt;/td&gt;&lt;td style="width: 32%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;祖师级炼金术? &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?spell=51304" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Alchemy &lt;grand&gt;&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt; &lt;br /&gt;使炼金师可以配制特别的药水，技能上限为450点。&lt;/td&gt;&lt;td style="width: 20%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;-&lt;/td&gt;&lt;td style="width: 33%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;训练 &lt;br /&gt;&lt;span class="blue" style="color: rgb(0, 102, 187); "&gt;联盟&lt;/span&gt;&amp;amp;&lt;span class="red" style="color: rgb(221, 0, 0); "&gt;部落&lt;/span&gt;： &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?npc=28703" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Linzy Blackbolt&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;，达拉然&lt;42,33&gt; &lt;br /&gt;&lt;span class="blue" style="color: rgb(0, 102, 187); "&gt;联盟&lt;/span&gt;： &lt;br /&gt;炼金师格里比，地狱火半岛-荣耀堡&lt;52,36&gt; &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?npc=26903" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Lanolis Dewdrop&lt;/a&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;，Howling Fjord-Valgard(嚎风峡湾-瓦尔加德?)&lt;58,62&gt; &lt;br /&gt;&lt;span class="red" style="color: rgb(221, 0, 0); "&gt;部落&lt;/span&gt;： &lt;br /&gt;部落方-药剂师安东尼维奇，地狱火半岛-萨尔玛&lt;53,65&gt; &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?npc=26951" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Wilhelmina Renel&lt;/a&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;，Howling Fjord-Vengeance Landing(嚎风峡湾-复仇码头?)&lt;79,29&gt; &lt;br /&gt;(注：人物等级至少65级)&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="width: 15%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_potion_120.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 350级 &lt;br /&gt;&lt;b&gt;【&lt;span class="tomato" style="color: rgb(255, 99, 71); "&gt;350&lt;/span&gt;&lt;span class="sandybrown" style="color: rgb(244, 164, 96); "&gt;360&lt;/span&gt; &lt;span class="green" style="color: rgb(61, 159, 14); "&gt;370&lt;/span&gt;&lt;span class="silver" style="color: rgb(136, 136, 136); "&gt;380&lt;/span&gt;】&lt;/b&gt;&lt;/td&gt;&lt;td style="width: 32%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;复苏治疗药水? &lt;br /&gt;Resurgent Healing Potion &lt;br /&gt;Requires Level 55 &lt;br /&gt;Use: Restores 1500 to 2500 health. (1 Min Cooldown) &lt;br /&gt;使用：恢复1500到2500点生命值（冷却时间：1分钟）&lt;/td&gt;&lt;td style="width: 20%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_misc_herb_goldclover.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt;&lt;a href="http://wotlk.wowhead.com/?item=36901" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Goldclover&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;金苜蓿(2) &lt;br /&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_alchemy_imbuedvial.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 灌魔之瓶(1)&lt;/td&gt;&lt;td style="width: 33%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;训练 &lt;br /&gt;&lt;span class="blue" style="color: rgb(0, 102, 187); "&gt;联盟&lt;/span&gt;&amp;amp;&lt;span class="red" style="color: rgb(221, 0, 0); "&gt;部落&lt;/span&gt;： &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?npc=28703" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Linzy Blackbolt&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;，达拉然&lt;42,33&gt; &lt;br /&gt;&lt;span class="blue" style="color: rgb(0, 102, 187); "&gt;联盟&lt;/span&gt;： &lt;br /&gt;炼金师格里比，地狱火半岛-荣耀堡&lt;52,36&gt; &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?npc=26903" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Lanolis Dewdrop&lt;/a&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;，Howling Fjord-Valgard(嚎风峡湾-瓦尔加德?)&lt;58,62&gt; &lt;br /&gt;&lt;span class="red" style="color: rgb(221, 0, 0); "&gt;部落&lt;/span&gt;： &lt;br /&gt;部落方-药剂师安东尼维奇，地狱火半岛-萨尔玛&lt;53,65&gt; &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?npc=26951" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Wilhelmina Renel&lt;/a&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;，Howling Fjord-Vengeance Landing(嚎风峡湾-复仇码头?)&lt;79,29&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="width: 15%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_potion_114.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 355级 &lt;br /&gt;&lt;b&gt;【&lt;span class="tomato" style="color: rgb(255, 99, 71); "&gt;355&lt;/span&gt;&lt;span class="sandybrown" style="color: rgb(244, 164, 96); "&gt;365&lt;/span&gt; &lt;span class="green" style="color: rgb(61, 159, 14); "&gt;375&lt;/span&gt;&lt;span class="silver" style="color: rgb(136, 136, 136); "&gt;385&lt;/span&gt;】&lt;/b&gt;&lt;/td&gt;&lt;td style="width: 32%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;愤怒药剂? &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?spell=53841" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Wrath Elixir&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt; &lt;br /&gt;需要等级 60 &lt;br /&gt;使用：攻击强度提高90点，持续1小时。战斗药剂。&lt;/td&gt;&lt;td style="width: 20%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_misc_herb_goldclover.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt;&lt;a href="http://wotlk.wowhead.com/?item=36901" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Goldclover&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;金苜蓿(1) &lt;br /&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_misc_herb_constrictorgrass.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt;&lt;a href="http://wotlk.wowhead.com/?item=37921" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Deadnettle&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;死亡荨麻(2) &lt;br /&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_alchemy_imbuedvial.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 灌魔之瓶(1) &lt;br /&gt;&lt;/td&gt;&lt;td style="width: 33%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;训练 &lt;br /&gt;&lt;span class="blue" style="color: rgb(0, 102, 187); "&gt;联盟&lt;/span&gt;&amp;amp;&lt;span class="red" style="color: rgb(221, 0, 0); "&gt;部落&lt;/span&gt;： &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?npc=28703" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Linzy Blackbolt&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;，达拉然&lt;42,33&gt; &lt;br /&gt;&lt;span class="blue" style="color: rgb(0, 102, 187); "&gt;联盟&lt;/span&gt;： &lt;br /&gt;炼金师格里比，地狱火半岛-荣耀堡&lt;52,36&gt; &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?npc=26903" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Lanolis Dewdrop&lt;/a&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;，Howling Fjord-Valgard(嚎风峡湾-瓦尔加德?)&lt;58,62&gt; &lt;br /&gt;&lt;span class="red" style="color: rgb(221, 0, 0); "&gt;部落&lt;/span&gt;： &lt;br /&gt;部落方-药剂师安东尼维奇，地狱火半岛-萨尔玛&lt;53,65&gt; &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?npc=26951" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Wilhelmina Renel&lt;/a&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;，Howling Fjord-Vengeance Landing(嚎风峡湾-复仇码头?)&lt;79,29&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="width: 15%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_potion_126.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 360级 &lt;br /&gt;&lt;b&gt;【&lt;span class="tomato" style="color: rgb(255, 99, 71); "&gt;360&lt;/span&gt;&lt;span class="sandybrown" style="color: rgb(244, 164, 96); "&gt;365&lt;/span&gt; &lt;span class="green" style="color: rgb(61, 159, 14); "&gt;375&lt;/span&gt;&lt;span class="silver" style="color: rgb(136, 136, 136); "&gt;385&lt;/span&gt;】&lt;/b&gt;&lt;/td&gt;&lt;td style="width: 32%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;冰冷的法力药水? &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?spell=53839" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Icy Mana Potion&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt; &lt;br /&gt;需要等级 60 &lt;br /&gt;使用：恢复1800到3000点法力值。（冷却时间：1分钟）&lt;/td&gt;&lt;td style="width: 20%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_misc_herb_talandrasrose.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt;&lt;a href="http://wotlk.wowhead.com/?item=36907" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Talandra's Rose&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;塔兰德拉的玫瑰(2) &lt;br /&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_alchemy_imbuedvial.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 灌魔之瓶(1)&lt;/td&gt;&lt;td style="width: 33%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;训练 &lt;br /&gt;&lt;span class="blue" style="color: rgb(0, 102, 187); "&gt;联盟&lt;/span&gt;&amp;amp;&lt;span class="red" style="color: rgb(221, 0, 0); "&gt;部落&lt;/span&gt;： &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?npc=28703" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Linzy Blackbolt&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;，达拉然&lt;42,33&gt; &lt;br /&gt;&lt;span class="blue" style="color: rgb(0, 102, 187); "&gt;联盟&lt;/span&gt;： &lt;br /&gt;炼金师格里比，地狱火半岛-荣耀堡&lt;52,36&gt; &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?npc=26903" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Lanolis Dewdrop&lt;/a&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;，Howling Fjord-Valgard(嚎风峡湾-瓦尔加德?)&lt;58,62&gt; &lt;br /&gt;&lt;span class="red" style="color: rgb(221, 0, 0); "&gt;部落&lt;/span&gt;： &lt;br /&gt;部落方-药剂师安东尼维奇，地狱火半岛-萨尔玛&lt;53,65&gt; &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?npc=26951" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Wilhelmina Renel&lt;/a&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;，Howling Fjord-Vengeance Landing(嚎风峡湾-复仇码头?)&lt;79,29&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="width: 15%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_alchemy_potion_05.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 365级 &lt;br /&gt;&lt;b&gt;【&lt;span class="tomato" style="color: rgb(255, 99, 71); "&gt;365&lt;/span&gt;&lt;span class="sandybrown" style="color: rgb(244, 164, 96); "&gt;375&lt;/span&gt; &lt;span class="green" style="color: rgb(61, 159, 14); "&gt;382&lt;/span&gt;&lt;span class="silver" style="color: rgb(136, 136, 136); "&gt;390&lt;/span&gt;】&lt;/b&gt;&lt;/td&gt;&lt;td style="width: 32%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;法术强度药剂? &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?spell=53842" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Spellpower Elixir&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt; &lt;br /&gt;需要等级 60 &lt;br /&gt;使用：法术强度提高58点，持续1小时。战斗药剂。&lt;/td&gt;&lt;td style="width: 20%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_misc_herb_goldclover.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt;&lt;a href="http://wotlk.wowhead.com/?item=36901" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Goldclover&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;金苜蓿(1) &lt;br /&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_misc_herb_tigerlily.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?item=36904" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Tiger Lily&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;卷丹(1) &lt;br /&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_alchemy_imbuedvial.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 灌魔之瓶(1)&lt;/td&gt;&lt;td style="width: 33%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;训练 &lt;br /&gt;&lt;span class="blue" style="color: rgb(0, 102, 187); "&gt;联盟&lt;/span&gt;&amp;amp;&lt;span class="red" style="color: rgb(221, 0, 0); "&gt;部落&lt;/span&gt;： &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?npc=28703" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Linzy Blackbolt&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;，达拉然&lt;42,33&gt; &lt;br /&gt;&lt;span class="blue" style="color: rgb(0, 102, 187); "&gt;联盟&lt;/span&gt;： &lt;br /&gt;炼金师格里比，地狱火半岛-荣耀堡&lt;52,36&gt; &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?npc=26903" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Lanolis Dewdrop&lt;/a&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;，Howling Fjord-Valgard(嚎风峡湾-瓦尔加德?)&lt;58,62&gt; &lt;br /&gt;&lt;span class="red" style="color: rgb(221, 0, 0); "&gt;部落&lt;/span&gt;： &lt;br /&gt;部落方-药剂师安东尼维奇，地狱火半岛-萨尔玛&lt;53,65&gt; &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?npc=26951" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Wilhelmina Renel&lt;/a&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;，Howling Fjord-Vengeance Landing(嚎风峡湾-复仇码头?)&lt;79,29&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="width: 15%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_alchemy_endlessflask_02.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 375级 &lt;br /&gt;&lt;b&gt;【&lt;span class="tomato" style="color: rgb(255, 99, 71); "&gt;375&lt;/span&gt;&lt;span class="sandybrown" style="color: rgb(244, 164, 96); "&gt;380&lt;/span&gt; &lt;span class="green" style="color: rgb(61, 159, 14); "&gt;385&lt;/span&gt;&lt;span class="silver" style="color: rgb(136, 136, 136); "&gt;390&lt;/span&gt;】&lt;/b&gt;&lt;/td&gt;&lt;td style="width: 32%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;次级韧性合剂? &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?item=40079" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Lesser Flask of Toughness&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt; &lt;br /&gt;Use: Increases resilience rating by 50 for 1.00 hour. Counts as both a Battle and Guardian elixir. This effect persists through death. &lt;br /&gt;使用：韧性等级提高50点，持续1小时。战斗和守护药剂。这个效果在死亡后仍可继续存在。&lt;/td&gt;&lt;td style="width: 20%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_misc_herb_constrictorgrass.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt;&lt;a href="http://wotlk.wowhead.com/?item=37921" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Deadnettle&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;死亡荨麻(4) &lt;br /&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_misc_herb_goldclover.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt;&lt;a href="http://wotlk.wowhead.com/?item=36901" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Goldclover&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;金苜蓿(1) &lt;br /&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_alchemy_imbuedvial.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 灌魔之瓶(1)&lt;/td&gt;&lt;td style="width: 33%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;训练 &lt;br /&gt;&lt;span class="blue" style="color: rgb(0, 102, 187); "&gt;联盟&lt;/span&gt;&amp;amp;&lt;span class="red" style="color: rgb(221, 0, 0); "&gt;部落&lt;/span&gt;： &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?npc=28703" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Linzy Blackbolt&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;，达拉然&lt;42,33&gt; &lt;br /&gt;&lt;span class="blue" style="color: rgb(0, 102, 187); "&gt;联盟&lt;/span&gt;： &lt;br /&gt;炼金师格里比，地狱火半岛-荣耀堡&lt;52,36&gt; &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?npc=26903" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Lanolis Dewdrop&lt;/a&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;，Howling Fjord-Valgard(嚎风峡湾-瓦尔加德?)&lt;58,62&gt; &lt;br /&gt;&lt;span class="red" style="color: rgb(221, 0, 0); "&gt;部落&lt;/span&gt;： &lt;br /&gt;部落方-药剂师安东尼维奇，地狱火半岛-萨尔玛&lt;53,65&gt; &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?npc=26951" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Wilhelmina Renel&lt;/a&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;，Howling Fjord-Vengeance Landing(嚎风峡湾-复仇码头?)&lt;79,29&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="width: 15%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_potion_07.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 375级 &lt;br /&gt;&lt;b&gt;【&lt;span class="tomato" style="color: rgb(255, 99, 71); "&gt;375&lt;/span&gt;&lt;span class="sandybrown" style="color: rgb(244, 164, 96); "&gt;380&lt;/span&gt; &lt;span class="green" style="color: rgb(61, 159, 14); "&gt;385&lt;/span&gt;&lt;span class="silver" style="color: rgb(136, 136, 136); "&gt;390&lt;/span&gt;】&lt;/b&gt;&lt;/td&gt;&lt;td style="width: 32%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;俾格米油? &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?spell=53812" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Pygmy Oil&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt; &lt;br /&gt;使用：喝我！ &lt;br /&gt;(注：每喝一瓶体积会变小一点，效果持续10分钟。在喝6到10瓶后，会变成一个小侏儒，持续10分钟。德鲁伊切换形态会移除这个效果)&lt;/td&gt;&lt;td style="width: 20%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?item=40199" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Pygmy Suckerfish&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;俾格米胭脂鱼?(1) &lt;br /&gt;(产生1到2份俾&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt;&lt;a href="http://wotlk.wowhead.com/?spell=53812" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Pygmy Oil&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;俾格米油?)&lt;/td&gt;&lt;td style="width: 33%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;训练 &lt;br /&gt;&lt;span class="blue" style="color: rgb(0, 102, 187); "&gt;联盟&lt;/span&gt;&amp;amp;&lt;span class="red" style="color: rgb(221, 0, 0); "&gt;部落&lt;/span&gt;： &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?npc=28703" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Linzy Blackbolt&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;，达拉然&lt;42,33&gt; &lt;br /&gt;&lt;span class="blue" style="color: rgb(0, 102, 187); "&gt;联盟&lt;/span&gt;： &lt;br /&gt;炼金师格里比，地狱火半岛-荣耀堡&lt;52,36&gt; &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?npc=26903" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Lanolis Dewdrop&lt;/a&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;，Howling Fjord-Valgard(嚎风峡湾-瓦尔加德?)&lt;58,62&gt; &lt;br /&gt;&lt;span class="red" style="color: rgb(221, 0, 0); "&gt;部落&lt;/span&gt;： &lt;br /&gt;部落方-药剂师安东尼维奇，地狱火半岛-萨尔玛&lt;53,65&gt; &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?npc=26951" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Wilhelmina Renel&lt;/a&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;，Howling Fjord-Vengeance Landing(嚎风峡湾-复仇码头?)&lt;79,29&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="width: 15%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_potion_27.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 375级 &lt;br /&gt;&lt;b&gt;【&lt;span class="tomato" style="color: rgb(255, 99, 71); "&gt;375&lt;/span&gt;&lt;span class="sandybrown" style="color: rgb(244, 164, 96); "&gt;415&lt;/span&gt; &lt;span class="green" style="color: rgb(61, 159, 14); "&gt;422&lt;/span&gt;&lt;span class="silver" style="color: rgb(136, 136, 136); "&gt;430&lt;/span&gt;】&lt;/b&gt;&lt;/td&gt;&lt;td style="width: 32%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;狂热炼金师药水? &lt;br /&gt;Crazy Alchemist's Potion &lt;br /&gt;需要等级 70 &lt;br /&gt;&lt;b&gt;需要 炼金术 (400)&lt;/b&gt; &lt;br /&gt;使用: 治疗、补充或其它，根据情况而定。（冷却时间：1分钟） &lt;br /&gt;(注：随机产生一种WLK版药水效果，也有可能无效果。)&lt;/td&gt;&lt;td style="width: 20%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_misc_herb_goldclover.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt;&lt;a href="http://wotlk.wowhead.com/?item=36901" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Goldclover&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;金苜蓿(2) &lt;br /&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_alchemy_imbuedvial.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 灌魔之瓶(1)&lt;/td&gt;&lt;td style="width: 33%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;训练&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="width: 15%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_potion_112.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 380级 &lt;br /&gt;&lt;b&gt;【&lt;span class="tomato" style="color: rgb(255, 99, 71); "&gt; &lt;/span&gt;&lt;span class="sandybrown" style="color: rgb(244, 164, 96); "&gt;380&lt;/span&gt;&lt;span class="green" style="color: rgb(61, 159, 14); "&gt;385&lt;/span&gt;&lt;span class="silver" style="color: rgb(136, 136, 136); "&gt;390&lt;/span&gt;】&lt;/b&gt;&lt;/td&gt;&lt;td style="width: 32%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;贤者药剂? &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?spell=53848" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Guru's Elixir&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt; &lt;br /&gt;需要等级 70 &lt;br /&gt;使用：所有属性提高20点，持续1小时。战斗药剂。&lt;/td&gt;&lt;td style="width: 20%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_potion_07.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?item=40195" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Pygmy Oil&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;俾格米油?(3) &lt;br /&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_alchemy_imbuedvial.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 灌魔之瓶(1)&lt;/td&gt;&lt;td style="width: 33%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;来源不明，待确定&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="width: 15%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_alchemy_elixir_03.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 385级 &lt;br /&gt;&lt;b&gt;【&lt;span class="tomato" style="color: rgb(255, 99, 71); "&gt; &lt;/span&gt;&lt;span class="sandybrown" style="color: rgb(244, 164, 96); "&gt;385&lt;/span&gt;&lt;span class="green" style="color: rgb(61, 159, 14); "&gt;390&lt;/span&gt;&lt;span class="silver" style="color: rgb(136, 136, 136); "&gt;395&lt;/span&gt;】&lt;/b&gt;&lt;/td&gt;&lt;td style="width: 32%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;梦魇药水? &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?spell=53900" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Potion of Nightmares&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt; &lt;br /&gt;Use: Puts the imbiber in a slumber where they face and defeat their darkest fears. During that time the imbiber restores 5400 health and mana, but they are extremely vulnerable. (1 Min Cooldown) &lt;br /&gt;使用：使饮用者进入睡眠状态，面对和击败最深的恐惧。持续6秒钟，在这段时间内，饮用者可以回复5400点生命值和法力值。（冷却时间：1分钟）&lt;/td&gt;&lt;td style="width: 20%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_misc_herb_goldclover.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt;&lt;a href="http://wotlk.wowhead.com/?item=36901" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Goldclover&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;金苜蓿(1) &lt;br /&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_misc_herb_talandrasrose.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt;&lt;a href="http://wotlk.wowhead.com/?item=36907" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Talandra's Rose&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;塔兰德拉的玫瑰(2) &lt;br /&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_alchemy_imbuedvial.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 灌魔之瓶(1)&lt;/td&gt;&lt;td style="width: 33%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;来源不明，待确定&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="width: 15%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_potion_02.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 385级 &lt;br /&gt;&lt;b&gt;【&lt;span class="tomato" style="color: rgb(255, 99, 71); "&gt;385&lt;/span&gt;&lt;span class="sandybrown" style="color: rgb(244, 164, 96); "&gt;390&lt;/span&gt; &lt;span class="green" style="color: rgb(61, 159, 14); "&gt;395&lt;/span&gt;&lt;span class="silver" style="color: rgb(136, 136, 136); "&gt;400&lt;/span&gt;】&lt;/b&gt;&lt;/td&gt;&lt;td style="width: 32%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;精神药剂? &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?spell=53847" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Elixir of Spirit&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt; &lt;br /&gt;需要等级 70 &lt;br /&gt;Use: Increases Spirit by 50 for 1.00 hour. Guardian Elixir. &lt;br /&gt;使用：使精神提高50点，持续1小时。守护药剂。&lt;/td&gt;&lt;td style="width: 20%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_misc_herb_talandrasrose.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt;&lt;a href="http://wotlk.wowhead.com/?item=36907" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Talandra's Rose&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;塔兰德拉的玫瑰(3) &lt;br /&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_alchemy_imbuedvial.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 灌魔之瓶(1)&lt;/td&gt;&lt;td style="width: 33%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;训练 &lt;br /&gt;&lt;span class="blue" style="color: rgb(0, 102, 187); "&gt;联盟&lt;/span&gt;&amp;amp;&lt;span class="red" style="color: rgb(221, 0, 0); "&gt;部落&lt;/span&gt;： &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?npc=28703" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Linzy Blackbolt&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;，达拉然&lt;42,33&gt; &lt;br /&gt;&lt;span class="blue" style="color: rgb(0, 102, 187); "&gt;联盟&lt;/span&gt;： &lt;br /&gt;炼金师格里比，地狱火半岛-荣耀堡&lt;52,36&gt; &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?npc=26903" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Lanolis Dewdrop&lt;/a&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;，Howling Fjord-Valgard(嚎风峡湾-瓦尔加德?)&lt;58,62&gt; &lt;br /&gt;&lt;span class="red" style="color: rgb(221, 0, 0); "&gt;部落&lt;/span&gt;： &lt;br /&gt;部落方-药剂师安东尼维奇，地狱火半岛-萨尔玛&lt;53,65&gt; &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?npc=26951" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Wilhelmina Renel&lt;/a&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;，Howling Fjord-Vengeance Landing(嚎风峡湾-复仇码头?)&lt;79,29&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="width: 15%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_potion_162.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 385级 &lt;br /&gt;&lt;b&gt;【&lt;span class="tomato" style="color: rgb(255, 99, 71); "&gt;385&lt;/span&gt;&lt;span class="sandybrown" style="color: rgb(244, 164, 96); "&gt;400&lt;/span&gt; &lt;span class="green" style="color: rgb(61, 159, 14); "&gt;407&lt;/span&gt;&lt;span class="silver" style="color: rgb(136, 136, 136); "&gt;415&lt;/span&gt;】&lt;/b&gt;&lt;/td&gt;&lt;td style="width: 32%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;超强敏捷药剂? &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?spell=53840" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Elixir of Mighty Agility&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt; &lt;br /&gt;需要等级 70 &lt;br /&gt;Use: Increases your Agility by 45 for 1.00 hour. Battle Elixir. &lt;br /&gt;使用：使你的敏捷提高45点，持续1小时。战斗药剂。&lt;/td&gt;&lt;td style="width: 20%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_misc_herb_goldclover.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt;&lt;a href="http://wotlk.wowhead.com/?item=36901" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Goldclover&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;金苜蓿(2) &lt;br /&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_misc_herb_evergreenmoss.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?item=36903" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Adder's Tongue&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;蛇信草(2) &lt;br /&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_alchemy_imbuedvial.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 灌魔之瓶(1)&lt;/td&gt;&lt;td style="width: 33%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;训练 &lt;br /&gt;&lt;span class="blue" style="color: rgb(0, 102, 187); "&gt;联盟&lt;/span&gt;&amp;amp;&lt;span class="red" style="color: rgb(221, 0, 0); "&gt;部落&lt;/span&gt;： &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?npc=28703" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Linzy Blackbolt&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;，达拉然&lt;42,33&gt; &lt;br /&gt;&lt;span class="blue" style="color: rgb(0, 102, 187); "&gt;联盟&lt;/span&gt;： &lt;br /&gt;炼金师格里比，地狱火半岛-荣耀堡&lt;52,36&gt; &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?npc=26903" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Lanolis Dewdrop&lt;/a&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;，Howling Fjord-Valgard(嚎风峡湾-瓦尔加德?)&lt;58,62&gt; &lt;br /&gt;&lt;span class="red" style="color: rgb(221, 0, 0); "&gt;部落&lt;/span&gt;： &lt;br /&gt;部落方-药剂师安东尼维奇，地狱火半岛-萨尔玛&lt;53,65&gt; &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?npc=26951" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Wilhelmina Renel&lt;/a&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;，Howling Fjord-Vengeance Landing(嚎风峡湾-复仇码头?)&lt;79,29&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="width: 15%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_potion_165.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 390级 &lt;br /&gt;&lt;b&gt;【&lt;span class="tomato" style="color: rgb(255, 99, 71); "&gt; &lt;/span&gt;&lt;span class="sandybrown" style="color: rgb(244, 164, 96); "&gt;390&lt;/span&gt;&lt;span class="green" style="color: rgb(61, 159, 14); "&gt;395&lt;/span&gt;&lt;span class="silver" style="color: rgb(136, 136, 136); "&gt;400&lt;/span&gt;】&lt;/b&gt;&lt;/td&gt;&lt;td style="width: 32%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;超强力量药剂? &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?spell=54218" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Elixir of Mighty Strength&lt;/a&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt; &lt;br /&gt;需要等级 70 &lt;br /&gt;Use: Increases your Strength by 50 for 1.00 hour. Battle Elixir. &lt;br /&gt;使用：使你的力量提高50点，持续1小时。战斗药剂。&lt;/td&gt;&lt;td style="width: 20%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_misc_herb_tigerlily.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?item=36904" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Tiger Lily&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;卷丹(2) &lt;br /&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_alchemy_imbuedvial.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 灌魔之瓶(1)&lt;/td&gt;&lt;td style="width: 33%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;来源不明，待确定&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="width: 15%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_potion_164.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 395级 &lt;br /&gt;&lt;b&gt;【&lt;span class="tomato" style="color: rgb(255, 99, 71); "&gt; &lt;/span&gt;&lt;span class="sandybrown" style="color: rgb(244, 164, 96); "&gt;395&lt;/span&gt;&lt;span class="green" style="color: rgb(61, 159, 14); "&gt;400&lt;/span&gt;&lt;span class="silver" style="color: rgb(136, 136, 136); "&gt;405&lt;/span&gt;】&lt;/b&gt;&lt;/td&gt;&lt;td style="width: 32%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;超强坚韧药剂? &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?item=40078" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Elixir of Mighty Fortitude&lt;/a&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt; &lt;br /&gt;需要等级 70 &lt;br /&gt;Use: Increases maximum health by 350 and restores 20 health every 5 seconds for 1.00 hour. Guardian Elixir. &lt;br /&gt;使用：生命值上限提高350点，每5秒恢复20点生命值，持续1小时。守护药剂。&lt;/td&gt;&lt;td style="width: 20%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_misc_herb_goldclover.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt;&lt;a href="http://wotlk.wowhead.com/?item=36901" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Goldclover&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;金苜蓿(4) &lt;br /&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_alchemy_imbuedvial.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 灌魔之瓶(1)&lt;/td&gt;&lt;td style="width: 33%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;来源不明，待确定&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="width: 15%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_alchemy_elixir_empty.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 395级 &lt;br /&gt;&lt;b&gt;【&lt;span class="tomato" style="color: rgb(255, 99, 71); "&gt;395&lt;/span&gt;&lt;span class="sandybrown" style="color: rgb(244, 164, 96); "&gt;415&lt;/span&gt; &lt;span class="green" style="color: rgb(61, 159, 14); "&gt;422&lt;/span&gt;&lt;span class="silver" style="color: rgb(136, 136, 136); "&gt;430&lt;/span&gt;】&lt;/b&gt;&lt;/td&gt;&lt;td style="width: 32%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;不可动摇药水? &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?spell=53905" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Indestructible Potion&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt; &lt;br /&gt;需要等级 70 &lt;br /&gt;Use: Increases armor by 3500 for 2 min. (1 Min Cooldown) &lt;br /&gt;使用：护甲提高3500点，持续2分钟。（冷却时间：1分钟）&lt;/td&gt;&lt;td style="width: 20%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_misc_herb_icethorn.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt;&lt;a href="http://wotlk.wowhead.com/?item=36906" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Icethorn&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;冰棘草(2) &lt;br /&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_misc_herb_whispervine.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt;&lt;a href="http://wotlk.wowhead.com/?item=36905" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Lichbloom&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;巫妖花(1) &lt;br /&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_alchemy_imbuedvial.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 灌魔之瓶(1)&lt;/td&gt;&lt;td style="width: 33%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;训练 &lt;br /&gt;&lt;span class="blue" style="color: rgb(0, 102, 187); "&gt;联盟&lt;/span&gt;&amp;amp;&lt;span class="red" style="color: rgb(221, 0, 0); "&gt;部落&lt;/span&gt;： &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?npc=28703" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Linzy Blackbolt&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;，达拉然&lt;42,33&gt; &lt;br /&gt;&lt;span class="blue" style="color: rgb(0, 102, 187); "&gt;联盟&lt;/span&gt;： &lt;br /&gt;炼金师格里比，地狱火半岛-荣耀堡&lt;52,36&gt; &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?npc=26903" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Lanolis Dewdrop&lt;/a&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;，Howling Fjord-Valgard(嚎风峡湾-瓦尔加德?)&lt;58,62&gt; &lt;br /&gt;&lt;span class="red" style="color: rgb(221, 0, 0); "&gt;部落&lt;/span&gt;： &lt;br /&gt;部落方-药剂师安东尼维奇，地狱火半岛-萨尔玛&lt;53,65&gt; &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?npc=26951" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Wilhelmina Renel&lt;/a&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;，Howling Fjord-Vengeance Landing(嚎风峡湾-复仇码头?)&lt;79,29&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="width: 15%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_potion_161.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 400级 &lt;br /&gt;&lt;b&gt;【&lt;span class="tomato" style="color: rgb(255, 99, 71); "&gt; &lt;/span&gt;&lt;span class="sandybrown" style="color: rgb(244, 164, 96); "&gt;400&lt;/span&gt;&lt;span class="green" style="color: rgb(61, 159, 14); "&gt;407&lt;/span&gt;&lt;span class="silver" style="color: rgb(136, 136, 136); "&gt;415&lt;/span&gt;】&lt;/b&gt;&lt;/td&gt;&lt;td style="width: 32%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;超强智慧药剂 &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?spell=60367" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Elixir of Mighty Thoughts&lt;/a&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt; &lt;br /&gt;需要等级 65 &lt;br /&gt;Use: Increases your Intellect by 45 for 1.00 hour. Guardian Elixir. &lt;br /&gt;使用：使你的智力提高45点，持续1小时。守护药剂。&lt;/td&gt;&lt;td style="width: 20%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_misc_herb_constrictorgrass.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt;&lt;a href="http://wotlk.wowhead.com/?item=37921" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Deadnettle&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;死亡荨麻(2) &lt;br /&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_misc_herb_talandrasrose.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt;&lt;a href="http://wotlk.wowhead.com/?item=36907" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Talandra's Rose&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;塔兰德拉的玫瑰(3) &lt;br /&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_alchemy_imbuedvial.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 灌魔之瓶(1)&lt;/td&gt;&lt;td style="width: 33%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;来源不明，待确定&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="width: 15%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_potion_124.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 400级 &lt;br /&gt;&lt;b&gt;【&lt;span class="tomato" style="color: rgb(255, 99, 71); "&gt;400&lt;/span&gt;&lt;span class="sandybrown" style="color: rgb(244, 164, 96); "&gt;410&lt;/span&gt; &lt;span class="green" style="color: rgb(61, 159, 14); "&gt;415&lt;/span&gt;&lt;span class="silver" style="color: rgb(136, 136, 136); "&gt;420&lt;/span&gt;】&lt;/b&gt;&lt;/td&gt;&lt;td style="width: 32%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;超强火焰防护药水? &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?spell=53939" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Mighty Fire Protection Potion&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt; &lt;br /&gt;需要等级 70 &lt;br /&gt;Use: Absorbs 4200 to 6000 fire damage. Lasts 2 min. (1 Min Cooldown) &lt;br /&gt;使用：吸收4200到6000点火焰伤害。持续2分钟。（冷却时间：1分钟）&lt;/td&gt;&lt;td style="width: 20%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_elemental_crystal_water.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt;&lt;a href="http://wotlk.wowhead.com/?item=37705" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Crystallized Water&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;晶化之水(2) &lt;br /&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_alchemy_imbuedvial.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 灌魔之瓶(1)&lt;/td&gt;&lt;td style="width: 33%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?item=44565" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Recipe: Mighty Fire Protection Potion&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt; &lt;br /&gt;配方：超强火焰防护药水 &lt;br /&gt;来源不明，待确定&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="width: 15%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_potion_126.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 400级 &lt;br /&gt;&lt;b&gt;【&lt;span class="tomato" style="color: rgb(255, 99, 71); "&gt;400&lt;/span&gt;&lt;span class="sandybrown" style="color: rgb(244, 164, 96); "&gt;410&lt;/span&gt; &lt;span class="green" style="color: rgb(61, 159, 14); "&gt;415&lt;/span&gt;&lt;span class="silver" style="color: rgb(136, 136, 136); "&gt;420&lt;/span&gt;】&lt;/b&gt; &lt;br /&gt;超强冰霜防护药水?&lt;/td&gt;&lt;td style="width: 32%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?spell=53937" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Mighty Frost Protection Potion&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt; &lt;br /&gt;需要等级 70 &lt;br /&gt;Use: Absorbs 4200 to 6000 frost damage. Lasts 2 min. (1 Min Cooldown) &lt;br /&gt;使用：吸收4200到6000点冰霜伤害。持续2分钟。（冷却时间：1分钟）&lt;/td&gt;&lt;td style="width: 20%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_elemental_crystal_fire.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt;&lt;a href="http://wotlk.wowhead.com/?item=37702" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Crystallized Fire&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;晶化火焰(2) &lt;br /&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_alchemy_imbuedvial.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 灌魔之瓶(1)&lt;/td&gt;&lt;td style="width: 33%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?item=44566" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Recipe: Mighty Frost Protection Potion&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt; &lt;br /&gt;配方：超强冰霜防护药水 &lt;br /&gt;来源不明，待确定&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="width: 15%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_potion_127.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 400级 &lt;br /&gt;&lt;b&gt;【&lt;span class="tomato" style="color: rgb(255, 99, 71); "&gt;400&lt;/span&gt;&lt;span class="sandybrown" style="color: rgb(244, 164, 96); "&gt;410&lt;/span&gt; &lt;span class="green" style="color: rgb(61, 159, 14); "&gt;415&lt;/span&gt;&lt;span class="silver" style="color: rgb(136, 136, 136); "&gt;420&lt;/span&gt;】&lt;/b&gt;&lt;/td&gt;&lt;td style="width: 32%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;超强自然防护药水? &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?spell=53942" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Mighty Nature Protection Potion&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt; &lt;br /&gt;需要等级 70 &lt;br /&gt;Use: Absorbs 4200 to 6000 nature damage. Lasts 2 min. (1 Min Cooldown) &lt;br /&gt;使用：吸收4200到6000点自然伤害。持续2分钟。（冷却时间：1分钟）&lt;/td&gt;&lt;td style="width: 20%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_elemental_crystal_shadow.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt;&lt;a href="http://wotlk.wowhead.com/?item=37703" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Crystallized Shadow&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;晶化暗影(2) &lt;br /&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_alchemy_imbuedvial.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 灌魔之瓶(1)&lt;/td&gt;&lt;td style="width: 33%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?item=44567" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Recipe: Mighty Nature Protection Potion&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt; &lt;br /&gt;配方：超强自然防护药水 &lt;br /&gt;来源不明，待确定&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="width: 15%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_elemental_eternal_earth.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 405级 &lt;br /&gt;&lt;b&gt;【&lt;span class="tomato" style="color: rgb(255, 99, 71); "&gt; &lt;/span&gt;&lt;span class="sandybrown" style="color: rgb(244, 164, 96); "&gt;405&lt;/span&gt;&lt;span class="green" style="color: rgb(61, 159, 14); "&gt;415&lt;/span&gt;&lt;span class="silver" style="color: rgb(136, 136, 136); "&gt;425&lt;/span&gt;】&lt;/b&gt;&lt;/td&gt;&lt;td style="width: 32%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;转化：永恒空气至永恒之土? &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?spell=53777" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Transmute: Eternal Air to Earth&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt; &lt;br /&gt;Transmutes Eternal Air to Earth. You have a chance to discover other transmutations when successful. &lt;br /&gt;将永恒空气转化为永恒之土。转化成功时你有一定几率领悟其它转化配方。（需要点金石）（冷却时间：20小时）&lt;/td&gt;&lt;td style="width: 20%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_elemental_eternal_air.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?item=35623" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Eternal Air&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;永恒空气(1)&lt;/td&gt;&lt;td style="width: 33%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;领悟&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="width: 15%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_elemental_eternal_water.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 405级 &lt;br /&gt;&lt;b&gt;【&lt;span class="tomato" style="color: rgb(255, 99, 71); "&gt; &lt;/span&gt;&lt;span class="sandybrown" style="color: rgb(244, 164, 96); "&gt;405&lt;/span&gt;&lt;span class="green" style="color: rgb(61, 159, 14); "&gt;415&lt;/span&gt;&lt;span class="silver" style="color: rgb(136, 136, 136); "&gt;425&lt;/span&gt;】&lt;/b&gt;&lt;/td&gt;&lt;td style="width: 32%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;转化：永恒空气至永恒之水? &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?spell=53776" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Transmute: Eternal Air to Water&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt; &lt;br /&gt;Transmutes Eternal Air to Water. You have a chance to discover other transmutations when successful. &lt;br /&gt;将永恒空气转化为永恒之水。转化成功时你有一定几率领悟其它转化配方。（需要点金石）（冷却时间：20小时）&lt;/td&gt;&lt;td style="width: 20%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_elemental_eternal_air.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?item=35623" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Eternal Air&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;永恒空气(1)&lt;/td&gt;&lt;td style="width: 33%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;领悟&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="width: 15%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_alchemy_endlessflask_06.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; 410级 &lt;br /&gt;&lt;b&gt;【&lt;span class="tomato" style="color: rgb(255, 99, 71); "&gt; &lt;/span&gt;&lt;span class="sandybrown" style="color: rgb(244, 164, 96); "&gt;410&lt;/span&gt;&lt;span class="green" style="color: rgb(61, 159, 14); "&gt;412&lt;/span&gt;&lt;span class="silver" style="color: rgb(136, 136, 136); "&gt;415&lt;/span&gt;】&lt;/b&gt;&lt;/td&gt;&lt;td style="width: 32%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;无尽治疗药水? &lt;br /&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?spell=58871" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Endless Healing Potion&lt;/a&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;&lt;br /&gt;&lt;b&gt;拾取绑定 唯一&lt;/b&gt; &lt;br /&gt;&lt;b&gt;需要 炼金术(400)&lt;/b&gt; &lt;br /&gt;Use: Restores 1680 to 2160 health. (3 Min Cooldown) &lt;br /&gt;"Sanctioned for arenas." &lt;br /&gt;使用：恢复1680到2160点生命值（冷却时间：3分钟） &lt;br /&gt;"获得竞技场认可"&lt;/td&gt;&lt;td style="width: 20%; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(170, 170, 170); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(170, 170, 170); font-size: 12px; text-align: left; padding-top: 6px; padding-right: 6px; padding-bottom: 6px; padding-left: 6px; line-height: 18px; "&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_alchemy_elixir_05.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt; &lt;a href="http://wotlk.wowhead.com/?item=33447" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Runic Healing Potion&lt;/a&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;符文治疗药水(10) &lt;br /&gt;&lt;img src="http://static.wowhead.com/images/icons/medium/inv_alchemy_enchantedvial.jpg" alt="" onerror="this.nextSibling.style.display=&amp;quot;inline&amp;quot;" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); " /&gt; &lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;[&lt;/span&gt;&lt;a href="http://wotlk.wowhead.com/?item=40411" target="_blank" onclick="prevElement(this).childNodes[0].style.display=&amp;quot;inline&amp;quot;;return false" onmouseover="this.childNodes[0].style.display=&amp;quot;inline&amp;quot;" onmouseout="this.childNodes[0].style.display=&amp;quot;none&amp;quot;" style="text-decoration: none; color: rgb(29, 42, 99); "&gt;Enchanted Vial&lt;/a&gt;&lt;span class="chocolate" style="color: rgb(210, 105, 30); "&gt;]&lt;/span&gt;附魔之瓶(
