Google

Archives

Taking full advantages of pdfLaTeX -- eps figure solution

Advantages of pdfLaTeX

LaTeX users generate postscript output using dvips. An alternative is to use pdfTeX to generate PDF files directly. The PDF format offers a number of advantages over postscript:

Smaller uncompressed file sizes.
Much more efficient bitmap inclusion.
Availability of hyperlinks.
Better accessibility for inexperienced users.
Adobe’s Acrobat reader offers facilities for electronic presentations

Limitation of pdfTeX

1. postscript figures cannot [...]

ubuntu 下 latex 中文支持script & samples

介绍如何在ubuntu 下按章cjk 支持,一下脚本在ubuntu 9.10 + kile 下测试好使。

latex 下安装中文支持,需要安装一系列宏包,然后拷贝生成字体什么的,甚是繁琐。一步抄作出问题,会浪费很多时间。

不如写成一个script, shell 脚本。出问题,或机器重装,运行此脚本即可,一劳永逸。

备忘。 脚本下载:install_cjk

samples :
\documentclass{article}
\usepackage{CJK}
\begin{document}
\begin{CJK}{UTF8}{song}
这是so8848
\end{CJK}
\end{document}

Incoming search terms for the article:latex samples (2)latex中文支持 (2)bib 中文 undefined control sequence (1)latex 中文 ubuntu (1)Latex 中文支持 (1)

BibTeX & “undefined control sequence”

If the tex and bib files are setup correctly, then running LaTeX followed by BibTeX will produce a bbl file (in the same directory as the tex and bib files). It is from the bbl file that LaTeX will insert the references into the document.

Open the bbl file with a text editor. If it looks [...]

Kile spell check doesn't work

Just for future reference. the following steps were what I followed:
1. open the Synaptic manager and install
Kile
apsell
kcontrol

2. goto Applications->Other->Spell Checker (it seems that it is not necessary)

in client choose Aspell, this will change the dictionary to Aspell (for me by default appeared Ispell as dictionary).

3. restart Kile (if it is open)

Incoming [...]

Notes on BibTeX

1. References and citations are best handled in a consistent way by using BibTeX. In this method, you supply all the relevant information about references in a “.bib file” without regard to ordering or style. Then you let BibTeX format all citations and reference entries according to the chosen bibliographic style, and you don’t have [...]