latex安装与使用 - yingziaiai/SetupEnv GitHub Wiki
http://www.readern.com/sublime-text-latex-chinese-under-mac.html http://blog.csdn.net/songrotek/article/details/46457571 整体是参照上两文,稍有整合,安装的是MacTex Basic版本:
遇到的问题: 当安装完测试时,发现command+B显示no build system的错误,选择 Tools-> Build System -> latex
对于中文问题的解决,按第二个文章解决:
点击Browse Package,然后
打开编辑~/Library/Application\ Support/Sublime\ Text/Packages/Users/LaTeX.sublime-settings,将其中”builder”条目改为: “builder”: “simple” 接着打开编辑~/Library/Application\ Support/Sublime\ Text/Packages/LaTeXTools/builders/simpleBuilder.py 找到其中大概第41行 pdflatex = [“pdflatex”, “-interaction=nonstopmode”, “-synctex=1″] 修改为 pdflatex = [“xelatex”, “-interaction=nonstopmode”, “-synctex=1″] 保存后关闭,重新编译一下,中文正常啦!
在线版本: http://bbs.pinggu.org/thread-3310412-1-1.html LaTeX可以进行线上编纂,好处是能够随时自动保存工作进度和数据,而且可以多人合作编写文档。
常用的LaTex online compiler基本就是sharelatex.com和writelatex.com这两个,需要注册,基本账户免费。
使用案例: http://cv.qiaobutang.com/tpl/?keyword=java+%E5%BC%80%E5%8F%91&order=relevance
http://savagegarden.iteye.com/blog/2072685
https://github.com/matrix-lisp/moderncv
http://www.latexstudio.net/archives/3611
http://www.cnblogs.com/aoaoblogs/archive/2013/01/24/2874595.html
插入图片位置
\begin{picture}(1,1) \put(-105,-15){\includegraphics[width=1.00in,height=1.00in]{1.jpg}} \end{picture}
图文并排
\begin{minipage}[b]{.25\linewidth} \begin{flushright} somecontent \end{flushright} \end{minipage} \begin{minipage}[b]{.25\linewidth} \includegraphics[height=6\baselineskip]{1} \end{minipage}
\begin{minipage}[b]{.5\linewidth} \begin{flushleft} \LARGE \textbf{大数据开发工程师} \ \normalsize hadoop, hive, hbase \ test \ \end{flushleft} \end{minipage} \begin{minipage}[b]{0.32\linewidth} \begin{flushright} contents \end{flushright} \end{minipage} \begin{minipage}[b]{1.5\linewidth} \includegraphics[height=6\baselineskip]{1} \end{minipage}