parent
006adb9fc0
commit
6f5326f93e
98
run.asv
98
run.asv
|
|
@ -10,10 +10,11 @@ addpath('.\Powerflow')
|
|||
% 电压 相角
|
||||
%%
|
||||
%% 开始生成量测量
|
||||
sigma=0.01;% ±ê×¼²î
|
||||
sigma=0.05;% 标准差
|
||||
%% 电压
|
||||
%电压幅值
|
||||
rVolt=Volt; %幅值
|
||||
BalanceVolt=Volt(Balance);
|
||||
mVolt=rVolt.*(normrnd(0,sigma,length(Volt),1)+1);%电压量测量
|
||||
rVAngel=Vangle;
|
||||
%% 电流
|
||||
|
|
@ -29,15 +30,18 @@ lineI=newwordParameter.line.lineI;
|
|||
lineJ=newwordParameter.line.lineJ;
|
||||
lineR=newwordParameter.line.lineR;
|
||||
lineX=newwordParameter.line.lineX;
|
||||
lineB2=newwordParameter.line;
|
||||
|
||||
lineB2=newwordParameter.line.lineB2;
|
||||
lineG=1./lineR;
|
||||
lineB=1./lineX;
|
||||
cmpBranchI=(cmpV(lineI)-cmpV(lineJ))./(lineR+1j*lineX);%复数支路电流
|
||||
rBranchI=abs(cmpBranchI);% 支路电流幅值
|
||||
mBranchI=rBranchI.*(normrnd(0,sigma,length(rBranchI),1)+1);%支路电流量测量
|
||||
%% 支路功率
|
||||
rBranchP=real((cmpV(lineI)-cmpV(lineJ)).*conj(cmpBranchI));
|
||||
rBranchP=rBranchP(abs(rBranchP)>1e-5);
|
||||
mBranchP=rBranchP.*(normrnd(0,sigma,length(rBranchP),1)+1);%支路功率量测量
|
||||
rBranchQ=imag((cmpV(lineI)-cmpV(lineJ)).*conj(cmpBranchI));
|
||||
rBranchQ=rBranchQ(abs(rBranchQ)>1e-5);
|
||||
mBranchQ=rBranchQ.*(normrnd(0,sigma,length(rBranchQ),1)+1);%支路功率量测量
|
||||
%% 注入功率
|
||||
rPD=PD;
|
||||
|
|
@ -71,7 +75,6 @@ measurements=length(mVolt)+length(mBranchI)+length(mBranchP)+length(mBranchQ)+le
|
|||
fprintf('冗余度 %f\n',measurements/stateVarCount);
|
||||
%% Opti ToolBox
|
||||
Busnum=length(Volt);
|
||||
seOpti=SEOpti();
|
||||
%% save
|
||||
% save('mVolt','mVolt');
|
||||
% save('mPG','mPG');
|
||||
|
|
@ -82,36 +85,65 @@ seOpti=SEOpti();
|
|||
% save('mTransP','mTransP');
|
||||
% save('mTransQ','mTransQ');
|
||||
%% load
|
||||
load('mVolt');
|
||||
load('mPG');
|
||||
load('mQG');
|
||||
load('mBranchI');
|
||||
load('mBranchP');
|
||||
load('mBranchQ');
|
||||
load('mTransP');
|
||||
load('mTransQ');
|
||||
seOpti=seOpti.init(Busnum, mVolt,sigma,newwordParameter,zerosInjectionIndex,cmpY,onlyPG,onlyQG,mPG,mQG,Balance,mBranchI,mBranchP,mBranchQ,mTransP,mTransQ);
|
||||
opts = optiset('solver','ipopt');
|
||||
opts.maxiter=85500;
|
||||
opts.maxtime=3000;
|
||||
opts.maxfeval=85000;
|
||||
opts.maxnodes=85000;
|
||||
opts.tolrfun=1e-4;
|
||||
opts.tolafun=1e-4;
|
||||
opts.warnings='all';
|
||||
opts.display='off';
|
||||
% x0=[ones(Busnum,1);zeros(Busnum,1)];
|
||||
x0=[rVolt;rVAngle];
|
||||
[~,seOpti]=seOpti.equ(x0);
|
||||
nlrhs=seOpti.nlrhs();
|
||||
nle=seOpti.nle();
|
||||
Opt = opti('fun',@seOpti.fun,'ndec',length(Volt)*2,'nlmix',@seOpti.equ,nlrhs,nle,'options',opts)
|
||||
% Opt = opti('fun',@seOpti.fun,'ndec',length(Volt)*2,'options',opts)
|
||||
[x,fval,exitflag,info] = solve(Opt,x0);
|
||||
info
|
||||
% load('mVolt');
|
||||
% load('mPG');
|
||||
% load('mQG');
|
||||
% load('mBranchI');
|
||||
% load('mBranchP');
|
||||
% load('mBranchQ');
|
||||
% load('mTransP');
|
||||
% load('mTransQ');
|
||||
%% 自己写的微分代码
|
||||
% 以下都是Jacobi矩阵
|
||||
SEVolt=sparse(ones(length(mVolt),1));
|
||||
SEVAngel=sparse(zeros(length(mVolt),1));
|
||||
|
||||
dV_dV=sparse(1:length(mVolt),1:length(mVolt),1,length(mVolt),length(mVolt));%电压量测量的微分
|
||||
dV_dTyta=sparse(length(mVolt),length(mVolt));
|
||||
dLPij_dVi=sparse(1:length(lineI),lineJ, ...
|
||||
-SEVolt(lineJ).*( ...
|
||||
lineG.*cos(SEVAngel(lineI)-SEVAngel(lineJ)) +lineX.*sin(SEVAngel(lineI)-SEVAngel(lineJ))...
|
||||
)...
|
||||
+2*(lineG).*SEVolt(lineI) ...
|
||||
,length(lineI),length(mVolt));%线路的
|
||||
dLPij_dVj=sparse(1:length(lineI),lineJ, ...
|
||||
-SEVolt(lineI).*( ...
|
||||
lineG.*cos(SEVAngel(lineI)-SEVAngel(lineJ)) +lineX.*sin(SEVAngel(lineI)-SEVAngel(lineJ))...
|
||||
) ...
|
||||
,length(lineI),length(mVolt));%线路的
|
||||
% 处理线路电阻或电抗为0的情况,即消除NaN
|
||||
zerosRXInd=union(find(abs(lineR)<1e-5),find(abs(lineX)<1e-5));
|
||||
dLPij_dVi=dLPij_dVi(setdiff( 1:size(dLPij_dVi,1),zerosRXInd),:);
|
||||
dLPij_dVj=dLPij_dVj(setdiff( 1:size(dLPij_dVj,1),zerosRXInd),:);
|
||||
dLQij_dVi=sparse(1:length(lineI),lineJ, ...
|
||||
-SEVolt(lineJ).*( ...
|
||||
lineG.*cos(SEVAngel(lineI)-SEVAngel(lineJ)) -lineX.*sin(SEVAngel(lineI)-SEVAngel(lineJ))...
|
||||
)...
|
||||
-2*(lineB+lineB2).*SEVolt(lineI) ...
|
||||
,length(lineI),length(mVolt));%线路的
|
||||
dLQij_dVj=sparse(1:length(lineI),lineJ, ...
|
||||
-SEVolt(lineI).*( ...
|
||||
lineG.*sin(SEVAngel(lineI)-SEVAngel(lineJ)) -lineX.*cos(SEVAngel(lineI)-SEVAngel(lineJ))...
|
||||
) ...
|
||||
,length(lineI),length(mVolt));%线路的
|
||||
dLQij_dVi=dLQij_dVi(setdiff( 1:size(dLQij_dVi,1),zerosRXInd),:);
|
||||
dLQij_dVj=dLQij_dVj(setdiff( 1:size(dLQij_dVj,1),zerosRXInd),:);
|
||||
%% 进入迭代
|
||||
H=[dV_dV ;dV_dTyta]';
|
||||
h=SEVolt;
|
||||
z=mVolt;
|
||||
W=sparse(1:length(mVolt),1:length(mVolt),1/sigma.^2,length(mVolt),length(mVolt));
|
||||
G=H'*W*H;
|
||||
g=-H'*W*(z-h);
|
||||
% 平衡节点相角恒定;
|
||||
G(length(mVolt)+Balance,:)=0;
|
||||
G(:,length(mVolt)+Balance)=0;
|
||||
G=G+sparse(length(mVolt)+Balance,length(mVolt)+Balance,1,length(mVolt)*2,length(mVolt)*2);
|
||||
g(length(mVolt)+Balance)=0;
|
||||
dX=-g\G;
|
||||
% 更新变量
|
||||
SEVolt=SEVolt+
|
||||
%% 输出结果
|
||||
SEVolt=x(1:length(Volt));
|
||||
SEVAngel=x(length(Volt)+Balance:2*length(Volt));
|
||||
fprintf('目标函数为:%f\n',fval);
|
||||
fprintf('相对误差\n');
|
||||
(abs(rVolt-double(SEVolt)))./(rVolt)
|
||||
|
|
|
|||
90
run.m
90
run.m
|
|
@ -30,8 +30,9 @@ lineI=newwordParameter.line.lineI;
|
|||
lineJ=newwordParameter.line.lineJ;
|
||||
lineR=newwordParameter.line.lineR;
|
||||
lineX=newwordParameter.line.lineX;
|
||||
lineB2=newwordParameter.line;
|
||||
|
||||
lineB2=newwordParameter.line.lineB2;
|
||||
lineG=1./lineR;
|
||||
lineB=1./lineX;
|
||||
cmpBranchI=(cmpV(lineI)-cmpV(lineJ))./(lineR+1j*lineX);%复数支路电流
|
||||
rBranchI=abs(cmpBranchI);% 支路电流幅值
|
||||
mBranchI=rBranchI.*(normrnd(0,sigma,length(rBranchI),1)+1);%支路电流量测量
|
||||
|
|
@ -74,7 +75,6 @@ measurements=length(mVolt)+length(mBranchI)+length(mBranchP)+length(mBranchQ)+le
|
|||
fprintf('冗余度 %f\n',measurements/stateVarCount);
|
||||
%% Opti ToolBox
|
||||
Busnum=length(Volt);
|
||||
seOpti=SEOpti();
|
||||
%% save
|
||||
% save('mVolt','mVolt');
|
||||
% save('mPG','mPG');
|
||||
|
|
@ -93,31 +93,69 @@ seOpti=SEOpti();
|
|||
% load('mBranchQ');
|
||||
% load('mTransP');
|
||||
% load('mTransQ');
|
||||
seOpti=seOpti.init(Busnum, mVolt,sigma,newwordParameter,zerosInjectionIndex,cmpY,onlyPG,onlyQG,mPG,mQG,Balance,mBranchI,mBranchP,mBranchQ,mTransP,mTransQ,BalanceVolt,rVolt,rVAngel);
|
||||
opts = optiset('solver','ipopt');
|
||||
opts.maxiter=85500;
|
||||
opts.maxtime=3000;
|
||||
opts.maxfeval=85000;
|
||||
opts.maxnodes=85000;
|
||||
opts.tolrfun=1e-4;
|
||||
opts.tolafun=1e-4;
|
||||
opts.warnings='all';
|
||||
opts.display='off';
|
||||
x0=[ones(Busnum,1);-0.2*ones(Busnum,1)];
|
||||
% x0=[rVolt;rVAngel];
|
||||
[~,seOpti]=seOpti.equ(x0);
|
||||
nlrhs=seOpti.nlrhs();
|
||||
nle=seOpti.nle();
|
||||
Opt = opti('fun',@seOpti.fun,'ndec',length(Volt)*2,'nlmix',@seOpti.equ,nlrhs,nle,'options',opts)
|
||||
% Opt = opti('fun',@seOpti.fun,'ndec',length(Volt)*2,'options',opts)
|
||||
[x,fval,exitflag,info] = solve(Opt,x0);
|
||||
info
|
||||
%% 自己写的微分代码
|
||||
% 以下都是Jacobi矩阵
|
||||
SEVolt=sparse(ones(length(mVolt),1));
|
||||
SEVAngel=sparse(zeros(length(mVolt),1));
|
||||
maxD=1000;
|
||||
Iteration=0;
|
||||
while maxD>1e-3;
|
||||
dV_dV=sparse(1:length(mVolt),1:length(mVolt),1,length(mVolt),length(mVolt));%电压量测量的微分
|
||||
dV_dTyta=sparse(length(mVolt),length(mVolt));
|
||||
dLPij_dVi=sparse(1:length(lineI),lineJ, ...
|
||||
-SEVolt(lineJ).*( ...
|
||||
lineG.*cos(SEVAngel(lineI)-SEVAngel(lineJ)) +lineX.*sin(SEVAngel(lineI)-SEVAngel(lineJ))...
|
||||
)...
|
||||
+2*(lineG).*SEVolt(lineI) ...
|
||||
,length(lineI),length(mVolt));%线路的
|
||||
dLPij_dVj=sparse(1:length(lineI),lineJ, ...
|
||||
-SEVolt(lineI).*( ...
|
||||
lineG.*cos(SEVAngel(lineI)-SEVAngel(lineJ)) +lineX.*sin(SEVAngel(lineI)-SEVAngel(lineJ))...
|
||||
) ...
|
||||
,length(lineI),length(mVolt));%线路的
|
||||
% 处理线路电阻或电抗为0的情况,即消除NaN
|
||||
zerosRXInd=union(find(abs(lineR)<1e-5),find(abs(lineX)<1e-5));
|
||||
dLPij_dVi=dLPij_dVi(setdiff( 1:size(dLPij_dVi,1),zerosRXInd),:);
|
||||
dLPij_dVj=dLPij_dVj(setdiff( 1:size(dLPij_dVj,1),zerosRXInd),:);
|
||||
dLQij_dVi=sparse(1:length(lineI),lineJ, ...
|
||||
-SEVolt(lineJ).*( ...
|
||||
lineG.*cos(SEVAngel(lineI)-SEVAngel(lineJ)) -lineX.*sin(SEVAngel(lineI)-SEVAngel(lineJ))...
|
||||
)...
|
||||
-2*(lineB+lineB2).*SEVolt(lineI) ...
|
||||
,length(lineI),length(mVolt));%线路的
|
||||
dLQij_dVj=sparse(1:length(lineI),lineJ, ...
|
||||
-SEVolt(lineI).*( ...
|
||||
lineG.*sin(SEVAngel(lineI)-SEVAngel(lineJ)) -lineX.*cos(SEVAngel(lineI)-SEVAngel(lineJ))...
|
||||
) ...
|
||||
,length(lineI),length(mVolt));%线路的
|
||||
dLQij_dVi=dLQij_dVi(setdiff( 1:size(dLQij_dVi,1),zerosRXInd),:);
|
||||
dLQij_dVj=dLQij_dVj(setdiff( 1:size(dLQij_dVj,1),zerosRXInd),:);
|
||||
%% 进入迭代
|
||||
H=[dV_dV ,dV_dTyta];
|
||||
% H=[dV_dV];
|
||||
h=SEVolt;
|
||||
z=mVolt;
|
||||
W=sparse(1:length(mVolt),1:length(mVolt),1/sigma.^2,length(mVolt),length(mVolt));
|
||||
G=H'*W*H;
|
||||
g=-H'*W*(z-h);
|
||||
% 平衡节点相角恒定;
|
||||
% G(length(mVolt)+Balance,:)=0;
|
||||
% G(:,length(mVolt)+Balance)=0;
|
||||
% G=G+sparse(length(mVolt)+Balance,length(mVolt)+Balance,1,length(mVolt)*2,length(mVolt)*2);
|
||||
% g(length(mVolt)+Balance)=0;
|
||||
dX=G\-g;
|
||||
maxD=max(abs(dX))
|
||||
% 更新变量
|
||||
SEVolt=SEVolt+dX(1:length(mVolt));
|
||||
Iteration=Iteration+1;
|
||||
SEVAngel=SEVAngel+dX(length(mVolt)+1:end);
|
||||
end
|
||||
%% 输出结果
|
||||
SEVolt=x(1:length(Volt));
|
||||
SEVAngel=x(length(Volt)+Balance:2*length(Volt));
|
||||
fprintf('迭代%d次\n',Iteration);
|
||||
h=SEVolt;
|
||||
fval=full((z-h)'*W*(z-h));
|
||||
fprintf('目标函数为:%f\n',fval);
|
||||
fprintf('相对误差\n');
|
||||
(abs(rVolt-double(SEVolt)))./(rVolt)
|
||||
MaxDeviation(rVolt,SEVolt,rVAngel,SEVAngel)
|
||||
plotAndComparison( rVolt,rVAngel,SEVolt,SEVAngel )
|
||||
seOpti.fun(x);
|
||||
plotAndComparison( rVolt,rVAngel,SEVolt,SEVAngel )
|
||||
|
|
@ -0,0 +1,918 @@
|
|||
This is XeTeX, Version 3.1415926-2.3-0.9997.5 (MiKTeX 2.9) (preloaded format=xelatex 2013.5.6) 14 AUG 2013 12:13
|
||||
entering extended mode
|
||||
**å…¬å¼<C3A5>.tex
|
||||
(D:\Matlab\StateEstimation-self-derivatives\å…¬å¼<C3A5>\å…¬å¼<C3A5>.tex
|
||||
LaTeX2e <2011/06/27>
|
||||
Babel <v3.8m> and hyphenation patterns for loaded.
|
||||
(C:\CTEX\MiKTeX\tex\latex\base\report.cls
|
||||
Document Class: report 2007/10/19 v1.4h Standard LaTeX document class
|
||||
(C:\CTEX\MiKTeX\tex\latex\base\size10.clo
|
||||
File: size10.clo 2007/10/19 v1.4h Standard LaTeX file (size option)
|
||||
)
|
||||
\c@part=\count80
|
||||
\c@chapter=\count81
|
||||
\c@section=\count82
|
||||
\c@subsection=\count83
|
||||
\c@subsubsection=\count84
|
||||
\c@paragraph=\count85
|
||||
\c@subparagraph=\count86
|
||||
\c@figure=\count87
|
||||
\c@table=\count88
|
||||
\abovecaptionskip=\skip41
|
||||
\belowcaptionskip=\skip42
|
||||
\bibindent=\dimen102
|
||||
)
|
||||
(C:\CTEX\MiKTeX\tex\latex\base\inputenc.sty
|
||||
Package: inputenc 2008/03/30 v1.1d Input encoding file
|
||||
\inpenc@prehook=\toks14
|
||||
\inpenc@posthook=\toks15
|
||||
|
||||
(C:\CTEX\MiKTeX\tex\latex\base\utf8.def
|
||||
File: utf8.def 2008/04/05 v1.1m UTF-8 support for inputenc
|
||||
Now handling font encoding OML ...
|
||||
... no UTF-8 mapping file for font encoding OML
|
||||
Now handling font encoding T1 ...
|
||||
... processing UTF-8 mapping file for font encoding T1
|
||||
|
||||
(C:\CTEX\MiKTeX\tex\latex\base\t1enc.dfu
|
||||
File: t1enc.dfu 2008/04/05 v1.1m UTF-8 support for inputenc
|
||||
defining Unicode char U+00A1 (decimal 161)
|
||||
defining Unicode char U+00A3 (decimal 163)
|
||||
defining Unicode char U+00AB (decimal 171)
|
||||
defining Unicode char U+00BB (decimal 187)
|
||||
defining Unicode char U+00BF (decimal 191)
|
||||
defining Unicode char U+00C0 (decimal 192)
|
||||
defining Unicode char U+00C1 (decimal 193)
|
||||
defining Unicode char U+00C2 (decimal 194)
|
||||
defining Unicode char U+00C3 (decimal 195)
|
||||
defining Unicode char U+00C4 (decimal 196)
|
||||
defining Unicode char U+00C5 (decimal 197)
|
||||
defining Unicode char U+00C6 (decimal 198)
|
||||
defining Unicode char U+00C7 (decimal 199)
|
||||
defining Unicode char U+00C8 (decimal 200)
|
||||
defining Unicode char U+00C9 (decimal 201)
|
||||
defining Unicode char U+00CA (decimal 202)
|
||||
defining Unicode char U+00CB (decimal 203)
|
||||
defining Unicode char U+00CC (decimal 204)
|
||||
defining Unicode char U+00CD (decimal 205)
|
||||
defining Unicode char U+00CE (decimal 206)
|
||||
defining Unicode char U+00CF (decimal 207)
|
||||
defining Unicode char U+00D0 (decimal 208)
|
||||
defining Unicode char U+00D1 (decimal 209)
|
||||
defining Unicode char U+00D2 (decimal 210)
|
||||
defining Unicode char U+00D3 (decimal 211)
|
||||
defining Unicode char U+00D4 (decimal 212)
|
||||
defining Unicode char U+00D5 (decimal 213)
|
||||
defining Unicode char U+00D6 (decimal 214)
|
||||
defining Unicode char U+00D8 (decimal 216)
|
||||
defining Unicode char U+00D9 (decimal 217)
|
||||
defining Unicode char U+00DA (decimal 218)
|
||||
defining Unicode char U+00DB (decimal 219)
|
||||
defining Unicode char U+00DC (decimal 220)
|
||||
defining Unicode char U+00DD (decimal 221)
|
||||
defining Unicode char U+00DE (decimal 222)
|
||||
defining Unicode char U+00DF (decimal 223)
|
||||
defining Unicode char U+00E0 (decimal 224)
|
||||
defining Unicode char U+00E1 (decimal 225)
|
||||
defining Unicode char U+00E2 (decimal 226)
|
||||
defining Unicode char U+00E3 (decimal 227)
|
||||
defining Unicode char U+00E4 (decimal 228)
|
||||
defining Unicode char U+00E5 (decimal 229)
|
||||
defining Unicode char U+00E6 (decimal 230)
|
||||
defining Unicode char U+00E7 (decimal 231)
|
||||
defining Unicode char U+00E8 (decimal 232)
|
||||
defining Unicode char U+00E9 (decimal 233)
|
||||
defining Unicode char U+00EA (decimal 234)
|
||||
defining Unicode char U+00EB (decimal 235)
|
||||
defining Unicode char U+00EC (decimal 236)
|
||||
defining Unicode char U+00ED (decimal 237)
|
||||
defining Unicode char U+00EE (decimal 238)
|
||||
defining Unicode char U+00EF (decimal 239)
|
||||
defining Unicode char U+00F0 (decimal 240)
|
||||
defining Unicode char U+00F1 (decimal 241)
|
||||
defining Unicode char U+00F2 (decimal 242)
|
||||
defining Unicode char U+00F3 (decimal 243)
|
||||
defining Unicode char U+00F4 (decimal 244)
|
||||
defining Unicode char U+00F5 (decimal 245)
|
||||
defining Unicode char U+00F6 (decimal 246)
|
||||
defining Unicode char U+00F8 (decimal 248)
|
||||
defining Unicode char U+00F9 (decimal 249)
|
||||
defining Unicode char U+00FA (decimal 250)
|
||||
defining Unicode char U+00FB (decimal 251)
|
||||
defining Unicode char U+00FC (decimal 252)
|
||||
defining Unicode char U+00FD (decimal 253)
|
||||
defining Unicode char U+00FE (decimal 254)
|
||||
defining Unicode char U+00FF (decimal 255)
|
||||
defining Unicode char U+0102 (decimal 258)
|
||||
defining Unicode char U+0103 (decimal 259)
|
||||
defining Unicode char U+0104 (decimal 260)
|
||||
defining Unicode char U+0105 (decimal 261)
|
||||
defining Unicode char U+0106 (decimal 262)
|
||||
defining Unicode char U+0107 (decimal 263)
|
||||
defining Unicode char U+010C (decimal 268)
|
||||
defining Unicode char U+010D (decimal 269)
|
||||
defining Unicode char U+010E (decimal 270)
|
||||
defining Unicode char U+010F (decimal 271)
|
||||
defining Unicode char U+0110 (decimal 272)
|
||||
defining Unicode char U+0111 (decimal 273)
|
||||
defining Unicode char U+0118 (decimal 280)
|
||||
defining Unicode char U+0119 (decimal 281)
|
||||
defining Unicode char U+011A (decimal 282)
|
||||
defining Unicode char U+011B (decimal 283)
|
||||
defining Unicode char U+011E (decimal 286)
|
||||
defining Unicode char U+011F (decimal 287)
|
||||
defining Unicode char U+0130 (decimal 304)
|
||||
defining Unicode char U+0131 (decimal 305)
|
||||
defining Unicode char U+0132 (decimal 306)
|
||||
defining Unicode char U+0133 (decimal 307)
|
||||
defining Unicode char U+0139 (decimal 313)
|
||||
defining Unicode char U+013A (decimal 314)
|
||||
defining Unicode char U+013D (decimal 317)
|
||||
defining Unicode char U+013E (decimal 318)
|
||||
defining Unicode char U+0141 (decimal 321)
|
||||
defining Unicode char U+0142 (decimal 322)
|
||||
defining Unicode char U+0143 (decimal 323)
|
||||
defining Unicode char U+0144 (decimal 324)
|
||||
defining Unicode char U+0147 (decimal 327)
|
||||
defining Unicode char U+0148 (decimal 328)
|
||||
defining Unicode char U+014A (decimal 330)
|
||||
defining Unicode char U+014B (decimal 331)
|
||||
defining Unicode char U+0150 (decimal 336)
|
||||
defining Unicode char U+0151 (decimal 337)
|
||||
defining Unicode char U+0152 (decimal 338)
|
||||
defining Unicode char U+0153 (decimal 339)
|
||||
defining Unicode char U+0154 (decimal 340)
|
||||
defining Unicode char U+0155 (decimal 341)
|
||||
defining Unicode char U+0158 (decimal 344)
|
||||
defining Unicode char U+0159 (decimal 345)
|
||||
defining Unicode char U+015A (decimal 346)
|
||||
defining Unicode char U+015B (decimal 347)
|
||||
defining Unicode char U+015E (decimal 350)
|
||||
defining Unicode char U+015F (decimal 351)
|
||||
defining Unicode char U+0160 (decimal 352)
|
||||
defining Unicode char U+0161 (decimal 353)
|
||||
defining Unicode char U+0162 (decimal 354)
|
||||
defining Unicode char U+0163 (decimal 355)
|
||||
defining Unicode char U+0164 (decimal 356)
|
||||
defining Unicode char U+0165 (decimal 357)
|
||||
defining Unicode char U+016E (decimal 366)
|
||||
defining Unicode char U+016F (decimal 367)
|
||||
defining Unicode char U+0170 (decimal 368)
|
||||
defining Unicode char U+0171 (decimal 369)
|
||||
defining Unicode char U+0178 (decimal 376)
|
||||
defining Unicode char U+0179 (decimal 377)
|
||||
defining Unicode char U+017A (decimal 378)
|
||||
defining Unicode char U+017B (decimal 379)
|
||||
defining Unicode char U+017C (decimal 380)
|
||||
defining Unicode char U+017D (decimal 381)
|
||||
defining Unicode char U+017E (decimal 382)
|
||||
defining Unicode char U+200C (decimal 8204)
|
||||
defining Unicode char U+2013 (decimal 8211)
|
||||
defining Unicode char U+2014 (decimal 8212)
|
||||
defining Unicode char U+2018 (decimal 8216)
|
||||
defining Unicode char U+2019 (decimal 8217)
|
||||
defining Unicode char U+201A (decimal 8218)
|
||||
defining Unicode char U+201C (decimal 8220)
|
||||
defining Unicode char U+201D (decimal 8221)
|
||||
defining Unicode char U+201E (decimal 8222)
|
||||
defining Unicode char U+2030 (decimal 8240)
|
||||
defining Unicode char U+2031 (decimal 8241)
|
||||
defining Unicode char U+2039 (decimal 8249)
|
||||
defining Unicode char U+203A (decimal 8250)
|
||||
defining Unicode char U+2423 (decimal 9251)
|
||||
)
|
||||
Now handling font encoding OT1 ...
|
||||
... processing UTF-8 mapping file for font encoding OT1
|
||||
|
||||
(C:\CTEX\MiKTeX\tex\latex\base\ot1enc.dfu
|
||||
File: ot1enc.dfu 2008/04/05 v1.1m UTF-8 support for inputenc
|
||||
defining Unicode char U+00A1 (decimal 161)
|
||||
defining Unicode char U+00A3 (decimal 163)
|
||||
defining Unicode char U+00B8 (decimal 184)
|
||||
defining Unicode char U+00BF (decimal 191)
|
||||
defining Unicode char U+00C5 (decimal 197)
|
||||
defining Unicode char U+00C6 (decimal 198)
|
||||
defining Unicode char U+00D8 (decimal 216)
|
||||
defining Unicode char U+00DF (decimal 223)
|
||||
defining Unicode char U+00E6 (decimal 230)
|
||||
defining Unicode char U+00EC (decimal 236)
|
||||
defining Unicode char U+00ED (decimal 237)
|
||||
defining Unicode char U+00EE (decimal 238)
|
||||
defining Unicode char U+00EF (decimal 239)
|
||||
defining Unicode char U+00F8 (decimal 248)
|
||||
defining Unicode char U+0131 (decimal 305)
|
||||
defining Unicode char U+0141 (decimal 321)
|
||||
defining Unicode char U+0142 (decimal 322)
|
||||
defining Unicode char U+0152 (decimal 338)
|
||||
defining Unicode char U+0153 (decimal 339)
|
||||
defining Unicode char U+2013 (decimal 8211)
|
||||
defining Unicode char U+2014 (decimal 8212)
|
||||
defining Unicode char U+2018 (decimal 8216)
|
||||
defining Unicode char U+2019 (decimal 8217)
|
||||
defining Unicode char U+201C (decimal 8220)
|
||||
defining Unicode char U+201D (decimal 8221)
|
||||
)
|
||||
Now handling font encoding OMS ...
|
||||
... processing UTF-8 mapping file for font encoding OMS
|
||||
|
||||
(C:\CTEX\MiKTeX\tex\latex\base\omsenc.dfu
|
||||
File: omsenc.dfu 2008/04/05 v1.1m UTF-8 support for inputenc
|
||||
defining Unicode char U+00A7 (decimal 167)
|
||||
defining Unicode char U+00B6 (decimal 182)
|
||||
defining Unicode char U+00B7 (decimal 183)
|
||||
defining Unicode char U+2020 (decimal 8224)
|
||||
defining Unicode char U+2021 (decimal 8225)
|
||||
defining Unicode char U+2022 (decimal 8226)
|
||||
)
|
||||
Now handling font encoding OMX ...
|
||||
... no UTF-8 mapping file for font encoding OMX
|
||||
Now handling font encoding U ...
|
||||
... no UTF-8 mapping file for font encoding U
|
||||
defining Unicode char U+00A9 (decimal 169)
|
||||
defining Unicode char U+00AA (decimal 170)
|
||||
defining Unicode char U+00AE (decimal 174)
|
||||
defining Unicode char U+00BA (decimal 186)
|
||||
defining Unicode char U+02C6 (decimal 710)
|
||||
defining Unicode char U+02DC (decimal 732)
|
||||
defining Unicode char U+200C (decimal 8204)
|
||||
defining Unicode char U+2026 (decimal 8230)
|
||||
defining Unicode char U+2122 (decimal 8482)
|
||||
defining Unicode char U+2423 (decimal 9251)
|
||||
))
|
||||
(C:\CTEX\MiKTeX\tex\latex\ams\math\amsmath.sty
|
||||
Package: amsmath 2000/07/18 v2.13 AMS math features
|
||||
\@mathmargin=\skip43
|
||||
|
||||
For additional information on amsmath, use the `?' option.
|
||||
(C:\CTEX\MiKTeX\tex\latex\ams\math\amstext.sty
|
||||
Package: amstext 2000/06/29 v2.01
|
||||
|
||||
(C:\CTEX\MiKTeX\tex\latex\ams\math\amsgen.sty
|
||||
File: amsgen.sty 1999/11/30 v2.0
|
||||
\@emptytoks=\toks16
|
||||
\ex@=\dimen103
|
||||
))
|
||||
(C:\CTEX\MiKTeX\tex\latex\ams\math\amsbsy.sty
|
||||
Package: amsbsy 1999/11/29 v1.2d
|
||||
\pmbraise@=\dimen104
|
||||
)
|
||||
(C:\CTEX\MiKTeX\tex\latex\ams\math\amsopn.sty
|
||||
Package: amsopn 1999/12/14 v2.01 operator names
|
||||
)
|
||||
\inf@bad=\count89
|
||||
LaTeX Info: Redefining \frac on input line 211.
|
||||
\uproot@=\count90
|
||||
\leftroot@=\count91
|
||||
LaTeX Info: Redefining \overline on input line 307.
|
||||
\classnum@=\count92
|
||||
\DOTSCASE@=\count93
|
||||
LaTeX Info: Redefining \ldots on input line 379.
|
||||
LaTeX Info: Redefining \dots on input line 382.
|
||||
LaTeX Info: Redefining \cdots on input line 467.
|
||||
\Mathstrutbox@=\box26
|
||||
\strutbox@=\box27
|
||||
\big@size=\dimen105
|
||||
LaTeX Font Info: Redeclaring font encoding OML on input line 567.
|
||||
LaTeX Font Info: Redeclaring font encoding OMS on input line 568.
|
||||
\macc@depth=\count94
|
||||
\c@MaxMatrixCols=\count95
|
||||
\dotsspace@=\muskip10
|
||||
\c@parentequation=\count96
|
||||
\dspbrk@lvl=\count97
|
||||
\tag@help=\toks17
|
||||
\row@=\count98
|
||||
\column@=\count99
|
||||
\maxfields@=\count100
|
||||
\andhelp@=\toks18
|
||||
\eqnshift@=\dimen106
|
||||
\alignsep@=\dimen107
|
||||
\tagshift@=\dimen108
|
||||
\tagwidth@=\dimen109
|
||||
\totwidth@=\dimen110
|
||||
\lineht@=\dimen111
|
||||
\@envbody=\toks19
|
||||
\multlinegap=\skip44
|
||||
\multlinetaggap=\skip45
|
||||
\mathdisplay@stack=\toks20
|
||||
LaTeX Info: Redefining \[ on input line 2666.
|
||||
LaTeX Info: Redefining \] on input line 2667.
|
||||
)
|
||||
(C:\CTEX\MiKTeX\tex\latex\amsfonts\amsfonts.sty
|
||||
Package: amsfonts 2009/06/22 v3.00 Basic AMSFonts support
|
||||
\symAMSa=\mathgroup4
|
||||
\symAMSb=\mathgroup5
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold'
|
||||
(Font) U/euf/m/n --> U/euf/b/n on input line 96.
|
||||
)
|
||||
(C:\CTEX\MiKTeX\tex\latex\amsfonts\amssymb.sty
|
||||
Package: amssymb 2009/06/22 v3.00
|
||||
)
|
||||
(C:\CTEX\MiKTeX\tex\latex\fontspec\fontspec.sty
|
||||
Package: fontspec 2011/09/18 v2.2a Advanced font selection for XeLaTeX/LuaLaTeX
|
||||
|
||||
|
||||
(C:\CTEX\MiKTeX\tex\latex\l3kernel\expl3.sty
|
||||
(C:\CTEX\MiKTeX\tex\latex\l3kernel\l3names.sty
|
||||
(C:\CTEX\MiKTeX\tex\latex\l3kernel\l3bootstrap.sty
|
||||
Package: l3bootstrap 2011/12/29 v3110 L3 Experimental bootstrap code
|
||||
)
|
||||
Package: l3names 2011/12/30 v3113 L3 Experimental namespace for primitives
|
||||
)
|
||||
(C:\CTEX\MiKTeX\tex\latex\misc\etex.sty
|
||||
Package: etex 1998/03/26 v2.0 eTeX basic definition package (PEB)
|
||||
\et@xins=\count101
|
||||
)
|
||||
Package: expl3 2012/02/26 v3471 L3 Experimental code bundle wrapper
|
||||
|
||||
(C:\CTEX\MiKTeX\tex\latex\graphics\color.sty
|
||||
Package: color 2005/11/14 v1.0j Standard LaTeX Color (DPC)
|
||||
|
||||
(C:\CTEX\MiKTeX\tex\latex\00miktex\color.cfg
|
||||
File: color.cfg 2007/01/18 v1.5 color configuration of teTeX/TeXLive
|
||||
)
|
||||
Package color Info: Driver file: xetex.def on input line 130.
|
||||
|
||||
(C:\CTEX\MiKTeX\tex\xelatex\xetex-def\xetex.def
|
||||
File: xetex.def 2009/11/22 v0.94 LaTeX color/graphics driver for XeTeX (RRM/JK)
|
||||
|
||||
))
|
||||
(C:\CTEX\MiKTeX\tex\latex\graphics\graphics.sty
|
||||
Package: graphics 2009/02/05 v1.0o Standard LaTeX Graphics (DPC,SPQR)
|
||||
|
||||
(C:\CTEX\MiKTeX\tex\latex\graphics\trig.sty
|
||||
Package: trig 1999/03/16 v1.09 sin cos tan (DPC)
|
||||
)
|
||||
(C:\CTEX\MiKTeX\tex\latex\00miktex\graphics.cfg
|
||||
File: graphics.cfg 2007/01/18 v1.5 graphics configuration of teTeX/TeXLive
|
||||
)
|
||||
Package graphics Info: Driver file: xetex.def on input line 91.
|
||||
)
|
||||
(C:\CTEX\MiKTeX\tex\latex\l3kernel\l3basics.sty
|
||||
Package: l3basics 2012/02/26 v3460 L3 Experimental basic definitions
|
||||
)
|
||||
(C:\CTEX\MiKTeX\tex\latex\l3kernel\l3expan.sty
|
||||
Package: l3expan 2012/02/26 v3460 L3 Experimental argument expansion
|
||||
)
|
||||
(C:\CTEX\MiKTeX\tex\latex\l3kernel\l3tl.sty
|
||||
Package: l3tl 2012/02/26 v3460 L3 Experimental token lists
|
||||
)
|
||||
(C:\CTEX\MiKTeX\tex\latex\l3kernel\l3seq.sty
|
||||
Package: l3seq 2012/01/09 v3158 L3 Experimental sequences and stacks
|
||||
)
|
||||
(C:\CTEX\MiKTeX\tex\latex\l3kernel\l3int.sty
|
||||
Package: l3int 2012/02/26 v3460 L3 Experimental integers
|
||||
\c_max_int=\count102
|
||||
\l_tmpa_int=\count103
|
||||
\l_tmpb_int=\count104
|
||||
\l_tmpc_int=\count105
|
||||
\g_tmpa_int=\count106
|
||||
\g_tmpb_int=\count107
|
||||
)
|
||||
(C:\CTEX\MiKTeX\tex\latex\l3kernel\l3quark.sty
|
||||
Package: l3quark 2012/02/12 v3384 L3 Experimental quarks
|
||||
)
|
||||
(C:\CTEX\MiKTeX\tex\latex\l3kernel\l3prg.sty
|
||||
Package: l3prg 2012/02/26 v3464 L3 Experimental control structures
|
||||
\g_prg_map_int=\count108
|
||||
)
|
||||
(C:\CTEX\MiKTeX\tex\latex\l3kernel\l3clist.sty
|
||||
Package: l3clist 2012/02/26 v3460 L3 Experimental comma separated lists
|
||||
)
|
||||
(C:\CTEX\MiKTeX\tex\latex\l3kernel\l3token.sty
|
||||
Package: l3token 2012/02/26 v3460 L3 Experimental token manipulation
|
||||
)
|
||||
(C:\CTEX\MiKTeX\tex\latex\l3kernel\l3prop.sty
|
||||
Package: l3prop 2012/02/26 v3460 L3 Experimental property lists
|
||||
)
|
||||
(C:\CTEX\MiKTeX\tex\latex\l3kernel\l3msg.sty
|
||||
Package: l3msg 2012/02/26 v3470 L3 Experimental messages
|
||||
)
|
||||
(C:\CTEX\MiKTeX\tex\latex\l3kernel\l3file.sty
|
||||
Package: l3file 2012/02/26 v3464 L3 Experimental file and I/O operations
|
||||
\l_iow_stream_int=\count109
|
||||
\l_iow_line_length_int=\count110
|
||||
\l_iow_target_length_int=\count111
|
||||
\l_iow_current_line_int=\count112
|
||||
\l_iow_current_word_int=\count113
|
||||
\l_iow_current_indentation_int=\count114
|
||||
)
|
||||
(C:\CTEX\MiKTeX\tex\latex\l3kernel\l3skip.sty
|
||||
Package: l3skip 2012/02/26 v3460 L3 Experimental dimensions and skips
|
||||
\l_tmpa_dim=\dimen112
|
||||
\l_tmpb_dim=\dimen113
|
||||
\l_tmpc_dim=\dimen114
|
||||
\g_tmpa_dim=\dimen115
|
||||
\g_tmpb_dim=\dimen116
|
||||
\l_tmpa_skip=\skip46
|
||||
\l_tmpb_skip=\skip47
|
||||
\l_tmpc_skip=\skip48
|
||||
\g_tmpa_skip=\skip49
|
||||
\g_tmpb_skip=\skip50
|
||||
)
|
||||
(C:\CTEX\MiKTeX\tex\latex\l3kernel\l3keys.sty
|
||||
Package: l3keys 2011/12/22 v3086 L3 Experimental key-value interfaces
|
||||
\g_keyval_level_int=\count115
|
||||
\l_keys_choice_int=\count116
|
||||
)
|
||||
(C:\CTEX\MiKTeX\tex\latex\l3kernel\l3fp.sty
|
||||
Package: l3fp 2012/02/06 v3315 L3 Experimental floating-point operations
|
||||
\c_one_hundred_million=\count117
|
||||
\c_five_hundred_million=\count118
|
||||
\c_one_thousand_million=\count119
|
||||
\c_fp_pi_by_four_decimal_int=\count120
|
||||
\c_fp_pi_by_four_extended_int=\count121
|
||||
\c_fp_pi_decimal_int=\count122
|
||||
\c_fp_pi_extended_int=\count123
|
||||
\c_fp_two_pi_decimal_int=\count124
|
||||
\c_fp_two_pi_extended_int=\count125
|
||||
\l_fp_count_int=\count126
|
||||
\l_fp_div_offset_int=\count127
|
||||
\l_fp_exp_integer_int=\count128
|
||||
\l_fp_exp_decimal_int=\count129
|
||||
\l_fp_exp_extended_int=\count130
|
||||
\l_fp_exp_exponent_int=\count131
|
||||
\l_fp_input_a_sign_int=\count132
|
||||
\l_fp_input_a_integer_int=\count133
|
||||
\l_fp_input_a_decimal_int=\count134
|
||||
\l_fp_input_a_exponent_int=\count135
|
||||
\l_fp_input_b_sign_int=\count136
|
||||
\l_fp_input_b_integer_int=\count137
|
||||
\l_fp_input_b_decimal_int=\count138
|
||||
\l_fp_input_b_exponent_int=\count139
|
||||
\l_fp_input_a_extended_int=\count140
|
||||
\l_fp_input_b_extended_int=\count141
|
||||
\l_fp_mul_a_i_int=\count142
|
||||
\l_fp_mul_a_ii_int=\count143
|
||||
\l_fp_mul_a_iii_int=\count144
|
||||
\l_fp_mul_a_iv_int=\count145
|
||||
\l_fp_mul_a_v_int=\count146
|
||||
\l_fp_mul_a_vi_int=\count147
|
||||
\l_fp_mul_b_i_int=\count148
|
||||
\l_fp_mul_b_ii_int=\count149
|
||||
\l_fp_mul_b_iii_int=\count150
|
||||
\l_fp_mul_b_iv_int=\count151
|
||||
\l_fp_mul_b_v_int=\count152
|
||||
\l_fp_mul_b_vi_int=\count153
|
||||
\l_fp_mul_output_int=\count154
|
||||
\l_fp_output_sign_int=\count155
|
||||
\l_fp_output_integer_int=\count156
|
||||
\l_fp_output_decimal_int=\count157
|
||||
\l_fp_output_exponent_int=\count158
|
||||
\l_fp_output_extended_int=\count159
|
||||
\l_fp_round_position_int=\count160
|
||||
\l_fp_round_target_int=\count161
|
||||
\l_fp_split_sign_int=\count162
|
||||
\l_fp_internal_int=\count163
|
||||
\l_fp_trig_octant_int=\count164
|
||||
\l_fp_trig_sign_int=\count165
|
||||
\l_fp_trig_decimal_int=\count166
|
||||
\l_fp_trig_extended_int=\count167
|
||||
\l_fp_internal_dim=\dimen117
|
||||
\l_fp_internal_skip=\skip51
|
||||
)
|
||||
(C:\CTEX\MiKTeX\tex\latex\l3kernel\l3box.sty
|
||||
Package: l3box 2012/02/18 v3432 L3 Experimental boxes
|
||||
\l_tmpb_box=\box28
|
||||
\l_box_top_dim=\dimen118
|
||||
\l_box_bottom_dim=\dimen119
|
||||
\l_box_left_dim=\dimen120
|
||||
\l_box_right_dim=\dimen121
|
||||
\l_box_top_new_dim=\dimen122
|
||||
\l_box_bottom_new_dim=\dimen123
|
||||
\l_box_left_new_dim=\dimen124
|
||||
\l_box_right_new_dim=\dimen125
|
||||
\l_box_internal_box=\box29
|
||||
)
|
||||
(C:\CTEX\MiKTeX\tex\latex\l3kernel\l3coffins.sty
|
||||
Package: l3coffins 2012/02/26 v3460 L3 Experimental coffin code layer
|
||||
\l_coffin_internal_box=\box30
|
||||
\l_coffin_internal_dim=\dimen126
|
||||
\l_coffin_offset_x_dim=\dimen127
|
||||
\l_coffin_offset_y_dim=\dimen128
|
||||
\l_coffin_x_dim=\dimen129
|
||||
\l_coffin_y_dim=\dimen130
|
||||
\l_coffin_x_prime_dim=\dimen131
|
||||
\l_coffin_y_prime_dim=\dimen132
|
||||
\l_coffin_Depth_dim=\dimen133
|
||||
\l_coffin_Height_dim=\dimen134
|
||||
\l_coffin_TotalHeight_dim=\dimen135
|
||||
\l_coffin_Width_dim=\dimen136
|
||||
\c_empty_coffin=\box31
|
||||
\l_coffin_aligned_coffin=\box32
|
||||
\l_coffin_aligned_internal_coffin=\box33
|
||||
\l_coffin_bounding_shift_dim=\dimen137
|
||||
\l_coffin_left_corner_dim=\dimen138
|
||||
\l_coffin_right_corner_dim=\dimen139
|
||||
\l_coffin_bottom_corner_dim=\dimen140
|
||||
\l_coffin_top_corner_dim=\dimen141
|
||||
\l_coffin_scaled_total_height_dim=\dimen142
|
||||
\l_coffin_scaled_width_dim=\dimen143
|
||||
\l_coffin_display_coffin=\box34
|
||||
\l_coffin_display_coord_coffin=\box35
|
||||
\l_coffin_display_pole_coffin=\box36
|
||||
\l_coffin_display_offset_dim=\dimen144
|
||||
\l_coffin_display_x_dim=\dimen145
|
||||
\l_coffin_display_y_dim=\dimen146
|
||||
)
|
||||
(C:\CTEX\MiKTeX\tex\latex\l3kernel\l3color.sty
|
||||
Package: l3color 2011/09/07 v2776 L3 Experimental colour support
|
||||
)
|
||||
(C:\CTEX\MiKTeX\tex\latex\l3kernel\l3luatex.sty
|
||||
Package: l3luatex 2012/02/09 v3355 L3 Experimental LuaTeX-specific functions
|
||||
\g_cctab_allocate_int=\count168
|
||||
\g_cctab_stack_int=\count169
|
||||
))
|
||||
(C:\CTEX\MiKTeX\tex\latex\l3packages\xparse\xparse.sty
|
||||
Package: xparse 2012/02/26 v3471 L3 Experimental document command parser
|
||||
\l_xparse_current_arg_int=\count170
|
||||
\l_xparse_m_args_int=\count171
|
||||
\l_xparse_mandatory_args_int=\count172
|
||||
\l_xparse_processor_int=\count173
|
||||
\l_xparse_v_nesting_int=\count174
|
||||
)
|
||||
\l_fontspec_script_int=\count175
|
||||
\l_fontspec_language_int=\count176
|
||||
\l_fontspec_strnum_int=\count177
|
||||
\l_fontspec_tmpa_dim=\dimen147
|
||||
\l_fontspec_tmpb_dim=\dimen148
|
||||
\l_fontspec_tmpc_dim=\dimen149
|
||||
Variant \tl_gset:cV already defined; not changing it on line 66
|
||||
|
||||
(C:\CTEX\MiKTeX\tex\latex\fontspec\fontspec-patches.sty
|
||||
Package: fontspec-patches 2011/09/18 v2.2a Advanced font selection for XeLaTeX/
|
||||
LuaLaTeX
|
||||
|
||||
(C:\CTEX\MiKTeX\tex\latex\base\fixltx2e.sty
|
||||
Package: fixltx2e 2006/09/13 v1.1m fixes to LaTeX
|
||||
LaTeX Info: Redefining \em on input line 420.
|
||||
LaTeX Info: The control sequence `\[' is already robust on input line 471.
|
||||
LaTeX Info: The control sequence `\]' is already robust on input line 472.
|
||||
)
|
||||
LaTeX Info: Redefining \em on input line 22.
|
||||
LaTeX Info: Redefining \emph on input line 29.
|
||||
LaTeX Info: Redefining \- on input line 32.
|
||||
|
||||
*************************************************
|
||||
* LaTeX warning: "xparse/redefine-command"
|
||||
*
|
||||
* Redefining document command \oldstylenums with arg. spec. 'm' on line 107.
|
||||
*************************************************
|
||||
.................................................
|
||||
. LaTeX info: "xparse/define-command"
|
||||
.
|
||||
. Defining document command \liningnums with arg. spec. 'm' on line 111.
|
||||
.................................................
|
||||
) (C:\CTEX\MiKTeX\tex\latex\fontspec\fontspec-xetex.sty
|
||||
Package: fontspec-xetex 2011/09/18 v2.2a Advanced font selection for XeLaTeX/Lu
|
||||
aLaTeX
|
||||
|
||||
(C:\CTEX\MiKTeX\tex\latex\base\fontenc.sty
|
||||
Package: fontenc 2005/09/27 v1.99g Standard LaTeX package
|
||||
|
||||
(C:\CTEX\MiKTeX\tex\latex\euenc\eu1enc.def
|
||||
File: eu1enc.def 2010/05/27 v0.1h Experimental Unicode font encodings
|
||||
Now handling font encoding EU1 ...
|
||||
... no UTF-8 mapping file for font encoding EU1
|
||||
)
|
||||
LaTeX Font Info: Try loading font information for EU1+lmr on input line 100.
|
||||
|
||||
|
||||
(C:\CTEX\MiKTeX\tex\latex\euenc\eu1lmr.fd
|
||||
File: eu1lmr.fd 2009/10/30 v1.6 Font defs for Latin Modern
|
||||
)
|
||||
Requested font "[lmroman10-regular]:mapping=tex-text" at 10.0pt
|
||||
-> C:/CTEX/MiKTeX/fonts/opentype/public/lm/lmroman10-regular.otf
|
||||
)
|
||||
(C:\CTEX\MiKTeX\tex\xelatex\xunicode\xunicode.sty
|
||||
File: xunicode.sty 2011/09/09 v0.981 provides access to latin accents and many
|
||||
other characters in Unicode lower plane
|
||||
|
||||
*** you should *not* be loading the inputenc package
|
||||
*** XeTeX expects the source to be in UTF8 encoding
|
||||
*** some features of other encodings may conflict, resulting in poor output.
|
||||
(C:\CTEX\MiKTeX\tex\latex\tipa\t3enc.def
|
||||
File: t3enc.def 2001/12/31 T3 encoding
|
||||
Now handling font encoding T3 ...
|
||||
... no UTF-8 mapping file for font encoding T3
|
||||
Requested font "[lmromanslant10-regular]:mapping=tex-text" at 10.0pt
|
||||
-> C:/CTEX/MiKTeX/fonts/opentype/public/lm/lmromanslant10-regular.otf
|
||||
Requested font "[lmroman10-italic]:mapping=tex-text" at 10.0pt
|
||||
-> C:/CTEX/MiKTeX/fonts/opentype/public/lm/lmroman10-italic.otf
|
||||
Requested font "[lmroman10-bold]:mapping=tex-text" at 10.0pt
|
||||
-> C:/CTEX/MiKTeX/fonts/opentype/public/lm/lmroman10-bold.otf
|
||||
LaTeX Font Info: Try loading font information for EU1+lmss on input line 357
|
||||
.
|
||||
|
||||
(C:\CTEX\MiKTeX\tex\latex\euenc\eu1lmss.fd
|
||||
File: eu1lmss.fd 2009/10/30 v1.6 Font defs for Latin Modern
|
||||
)
|
||||
Requested font "[lmsans10-regular]:mapping=tex-text" at 10.0pt
|
||||
-> C:/CTEX/MiKTeX/fonts/opentype/public/lm/lmsans10-regular.otf
|
||||
)
|
||||
\tipaTiiicode=\count178
|
||||
\tipasavetokens=\toks21
|
||||
\tipachecktokens=\toks22
|
||||
|
||||
(C:\CTEX\MiKTeX\tex\latex\graphics\graphicx.sty
|
||||
Package: graphicx 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR)
|
||||
|
||||
(C:\CTEX\MiKTeX\tex\latex\graphics\keyval.sty
|
||||
Package: keyval 1999/03/16 v1.13 key=value parser (DPC)
|
||||
\KV@toks@=\toks23
|
||||
)
|
||||
\Gin@req@height=\dimen150
|
||||
\Gin@req@width=\dimen151
|
||||
))
|
||||
.................................................
|
||||
. LaTeX info: "xparse/define-command"
|
||||
.
|
||||
. Defining document command \fontspec with arg. spec. 'O{}m' on line 39.
|
||||
.................................................
|
||||
.................................................
|
||||
. LaTeX info: "xparse/define-command"
|
||||
.
|
||||
. Defining document command \setmainfont with arg. spec. 'O{}m' on line 43.
|
||||
.................................................
|
||||
.................................................
|
||||
. LaTeX info: "xparse/define-command"
|
||||
.
|
||||
. Defining document command \setsansfont with arg. spec. 'O{}m' on line 47.
|
||||
.................................................
|
||||
.................................................
|
||||
. LaTeX info: "xparse/define-command"
|
||||
.
|
||||
. Defining document command \setmonofont with arg. spec. 'O{}m' on line 51.
|
||||
.................................................
|
||||
.................................................
|
||||
. LaTeX info: "xparse/define-command"
|
||||
.
|
||||
. Defining document command \setmathrm with arg. spec. 'O{}m' on line 59.
|
||||
.................................................
|
||||
.................................................
|
||||
. LaTeX info: "xparse/define-command"
|
||||
.
|
||||
. Defining document command \setboldmathrm with arg. spec. 'O{}m' on line 62.
|
||||
.................................................
|
||||
.................................................
|
||||
. LaTeX info: "xparse/define-command"
|
||||
.
|
||||
. Defining document command \setmathsf with arg. spec. 'O{}m' on line 65.
|
||||
.................................................
|
||||
.................................................
|
||||
. LaTeX info: "xparse/define-command"
|
||||
.
|
||||
. Defining document command \setmathtt with arg. spec. 'O{}m' on line 68.
|
||||
.................................................
|
||||
.................................................
|
||||
. LaTeX info: "xparse/define-command"
|
||||
.
|
||||
. Defining document command \newfontfamily with arg. spec. 'mO{}m' on line 84.
|
||||
.................................................
|
||||
.................................................
|
||||
. LaTeX info: "xparse/define-command"
|
||||
.
|
||||
. Defining document command \newfontface with arg. spec. 'mO{}m' on line 87.
|
||||
.................................................
|
||||
.................................................
|
||||
. LaTeX info: "xparse/define-command"
|
||||
.
|
||||
. Defining document command \defaultfontfeatures with arg. spec. 'm' on line
|
||||
. 91.
|
||||
.................................................
|
||||
.................................................
|
||||
. LaTeX info: "xparse/define-command"
|
||||
.
|
||||
. Defining document command \addfontfeatures with arg. spec. 'm' on line 107.
|
||||
.................................................
|
||||
.................................................
|
||||
. LaTeX info: "xparse/define-command"
|
||||
.
|
||||
. Defining document command \newfontfeature with arg. spec. 'mm' on line 118.
|
||||
.................................................
|
||||
.................................................
|
||||
. LaTeX info: "xparse/define-command"
|
||||
.
|
||||
. Defining document command \newAATfeature with arg. spec. 'mmmm' on line 125.
|
||||
.................................................
|
||||
.................................................
|
||||
. LaTeX info: "xparse/define-command"
|
||||
.
|
||||
. Defining document command \newICUfeature with arg. spec. 'mmm' on line 132.
|
||||
.................................................
|
||||
.................................................
|
||||
. LaTeX info: "xparse/define-command"
|
||||
.
|
||||
. Defining document command \aliasfontfeature with arg. spec. 'mm' on line
|
||||
. 159.
|
||||
.................................................
|
||||
.................................................
|
||||
. LaTeX info: "xparse/define-command"
|
||||
.
|
||||
. Defining document command \aliasfontfeatureoption with arg. spec. 'mmm' on
|
||||
. line 164.
|
||||
.................................................
|
||||
.................................................
|
||||
. LaTeX info: "xparse/define-command"
|
||||
.
|
||||
. Defining document command \newfontscript with arg. spec. 'mm' on line 169.
|
||||
.................................................
|
||||
.................................................
|
||||
. LaTeX info: "xparse/define-command"
|
||||
.
|
||||
. Defining document command \newfontlanguage with arg. spec. 'mm' on line 192.
|
||||
.................................................
|
||||
.................................................
|
||||
. LaTeX info: "xparse/define-command"
|
||||
.
|
||||
. Defining document command \DeclareFontsExtensions with arg. spec. 'm' on
|
||||
. line 211.
|
||||
.................................................
|
||||
Variant \prop_gput:cnV already defined; not changing it on line 485
|
||||
Variant \prop_gput:cnx already defined; not changing it on line 486
|
||||
Variant \keys_set:nx already defined; not changing it on line 963
|
||||
\c@fontspec_tmp_int=\count179
|
||||
LaTeX Info: Redefining \itshape on input line 1881.
|
||||
LaTeX Info: Redefining \slshape on input line 1885.
|
||||
LaTeX Info: Redefining \scshape on input line 1889.
|
||||
LaTeX Info: Redefining \upshape on input line 1893.
|
||||
|
||||
(C:\CTEX\MiKTeX\tex\latex\fontspec\fontspec.cfg)))
|
||||
Requested font "å®^^8bä½^^93" at 10.0pt
|
||||
-> C:/Windows/Fonts/simsun.ttc
|
||||
Requested font "å®^^8bä½^^93/ICU" at 10.0pt
|
||||
-> C:/Windows/Fonts/simsun.ttc
|
||||
\g_fontspec_family_宋体_int=\count180
|
||||
Requested font "å®^^8bä½^^93/ICU" at 10.0pt
|
||||
-> C:/Windows/Fonts/simsun.ttc
|
||||
Requested font "é»^^91ä½^^93/ICU" at 10.0pt
|
||||
-> C:/Windows/Fonts/simhei.ttf
|
||||
Requested font "å®^^8bä½^^93/ICU" at 10.0pt
|
||||
-> C:/Windows/Fonts/simsun.ttc
|
||||
Requested font "å®^^8bä½^^93/I/ICU" at 10.0pt
|
||||
-> C:/Windows/Fonts/simsun.ttc
|
||||
.................................................
|
||||
. fontspec info: "no-font-shape"
|
||||
.
|
||||
. Could not resolve font 宋体/I (it probably doesn't exist).
|
||||
.................................................
|
||||
Requested font "é»^^91ä½^^93/ICU" at 10.0pt
|
||||
-> C:/Windows/Fonts/simhei.ttf
|
||||
Requested font "é»^^91ä½^^93/I/ICU" at 10.0pt
|
||||
-> C:/Windows/Fonts/simhei.ttf
|
||||
.................................................
|
||||
. fontspec info: "no-font-shape"
|
||||
.
|
||||
. Could not resolve font 黑体/I (it probably doesn't exist).
|
||||
.................................................
|
||||
.................................................
|
||||
. fontspec info: "defining-font"
|
||||
.
|
||||
. Font family '宋体(0)' created for font '宋体' with options [BoldFont=黑ä
|
||||
½“].
|
||||
.
|
||||
. This font family consists of the following shapes:
|
||||
.
|
||||
. * 'normal' with NFSS spec.:
|
||||
. <->"宋体/ICU:script=latn;language=DFLT;"
|
||||
.
|
||||
. * 'bold' with NFSS spec.:
|
||||
. <->"黑体/ICU:script=latn;language=DFLT;"
|
||||
.................................................
|
||||
Requested font "å®^^8bä½^^93/ICU:script=latn;language=DFLT;" at 10.0pt
|
||||
-> C:/Windows/Fonts/simsun.ttc
|
||||
|
||||
(D:\Matlab\StateEstimation-self-derivatives\å…¬å¼<C3A5>\å…¬å¼<C3A5>.aux)
|
||||
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 11.
|
||||
LaTeX Font Info: ... okay on input line 11.
|
||||
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 11.
|
||||
LaTeX Font Info: ... okay on input line 11.
|
||||
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 11.
|
||||
LaTeX Font Info: ... okay on input line 11.
|
||||
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 11.
|
||||
LaTeX Font Info: ... okay on input line 11.
|
||||
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 11.
|
||||
LaTeX Font Info: ... okay on input line 11.
|
||||
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 11.
|
||||
LaTeX Font Info: ... okay on input line 11.
|
||||
LaTeX Font Info: Checking defaults for EU1/lmr/m/n on input line 11.
|
||||
LaTeX Font Info: ... okay on input line 11.
|
||||
LaTeX Font Info: Checking defaults for T3/cmr/m/n on input line 11.
|
||||
LaTeX Font Info: Try loading font information for T3+cmr on input line 11.
|
||||
|
||||
(C:\CTEX\MiKTeX\tex\latex\tipa\t3cmr.fd
|
||||
File: t3cmr.fd 2001/12/31 TIPA font definitions
|
||||
)
|
||||
LaTeX Font Info: ... okay on input line 11.
|
||||
|
||||
*** you should *not* be loading the inputenc package
|
||||
*** XeTeX expects the source to be in UTF8 encoding
|
||||
*** some features of other encodings may conflict, resulting in poor output.
|
||||
.................................................
|
||||
. fontspec info: "setup-math"
|
||||
.
|
||||
. Adjusting the maths setup (use [no-math] to avoid this).
|
||||
.................................................
|
||||
\symlegacymaths=\mathgroup6
|
||||
LaTeX Font Info: Overwriting symbol font `legacymaths' in version `bold'
|
||||
(Font) OT1/cmr/m/n --> OT1/cmr/bx/n on input line 11.
|
||||
LaTeX Font Info: Redeclaring math accent \acute on input line 11.
|
||||
LaTeX Font Info: Redeclaring math accent \grave on input line 11.
|
||||
LaTeX Font Info: Redeclaring math accent \ddot on input line 11.
|
||||
LaTeX Font Info: Redeclaring math accent \tilde on input line 11.
|
||||
LaTeX Font Info: Redeclaring math accent \bar on input line 11.
|
||||
LaTeX Font Info: Redeclaring math accent \breve on input line 11.
|
||||
LaTeX Font Info: Redeclaring math accent \check on input line 11.
|
||||
LaTeX Font Info: Redeclaring math accent \hat on input line 11.
|
||||
LaTeX Font Info: Redeclaring math accent \dot on input line 11.
|
||||
LaTeX Font Info: Redeclaring math accent \mathring on input line 11.
|
||||
LaTeX Font Info: Redeclaring math symbol \Gamma on input line 11.
|
||||
LaTeX Font Info: Redeclaring math symbol \Delta on input line 11.
|
||||
LaTeX Font Info: Redeclaring math symbol \Theta on input line 11.
|
||||
LaTeX Font Info: Redeclaring math symbol \Lambda on input line 11.
|
||||
LaTeX Font Info: Redeclaring math symbol \Xi on input line 11.
|
||||
LaTeX Font Info: Redeclaring math symbol \Pi on input line 11.
|
||||
LaTeX Font Info: Redeclaring math symbol \Sigma on input line 11.
|
||||
LaTeX Font Info: Redeclaring math symbol \Upsilon on input line 11.
|
||||
LaTeX Font Info: Redeclaring math symbol \Phi on input line 11.
|
||||
LaTeX Font Info: Redeclaring math symbol \Psi on input line 11.
|
||||
LaTeX Font Info: Redeclaring math symbol \Omega on input line 11.
|
||||
LaTeX Font Info: Redeclaring math symbol \mathdollar on input line 11.
|
||||
LaTeX Font Info: Redeclaring symbol font `operators' on input line 11.
|
||||
LaTeX Font Info: Encoding `OT1' has changed to `EU1' for symbol font
|
||||
(Font) `operators' in the math version `normal' on input line 11.
|
||||
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
|
||||
(Font) OT1/cmr/m/n --> EU1/宋体(0)/m/n on input line 11.
|
||||
LaTeX Font Info: Encoding `OT1' has changed to `EU1' for symbol font
|
||||
(Font) `operators' in the math version `bold' on input line 11.
|
||||
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
|
||||
(Font) OT1/cmr/bx/n --> EU1/宋体(0)/m/n on input line 11.
|
||||
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
|
||||
(Font) EU1/宋体(0)/m/n --> EU1/宋体(0)/m/n on input line 1
|
||||
1.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathrm' in version `normal'
|
||||
(Font) EU1/宋体(0)/m/n --> EU1/宋体(0)/m/n on input line 1
|
||||
1.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
|
||||
(Font) OT1/cmr/m/it --> EU1/宋体(0)/m/it on input line 11.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
|
||||
(Font) OT1/cmr/bx/n --> EU1/宋体(0)/bx/n on input line 11.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal'
|
||||
(Font) OT1/cmss/m/n --> EU1/lmss/m/n on input line 11.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal'
|
||||
(Font) OT1/cmtt/m/n --> EU1/lmtt/m/n on input line 11.
|
||||
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
|
||||
(Font) EU1/宋体(0)/m/n --> EU1/宋体(0)/bx/n on input line
|
||||
11.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathrm' in version `bold'
|
||||
(Font) EU1/宋体(0)/m/n --> EU1/宋体(0)/bx/n on input line
|
||||
11.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
|
||||
(Font) OT1/cmr/bx/it --> EU1/宋体(0)/bx/it on input line 11.
|
||||
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
|
||||
(Font) OT1/cmss/bx/n --> EU1/lmss/bx/n on input line 11.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
|
||||
(Font) OT1/cmtt/m/n --> EU1/lmtt/bx/n on input line 11.
|
||||
Requested font "å®^^8bä½^^93/ICU:script=latn;language=DFLT;" at 7.0pt
|
||||
-> C:/Windows/Fonts/simsun.ttc
|
||||
Requested font "å®^^8bä½^^93/ICU:script=latn;language=DFLT;" at 5.0pt
|
||||
-> C:/Windows/Fonts/simsun.ttc
|
||||
Requested font "cmex7" at 7.0pt
|
||||
-> cmex7
|
||||
Requested font "cmex7" at 5.0pt
|
||||
-> cmex7
|
||||
LaTeX Font Info: Try loading font information for U+msa on input line 12.
|
||||
(C:\CTEX\MiKTeX\tex\latex\amsfonts\umsa.fd
|
||||
File: umsa.fd 2009/06/22 v3.00 AMS symbols A
|
||||
)
|
||||
Requested font "msam10" at 10.0pt
|
||||
-> msam10
|
||||
Requested font "msam7" at 7.0pt
|
||||
-> msam7
|
||||
Requested font "msam5" at 5.0pt
|
||||
-> msam5
|
||||
LaTeX Font Info: Try loading font information for U+msb on input line 12.
|
||||
|
||||
(C:\CTEX\MiKTeX\tex\latex\amsfonts\umsb.fd
|
||||
File: umsb.fd 2009/06/22 v3.00 AMS symbols B
|
||||
)
|
||||
Requested font "msbm10" at 10.0pt
|
||||
-> msbm10
|
||||
Requested font "msbm7" at 7.0pt
|
||||
-> msbm7
|
||||
Requested font "msbm5" at 5.0pt
|
||||
-> msbm5
|
||||
[1
|
||||
|
||||
]
|
||||
(D:\Matlab\StateEstimation-self-derivatives\å…¬å¼<C3A5>\å…¬å¼<C3A5>.aux) )
|
||||
Here is how much of TeX's memory you used:
|
||||
14250 strings out of 430478
|
||||
297453 string characters out of 3191503
|
||||
292163 words of memory out of 3000000
|
||||
17264 multiletter control sequences out of 15000+200000
|
||||
5427 words of font info for 33 fonts, out of 3000000 for 9000
|
||||
14 hyphenation exceptions out of 8191
|
||||
44i,8n,31p,604b,132s stack positions out of 5000i,500n,10000p,200000b,50000s
|
||||
|
||||
Output written on å…¬å¼<C3A5>.pdf (1 page).
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
\documentclass[10pt,a4paper,final]{report}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage{amsmath}
|
||||
\usepackage{amsfonts}
|
||||
\usepackage{amssymb}
|
||||
\usepackage{fontspec}%使用xetex
|
||||
\setmainfont[BoldFont=黑体]{宋体} % 使用系统默认字体
|
||||
\XeTeXlinebreaklocale "zh" % 针对中文进行断行
|
||||
\XeTeXlinebreakskip = 0pt plus 1pt minus 0.1pt % 给予TeX断行一定自由度
|
||||
\linespread{1.5} % 1.5倍行距
|
||||
\begin{document}
|
||||
\begin{equation}
|
||||
\begin{aligned}
|
||||
\frac{\partial P_{ij}}{\partial V_i}
|
||||
&=
|
||||
-V_{ij}(g_{ij}cos\theta_{ij}+b_{ij}sin\theta_{ij})+
|
||||
2(g_{ij}+g_{si})V_i
|
||||
\end{aligned}
|
||||
\end{equation}
|
||||
|
||||
\end{document}
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
\documentclass[10pt,a4paper,final]{report}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage{amsmath}
|
||||
\usepackage{amsfonts}
|
||||
\usepackage{amssymb}
|
||||
\usepackage{fontspec}%使用xetex
|
||||
\setmainfont[BoldFont=黑体]{宋体} % 使用系统默认字体
|
||||
\XeTeXlinebreaklocale "zh" % 针对中文进行断行
|
||||
\XeTeXlinebreakskip = 0pt plus 1pt minus 0.1pt % 给予TeX断行一定自由度
|
||||
\linespread{1.5} % 1.5倍行距
|
||||
\begin{document}
|
||||
\begin{equation}
|
||||
\begin{aligned}
|
||||
\frac{\partial P_{ij}}{\partial V_i}
|
||||
&=
|
||||
-V_{ij}(g_{ij}cos\theta_{ij}+b_{ij}sin\theta_{ij})+
|
||||
2(g_{ij}+g_{si})V_i
|
||||
\end{aligned}
|
||||
\end{equation}
|
||||
|
||||
\end{document}
|
||||
Binary file not shown.
Loading…
Reference in New Issue