- Download a bibliography style file such as h-physrev3.bst, into the directory where your document is. (There are many options about - just look around the web.)
- Create your bibliography database file by downloading (into the directory where your document is) and editing the example file tau.bib.
- Remove any \begin{thebibliography} ... \end{thebibliography} commands from your document.
- Just before the \end{document} command, add
\bibliographystyle{h-physrev3.bst} \bibliography{tau}
(Alternatively, just download and edit this example file.)
- When processing the file, you need to do: latex filename, bibtex filename, latex filename, latex filename.
'Linux & Ubuntu/LaTex'에 해당되는 글 4건
- 2009.04.02 use BibTex with latex
- 2009.03.30 Beamer Themes
- 2009.03.24 Getting start with latex
- 2007.11.01 Tex + CJK
AnnArbor
Antibes
Bergen
Berkeley
Berlin
Boadilla
CombridgeUS
Cop-enhagen
Darmstadt
default
Dresden
Frankfurt
Goettingen
Hannover
Ilmenau
JuanLesPins
Luebeck
Madrid
Malmoe
Marburg
Montepellier
PaloAlto
Pittsburgh
Rochester
Singapore
Szeged
Warsaw
By David R. Wilkins
2nd Edition
Copyright David R. Wilkins 1995
In addition to the HTML pages listed below, the primer Getting Started with LaTeX is also available in the form of a LaTeX2e input file, and as a DVI file or PDF file.
For further information regarding TeX and LaTeX (including information on how to obtain TeX software), visit the TeX Users Group (TUG) home page.
- Introduction to LaTeX
- Producing Simple Documents using LaTeX
- Producing Mathematical Formulae using LaTeX
- Mathematics Mode
- Characters in Mathematics Mode
- Superscripts and Subscripts
- Greek Letters
- Mathematical Symbols
- Changing Fonts in Mathematics Mode
- Standard Functions (sin, cos etc.)
- Text Embedded in Displayed Equations
- Fractions and Roots
- Ellipsis (i.e., `three dots')
- Accents in Mathematics Mode
- Brackets and Norms
- Multiline Formulae in LaTeX
- Matrices and other arrays in LaTeX
- Derivatives, Limits, Sums and Integrals
- Further Features of LaTeX
终于把TeX+CJK搞定啦 主要参考了下面两个网页: http://learn.tsinghua.edu.cn/homepage/015450/tex_frame.html http://www.linuxsir.com/bbs/showthread.php?s=&threadid=48567 首先安装下面这几个包: tetex-base tetex-bin tetex-extra 不需要安装cjk-latex以及那几个它推荐的中文字体包,因为这个cjk不支持GBK编码,只支持GB编码。 通过阅读/usr/share/texmf/web2c/texmf.cnf,可知$TEXMFLOCAL设定的是 /usr/local/share/texmf/ 所以根据第一个网页上的说明,所有的配置都应该针对上面的这个目录进行。 具体的过程可以参照上面的网页的说明(并不是简单的将gbkfonts的生成文件拷贝过去就行,还需要配置)。此处不再赘述。 texmf.cnf文件中设定了字体的目录,你可以把它改成你自己的包含有simsun等字体的目录,也可以把simsun等字体拷贝到他默认的目录中(默认的是/usr/local/share/texmf/fonts/truetype/) 最后需要安装CJK,只要将下载下来的cjk-4.5.2.tar.gz解压缩,并将解开的目录中的texinput中的所有文件和目录拷贝到 /usr/local/share/texmf/tex/CJK/下就行了(不包括texinput这个目录本身,如果CJK目录不在则可以自己建立 之。) |