English 中文(简体)
更改文件,编号为Bttex或尾注格式[封闭]
原标题:Convert a document s works cited to bibtex or endnote formats [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.


我有一份案文文件(序号或pdf),其中列举了大量作品。 所引述的作品如何出口到双目或尾注?

最佳回答

你是选择的破坏者。 谷歌“参考元数据提取”并开始点击。

可从PDF中提取的自由软件:见http://meta-extractor.sourceforge.net/“rel=“nofollow noretinger”>Metadata Extraction Tool

如果你拥有2007年的文件,该档案(最后)有重新列名的标准化代表,最终说明可以可靠地从中提取。

如果你只想看到文章中的引文,RefRuns是一个有用的工具,并有一个简单的网络接口。

问题回答

在下载元数据提取工具后,我发现该工具含有特定物体的元数据(名称、大小、日期等);它没有研究该物体的参考资料并提取。

最佳解决办法I ve从Word和Pdf文档中找到的报废参考资料是:cb2 Bib

页: 1

我曾经将我的旧书目书目转换成书目。

The usual path of the word xml bibliography file is something like: C:Documents and Settings<username>Application DataMicrosoftBibliographySources.xml

http://www.snowelm.com/~t/doc/tips/makebib.en.html

I made a vba macro for excel in windows to get several DOIs from plain text citations via crossref.
With the DOIs, you can get all bibtex formatted citations with R.
1. Download excel file with macro
2. Put your plain text citations in column A, modify slightly the numbers in columns F and H to get correctly the title in column K.
3. Press Ctrl A, and wait ca. 5 sec per citation.
(in order to use again, restore formulas with the backup sheet)
4. Locate your .csv file with DOIs saved, or save it again manually from sheet2
5. Use something like this to query your DOIs in R

library(RefManageR)
setwd("/your/folder/") # set the folder where the .csv file is
list.files(getwd()) # be sure your .csv file is there
doi<-read.csv("dois.csv", header=FALSE) # pass the file info to the doi object
# get a new .bib file with formatted references
GetBibEntryWithDOI(unlist(doi), temp.file = ("mycitations.bib"),  delete.file = FALSE) 
# write a .csv
bib<-ReadBib("mycitations.bib")
dfbib<-as.data.frame(bib)
write.csv(dfbib,"table.csv")




相关问题
How do I enter angle brackets in bibtex?

I want to put a title field in a bibtex citation that includes angle brackets: @article{ title= { <foo> } } but when it compiles I get upside down ! and ? instead. How to escape the ...

Compiling LaTex bib source

I am writing my thesis in Latex, and I have the references in an own thesis.bib file which look as follows @Article{xxx, author = "D.A. Reinhard", title = "Case Study", year = ...

LaTeX cite giving a [?]

in blah.tex , I have a cite{blah} I have a blah entry in blah.bib I run my file with : latex blah.tex && blah.tex && dvipdf blah.dvi The blah.pdf results in [?] How do I fix ...

热门标签