2015-04-06 81 views
2

我很新使用LyX,但查看過這個論壇,以及其他人,還沒有發現任何其他人遇到過這個問題。LyX - 標題,摘要,關鍵字在視圖中使用Elsevier類時丟失

問題是,當我點擊'眼睛'以.pdf形式預覽我的文檔時,有兩個帶有相應正文文本的編號部分,但是我的標題,摘要和關鍵字以及'新頁面'的格式都丟失了;這兩個部分位於頁面的頂部,好像他們從未被包括在內。

一些相關信息:

  1. LyX的最近被安裝(近一週內)
  2. 我運行OSX 10.9.5
  3. 我LyX的版本是2.1.3
  4. 我使用的是愛思唯爾文檔類

以下是TeX的源:

 % Preview source code 

%% LyX 2.1.3 created this file. For more info, see http://www.lyx.org/. 
%% Do not edit unless you really know what you are doing. 
\documentclass[letterpaper,english]{elsarticle} 
\usepackage[T1]{fontenc} 
\usepackage[latin9]{inputenc} 

\makeatletter 

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% LyX specific LaTeX commands. 
\pdfpageheight\paperheight 
\pdfpagewidth\paperwidth 


\makeatother 

\usepackage{babel} 
    \begin{document} 

    \title{ This is where my title is } 


\author{My name} 
\begin{abstract} 
Abstract: This is my abstarct.\end{abstract} 
\begin{keyword} 
Keywords: Keyword1, Keyword2, Keyword 3 
\end{keyword} 
\newpage{} 


\section{Introduction} 

    My intro text 

\section{Literature Review} 

My body text 
\end{document} 

在此先感謝您花時間閱讀本文並提供幫助!

-Mike

EDIT1:標題之前和之後的關鍵字加入\begin{frontmatter}{}\end{frontmatter}{}後,事情似乎工作(即標題,關鍵詞,摘要和作者所有工作。) - 不愛思唯爾文檔類強制這個表示這些項目時使用?

回答

1

如下面鏈接所示: 在下拉菜單中,您將標題文本設置爲標題,其中包含BeginFrontmatter和EndFrontmatter的條目。您需要在標題之前放置第一個,在關鍵字之後放置第二個。 在您將標題文本設置爲標題的下拉菜單中,有BeginFrontmatter和EndFrontmatter的條目。您需要在標題之前放置第一個,在關鍵字之後放置第二個。 http://www.latex-community.org/forum/viewtopic.php?f=19&t=24933

相關問題