Latex生成PDF
This commit is contained in:
@@ -115,7 +115,7 @@ page={{stage_page}},%号
|
|||||||
}
|
}
|
||||||
|
|
||||||
//期刊简写
|
//期刊简写
|
||||||
$sAbbr = empty($aJournal['abbr']) ? $this->sAbbr : $aJournal['abbr'];
|
$sAbbr = $this->sAbbr;//empty($aJournal['abbr']) ? $this->sAbbr : $aJournal['abbr'];
|
||||||
$sAbbr = strtolower($sAbbr);
|
$sAbbr = strtolower($sAbbr);
|
||||||
$sJournalTitle = empty($aJournal['title']) ? '' : $aJournal['title'];
|
$sJournalTitle = empty($aJournal['title']) ? '' : $aJournal['title'];
|
||||||
//年
|
//年
|
||||||
@@ -175,7 +175,10 @@ page={{stage_page}},%号
|
|||||||
$aSearch['{{pub_date}}'] = empty($aProductionArticle['pub_date']) ? '' : $aProductionArticle['pub_date'];
|
$aSearch['{{pub_date}}'] = empty($aProductionArticle['pub_date']) ? '' : $aProductionArticle['pub_date'];
|
||||||
|
|
||||||
//获取编辑信息
|
//获取编辑信息
|
||||||
$aSearch['{{executive_editor}}'] = empty($aUser['realname']) ? '' : '\Executiveeditor{'.$this->dealContent($aUser['realname']).'}';
|
$executive_editor = empty($aProductionArticle['executive_editor']) ? '' : '\Executiveeditor{'.$this->dealContent($aProductionArticle['executive_editor']).'}';
|
||||||
|
$executive_editor_realname = empty($aUser['realname']) ? '' : '\Executiveeditor{'.$this->dealContent($aUser['realname']).'}';
|
||||||
|
$executive_editor = empty($executive_editor) ? $executive_editor_realname : $executive_editor;
|
||||||
|
$aSearch['{{executive_editor}}'] = $executive_editor;
|
||||||
|
|
||||||
//摘要替换
|
//摘要替换
|
||||||
$sAbstract = empty($aProductionArticle['abstract']) ? '' : $this->dealContent($aProductionArticle['abstract']);
|
$sAbstract = empty($aProductionArticle['abstract']) ? '' : $this->dealContent($aProductionArticle['abstract']);
|
||||||
|
|||||||
Reference in New Issue
Block a user