把阅读平台从Acrobat转到Endnote

现在阶段的学习完全到了自学,那么整理文献也必须有自己的一套思路和办法。不像硕士阶段导师给论文,而是自我指导读论文,必须有一种类似版本控制和库的快速调用的机制。而Endnote越来越必须了。

     首先遇到的问题是导入的格式问题,这涉及投稿引用文献的问题。

     其次是对阅读论文进行分类建库。

     再就是当使用参考文献的时候还需要导出,导出会导出到word,或者Ppt,也可能是latex。

     看了一下很多网上的参考经验,主要是两个。

     百度经验大致主要就是:在tex文件最后加入

  

   \bibliographystyle{plain}%

  \bibliography{bibfile}

  \end{document}

 

其中\bibliographystyle{plain}表示采用plain样式,当然可以换成其他样式。\bibliography{bibfile}表示先引用bibfile文件

  而文档拆分的主要方法则是采用类似Beamer的方法。

   \documentclass{book}
  \begin{document}
  \title{A LaTeX Book}
  \author{cohomo@blogbus}
  \date{}
  \maketitle
  \input{chap1}
  \input{chap2}
  \input{chap3}
  \end{document}

  
input命令可以改为include,区别在于,input可以放在导言区和正文区,包含的内容不另起一页;而include只能放在正文区,包含的内容另起一页。CJK中还有CJKinput和CJKinclude命令。

使得各章既可以被包含在另一个文件中也可以独立编译,方法是将main.tex和chap1.tex作如下修改:

% main.tex
 \documentclass{book}
\def\allfiles{}
\begin{document}
\title{A LaTeX Book}
\author{cohomo@blogbus}
\date{}maketitle
\input{chap1}
\input{chap2}
\input{chap3}
\end{document}

% chap1.tex 
\ifx\allfiles\undefined
\documentclass{article}
\begin{document}
\title{Something in Title}
\author{cohomo@blogbus}
\date{}
\maketitle
\else
\chapter{Chap1's Title}
\fi
\section{First Section}
\section{Second Section}
\ifx\allfiles\undefined
\end{document}
\fi

豆丁上还给出了从谷歌上导出格式到tex的方法www.doc88.com/p-2012064924597.html

posted @ 2016-06-18 10:23  [6G]蓝色の云风  阅读(335)  评论(0编辑  收藏  举报