a**e 发帖数: 5794 | 1
这句是设定格式
这句是列出参考文献
但是我问的是,你在正文中怎样引用的?一般是\cite{ref_key} |
|
h******d 发帖数: 81 | 2 但我就想列出reference啊. 列不出来!!! |
|
|
h******d 发帖数: 81 | 4 list the reference in the back needs citation in the paper? |
|
g*****1 发帖数: 173 | 5 如果文章中没有引用的话可以用
\nocite{*}
列出所有的参考文献。 |
|
h******d 发帖数: 81 | 6 Is the command:
\documentclass{article}
\begin{document}
***** %body
\notice{*}
\bibliographystyle{plain}
\bibliography{file}
\end{document}
? |
|
|
h******d 发帖数: 81 | 8 I tried, it just shows the first article in the file.bib, the following
iterms are missing! |
|
b*****n 发帖数: 71 | 9 您的bib文件里面bibkey都没有,当然没法引用…… |
|
g*****1 发帖数: 173 | 10 对,有可能是这个问题,bib文件里面的参考文献格式如下,
@inproceedings{DBLP:conf/chi/LeskovecHK10, //这一行是key。
author = {Jure Leskovec and
Daniel P. Huttenlocher and
Jon M. Kleinberg},
title = {Signed networks in social media},
booktitle = {CHI},
year = {2010},
pages = {1361-1370},
ee = {http://doi.acm.org/10.1145/1753326.1753532},
crossref = {DBLP:conf/chi/2010},
bibsource = {DBLP, http://dblp.uni-trier.de}
} |
|
e*******s 发帖数: 1927 | 11 有一篇参考文献是US Patent,用的是ieeetr风格,jabref里输入bibtex信息以后
编译出来只有作者,题目,和年份。
比如是US11111号S. Zhang and S. Li的2009年的专利叫"xxx xxx patent",编译以后
参考文献里显示的是S. Zhang and S. Li, "xxx xxx patent", 2009
网上搜了一下说@patent不是标准项,那如果想引用专利的话应该用啥呢?多谢! |
|
a**e 发帖数: 5794 | 12 如果bibtex没这项定义,jabref定义也没用。 |
|
|
T*o 发帖数: 363 | 14 texnicenter and emacs are both text editor which calls Miktex(which includes
commands of latex, pdflatex, bibtex) to compile your TEX file. Emacs has a
very steep curve of learning. If you just want to get your TEX compiled, don
't bother Emacs until you really want to learn it.
之类的,他们也都和miktex 一起用?哪个编辑器可以写中文?
吗? |
|
S**I 发帖数: 15689 | 15 bibtex生成bbl文件后,打开这个文件,在\begin{thebibliography}后加上\setlength
{\itemsep}{2\baselineskip} |
|
s***e 发帖数: 5242 | 16 \setcitestyle{authoryear}
我这不work。我没用puthesis。
为啥要bibtex每一章?reference是放在每章后面? |
|
s***e 发帖数: 5242 | 17 子文档可以引用啊,只要主文件引用所有子文件及reference文档,
就bibtex主文件就可以了。 |
|
b*******t 发帖数: 33714 | 18 用一个author year的style就可以了
\bibliographystyle{xxx}
xxx可以是以下:
22: decsci
23: jtbnew
24: neuron
25: cell
26: jas99
27: abbrvnat
28: ametsoc
29: apalike
30: jqt1999
31: plainnat
32: jtb
33: humanbio
34: these
35: chicagoa
36: development
37: unsrtnat |
|
|
|
|
s***e 发帖数: 5242 | 22 搞定。
某chapter有自己的bibliography,删掉就行。 |
|
a**e 发帖数: 5794 | 23 你的tex文件里应该有个\bibliography 命令,它得指向你的bib文件。
然后你需要按以下顺序编译,
latex myart
latex myart
bibtex myart
latex myart
如果你用pdflatex或xelatex,把上面的latex改成相应的命令。
么改
+ |
|
d*******1 发帖数: 854 | 24 这就是我的问题啊, 我的文件用LATEX和BIBTEX都可以, 就是PDFLATEX不行,得到一大堆下面的出错信息
LaTeX Warning: Reference `fig3' on page 4 undefined on input line 159.
Underfull \vbox (badness 4492) has occurred while \output is active
Overfull \hbox (5.47499pt too wide) has occurred while \output is active
\T1/aer/m/n/10.95 4 []
[4 ]
!pdfTeX error: pdflatex.exe (file U:/work/paper_abstract/JSSstyle/fig3.JPEG)
eading JPEG image failed (no JPEG header found)
==> Fatal error occurred, no outpu... 阅读全帖 |
|
r****t 发帖数: 10904 | 25 git 内置了一些关于 latex 的知识,加了 gitattributes 以后,diff 的时候应该会
在 hunk header 里面告诉改动发生在哪个 section, 不过我没有验证。 这个是 man
gitattributes, 里面还建议 *.bib diff=bibtex
Each group of changes (called a "hunk") in the textual diff output is
prefixed with a line of the form:
@@ -k,l +n,m @@ TEXT
This is called a hunk header. The "TEXT" portion is by default a
line that begins with an alphabet, an underscore or
a dollar sign; this matches what GNU diff -p output uses. This
default sel... 阅读全帖 |
|
s*******i 发帖数: 12823 | 26 这个命令不work怎么办啊?
这个是aps网站上的用法,居然编译不出来
bibtex不认这个sequence,报错
求助 |
|
a**e 发帖数: 5794 | 27 你需要多编译几次
latex
bibtex
latex
latex
上面的latex可以看情况换成pdflatex或者xelatex。 |
|
b*******g 发帖数: 513 | 28 我编译的顺序是按照apie大虾说得:
latex
bibtex
latex
latex
开始的时候有个错,是一个bib file 里的一个citation里少写了一个"",后来我加上
了,编译就顺利了。我猜现在这样子,还是因为开始的那个错?:) |
|
|
r****t 发帖数: 10904 | 30 endnote 如果不能 export 成 bib 干嘛还用它呢?
我用的是 zotero, 就是一个个搜出来的。 |
|
|
b*******t 发帖数: 33714 | 32 repast给你推荐了zotero, 为什么不用呢?
:) |
|
r****t 发帖数: 10904 | 33 jabref works well, I had been using it for quite some time. |
|
b*******t 发帖数: 33714 | 34 首先主要想整理一下入门的资料,不至于在第0步就让有心弃暗投明的新手们望而却步。
软件上主要是编辑器,OSX我会整理,不过Linux很久没用了,希望大家来讲讲如何
setup一台白纸电脑;还有windows,从来没在上面用过LaTeX,希望有用TeXnicCenter
、WinTeX什么的的tx们积极发炎。
基本的格式,常用的模板之类,熟练了以后网上随搜随用多数时候都简单得很,但是刚
上手的时候有人指点可以少绕很多弯路。也欢迎tx们分享自己收集的资料、教程和心得
。特别征集以下入门教程:
math
bibtex
beamer
figure
我给大家蒸大包子去了~ |
|
w*****0 发帖数: 93 | 35 我用miktex2.9自带的texworks. 用feynMF,能显示出来费曼图,用了{fmfgraph*}
,label的内容却无法显示。
我抄了一段别人的例子如下:
\documentclass{article}
\usepackage{feynmf}
\begin{document}
\begin{fmffile}{simplelabels}
\begin{fmfgraph*}(140,125)
\fmfleft{i1,i2}
\fmfright{o1,o2}
\fmflabel{$e^-$}{i1}
\fmflabel{$e^+$}{i2}
\fmflabel{$e^+,\mu^+$}{o1}
\fmflabel{$e^-,\mu^-$}{o2}
\fmflabel{$i\sqrt{\alpha}$}{v1}
\fmflabel{$i\sqrt{\alpha}$}{v2}
\fmf{fermion}{i1,v1,i2}
\fmf{fermion}{o1,v2,o2}
\fmf{photon,label=$\gamma,,Z^0$}{v1,v2}
\end{fmfgraph... 阅读全帖 |
|
m**w 发帖数: 76 | 36 author = {Sch\ddot{o}n},
author = {Sch{\ddot{o}}n},
均不行. |
|
|
m**w 发帖数: 76 | 38 Great, Thanks a lot.
一步之遥. 我试了\'{o}, 发现不行, 以为这种方式都不行. 就没有试\"{o} .
入门级菜鸟, 对各种细节均不熟悉, 多谢指教. |
|
|
a***n 发帖数: 3633 | 40 我想知道latex是不是有这样的数据处理能力。
有一组记录是关于产品的,每个product都有price,contact number之类的信息。
每条记录也都有个reference。比如\produc1,\product2.
latex有没有什么机制让\product1{price}就给出相应的信息?
其实这个和bibtex很像,但是需要它出现在正文里。
谢谢。 |
|
a***n 发帖数: 3633 | 41 我想知道latex是不是有这样的数据处理能力。
有一组记录是关于产品的,每个product都有price,contact number之类的信息。
每条记录也都有个reference。比如\produc1,\product2.
latex有没有什么机制让\product1{price}就给出相应的信息?
其实这个和bibtex很像,但是需要它出现在正文里。
谢谢。 |
|
m****r 发帖数: 141 | 42 I am compiling a LaTeX file with 10 chapters and a table of contents. I have
added the following in the first page.
But why is the table of contents still missing?
thanks !!!
Any help will be appreciated.
This is the main file.
\pdfbookmark[1]{TABLE OF CONTENTS}{table}
\tableofcontents
\addtocontents{toc}{\def\protect\@chapapp{}} \cleardoublepage \
phantomsection
\addcontentsline{toc}{chapter}{LIST OF TABLES}
\listoftables
\cleardoublepage \phantomsection \addcontentsline{toc}{chapter}{LIST OF
F... 阅读全帖 |
|
m****r 发帖数: 141 | 43 I am compiling a LaTeX file with 10 chapters and a table of contents. I have
added the following in the first page.
But why is the table of contents still missing?
thanks !!!
Any help will be appreciated.
This is the main file.
\pdfbookmark[1]{TABLE OF CONTENTS}{table}
\tableofcontents
\addtocontents{toc}{\def\protect\@chapapp{}} \cleardoublepage \
phantomsection
\addcontentsline{toc}{chapter}{LIST OF TABLES}
\listoftables
\cleardoublepage \phantomsection \addcontentsline{toc}{chapter}{LIST OF
F... 阅读全帖 |
|
W*****k 发帖数: 158 | 44 用bibtex的一个问题:
有两个文献
AA, BB, CC 2012
AA, DD, EE, FF, 2012
结果正文引用时成了
AA, BB, and CC 2012a
AA, DD, EE, and FF 2012b
似乎只是按照第一作者和年份来确定的编号,而不是全部作者和年份
google了很长时间也没找到解决办法 |
|
|
b*******t 发帖数: 33714 | 46 试试看
\AtEveryBibitem{%
\clearfield{这里打你不要的field的名字}
} |
|
p***c 发帖数: 2403 | 47 比如这种样子
有没有办法不用自己输进去,而用bibtex啊 |
|
w***a 发帖数: 432 | 48 how do you compile your file?
it should like:
pdflatex --> bibtex --> pdflatex
Paste the original bib content here? |
|
c*********s 发帖数: 63 | 49 好了,现在问题完全解决了。
原来在bibdesk里面的页码就是117-21,改成117-121以后就对了。
另外编译的时候用:
1) XeLaTex
2) BibTex
3) XeLaTex
4) XeLaTex
本帖子结束。 |
|
c*********s 发帖数: 63 | 50 终于弄好了。把下面的存成.bst文件,和Tex文件放在同一个文件夹就可以了。
%%
%% This is file `cellnew.bst',
%% generated with the docstrip utility, by HJ, 03/03/2013.
%%
%% The original source files were:
%%
%% merlin.mbs (with options: `ay,nat,nm-rvvc,nmlm,x10,x0,m10,m0,mcite,mct-1
,mct-x2,keyxyr,blkyear,dt-beg,yr-par,note-yr,atit-u,jttl-rm,thtit-a,vol-it,
vnum-x,volp-com,pp-last,num-xser,jnm-x,btit-rm,bt-rm,add-pub,pub-par,pre-pub
,edby,edbyy,blk-tit,ppx,ed,abr,ednx,xedn,jabr,url,url-blk,em-it,nfss,')
%% ----------------------... 阅读全帖 |
|