LaTeX使用--XeLaTeX入门基础(二)

来源:互联网 发布:csol商人 网络去尼玛 编辑:程序博客网 时间:2024/06/06 02:18
主机平台:Gentoo Linux 11.2

内核版本:Linux Kernel 3.2.1

编译环境:XeTeX 3.1415926-2.3-0.9997.5 (TeX Live 2011)

相关阅读:LaTeX使用--XeLaTeX入门基础(一) http://www.linuxidc.com/Linux/2012-05/61546.htm

1、首先是vim-latex插件的安装

http://vim-latex.sourceforge.net/index.php?subject=download&title=Download官方下载插件包

将其解压到~/.vim目录下,注意这里是将包文件加中的文件和文件夹放在.vim目录下。

追加~/.vimrc中

  1. " REQUIRED. This makes vim invoke Latex-Suite when you open a tex file.  
  2. filetype plugin on  
  3.   
  4. " IMPORTANT: win32 users will need to have 'shellslash' set so that latex  
  5. " can be called correctly.  
  6. set shellslash  
  7.   
  8. " IMPORTANT: grep will sometimes skip displaying the file name if you  
  9. " search in a singe file. This will confuse Latex-Suite. Set your grep  
  10. " program to always generate a file-name.  
  11. set grepprg=grep\ -nH\ $*  
  12.   
  13. " OPTIONAL: This enables automatic indentation as you type.  
  14. filetype indent on  
  15.   
  16. " OPTIONAL: Starting with Vim 7, the filetype of empty .tex files defaults to  
  17. " 'plaintex' instead of 'tex', which results in vim-latex not being loaded.  
  18. " The following changes the default filetype back to 'tex':  
  19. let g:tex_flavor='latex'  
添加 ~/.vim/ftplugin/tex.vim中
  1. " this is mostly a matter of taste. but LaTeX looks good with just a bit  
  2. " of indentation.  
  3. set sw=2  
  4. " TIP: if you write your \label's as \label{fig:something}, then if you  
  5. " type in \ref{fig: and press <C-n> you will automatically cycle through  
  6. " all the figure labels. Very useful!  
  7. set iskeyword+=:  
由于我是使用xelatex编译pdf文件,然后使用evince查看pdf文件,所以需要修改~/.vim/ftplugin/latex-suite/texrc文件

为了简单设置所有的TexLet g:Tex_DefaultTargetFormat = 'pdf'

设置所有的TexLet g:Tex_ViewRule_pdf = 'evince'

设置TexLet g:Tex_CompileRule_pdf = 'xelatex -interaction=nonstopmode $*'

重启vim即可。

常用快捷键

\ll 采用xelatex编译文档
\lv 使用evince预览生成的pdf文档
F5 插入数学公式环境,主要包括eqnarray,equation,align,$$
F7 插入引用,包括footnote,cite,pageref,label
shift+F5 变更插入环境
shift+F7 变更插入引用

下面就使用上面配置的环境来测试学习。

2、交叉引用

  1. \section{交叉引用}  
  2.  24 This is a ref \label{sec:this} example.See section~\ref{sec:this} on the page~\pageref{sec:this}  

3、强调

  1. \section{强调}  

  1. 我的\emph{LinuxIDC.com}地址:\underline{www.linuxidc.com}  

4、数学公式

LaTeX最强大的功能就是编辑美丽的数学和物理等公式,你不会遇到word中公式变形或无法显示的问题,你也不会为了好的兼容性而插入一张图片来代替所要写的公式,即不方便也有伤大雅。

比如爱因斯坦的公式:

  1. \begin{equation}  
  2.   e=m\cdot c^2   
  3. \end{equation}  
编译结果如下:


\section{数学公式}  

  1.  \begin{equation}  
  2.    e=m\cdot c^2 \;  
  3.  \end{equation}  
  4.  \begin{equation}  
  5.   \sum_{1}^{n} I_k=0 \;  
  6. \end{equation}  
  7. \begin{equation}  
  8.  I_D = I_F-I_R \;  
  9. end{equation}  
编译结果:


5、引号

双引号使用符号上半部分``,下半部分'',单引号是上半部分`,下半部分'

  1. \section{引号}  
  2. ``Please press the `x' key''\\  

6、破折号与连字符
  1. \section{破折号}  
  2. daughter-in-law\\  
  3. pages 13--67\\  
  4. yes---or no\\  
  5. 0,1 and $-1$\\  

7、~

  1. \section{~}  
  2. www.linuxidc.com/\~{}Demo \newline  
  3. www.linuxidc.com/$\sim$Demo \newline  

0 0
原创粉丝点击