zoukankan      html  css  js  c++  java
  • 把阅读平台从Acrobat转到Endnote

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

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

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

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

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

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

      

       ibliographystyle{plain}%
    
      ibliography{bibfile}
    
      end{document}

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

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

       documentclass{book}
      egin{document}
      	itle{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}
    defallfiles{}
    egin{document}
    	itle{A LaTeX Book}
    author{cohomo@blogbus}
    date{}maketitle
    input{chap1}
    input{chap2}
    input{chap3}
    end{document}
    
    % chap1.tex 
    ifxallfilesundefined
    documentclass{article}
    egin{document}
    	itle{Something in Title}
    author{cohomo@blogbus}
    date{}
    maketitle
    else
    chapter{Chap1's Title}
    fi
    section{First Section}
    section{Second Section}
    ifxallfilesundefined
    end{document}
    fi
    

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

  • 相关阅读:
    12月14日 bs-grid , destroy_all()
    12月13日 什么是help_method,session的简单理解, find_by等finder method
    12月10日 render( locals:{...}) 传入本地变量。
    12月8日 周五 image_tag.
    12月7日,几个错误,拼写错误,遗漏符号:,记忆有误,max-width的作用。gem mini_magick, simple_form
    程序员必读之软件架构
    先进PID控制MATLAB仿真(第4版)
    中文版Illustrator CS6基础培训教程(第2版)
    Android系统级深入开发——移植与调试
    Excel在会计与财务管理中的应用
  • 原文地址:https://www.cnblogs.com/ubiwind/p/5595784.html
Copyright © 2011-2022 走看看