一个炒鸡赞~\(≧▽≦)/~的latex模板网站。
http://www.latextemplates.com/
--------------------------------------------------------------------------------------------------------------------
由于latex命令不支持jpg或png格式的图片,因此只能用pdflatex命令来编译.tex文档
一般的插入图片包括\usepackage{graphicx} 即可
但是想要插入eps格式的图片又不行了。折腾了一会儿,笔记一下吧,省的以后忘记。
\usepackage{pdftoeps}
然后包含你想嵌入的eps格式图片
最后编译的时候要注意使用:
pdflatex -shell-escape ./yourtexfile.tex
主要考虑到eps格式的图片保真度很好,直接截屏的jpg或者png图片会在pdflatex编译下很模糊,影响阅读。
因此eps格式图片是个很好的图片。Matlab的图像输出支持eps。
----------------------------------------------------------------
2015.01.27
这是个很经典的”问题“,总可能遇到这种情况。google it, solve it :)
下面是个demo:
\begin{equation} \centering \leftidx{J}{^{dark}} = \min\limits_{\Omega \in \{r,g,b\}} \leftidx{J}{^c} \label{equ:eq2} \end{equation}
-------------------------------------------------------------------------------------------------------------------
2015.01.28
又是一两个小时过去了,操蛋啊。。。
\documentclass{article} \usepackage{algorithm} \usepackage{algorithmic} \begin{document} \begin{algorithm} \caption{print out "hello world ten times"} \begin{algorithmic} \FOR{$i$ $1$ to $10$} \STATE $print "hello world"$ \ENDFOR \end{algorithmic} \end{algorithm} \end{document}
详细的关于算法插入的教程这里有。
http://pan.baidu.com/s/1bntUE1D
---------------------------------------------------------------------------------------------------
2015.01.30
默默的先淌一下泪。。。踩过的坑啊。。
首先自己编辑一个*.bib文件
下面这个教程很好:
http://www.docs.is.ed.ac.uk/skills/documents/3728/3728.pdf
需要特别注意的是编译方法:
1. pdflatex ./yourtexfile.tex
2.bibtex ./yourtexfile.aux
3.pdflatex ./yourtexfile.tex
三个步骤一个都不能少
如何插入中文文献:http://blog.csdn.net/cinmyheart/article/details/43305585
-----------------------------------------------------------------------------------------------
2015.01.31
\documentclass{article} \usepackage{tabu} \begin{document} \begin{table}[ht] \caption{Table demo} \centering \begin{tabular}{c c c c} \hline \hline Case & 1 & 2 & 3 \\ %\hline 1 & 50 & 89 & 100 \\ 2 & 80 & 90 & 100 \\ 3 & 90 & 98 & 110 \\ %\hline \end{tabular} \label{table:nonlin} \end{table} \begin{table}[H] \begin{tabular}{| r | l |} \hline abc & hehe \\ \cline{1-2} 345 & number \\ \cline{2-2} 123123123 & wakaka \\ \hline\hline enheng & rtc \\ \end{tabular} \end{table} \end{document}
更细致的教程:
http://www1.maths.leeds.ac.uk/LaTeX/TableHelp1.pdf
http://en.wikibooks.org/wiki/LaTeX/Tables
-----------------------------------------------------------------------------------------------
2015.01.31
\documentclass{article} \usepackage{graphicx} \usepackage{subfig} \newcommand\PATHPROCESSING{/home/jasonleaster/Software/opencv-2.4.9/Project_in_XTU/PDF/Dehazing_Output} \begin{document} \begin{figure} \begin{center} \subfloat[first figure] { \includegraphics[width = 0.5\linewidth]{\PATHPROCESSING/D/Img_haze_freeguided_filterA1.jpg} } \subfloat[second figure] { \includegraphics[width = 0.5\linewidth]{\PATHPROCESSING/D/Img_haze_freeguided_filterA1.jpg} } \caption{demo for sub-figure} \end{center} \end{figure} \end{document}
http://www.win.tue.nl/latex/documentation/plaatjes/pictures.pdf
http://en.wikibooks.org/wiki/LaTeX/Importing_Graphics
-----------------------------------------------------------------------------------------------
公式换行:
2015.02.01
当遇到比较长的公式一行无法完全表述的时候(这种情况常常会发生在单页分两栏的情况)
\usepackage{asmmath}
即可
公式的换行:
对应的输出的结果:
---------------------------------------------
2015.02.01
设置段间距:
(这种方法可能会受到图片的影响,即如果文字上下有图片的话,上下间距可能还是比较大)
\renewcommand{\parskip}{0.2\baselineskip}
--------------------------------------------------------------------------------------------------------------
2015.02.04
图像公式的引用\ref{之前label的名字}。
记得要编译两次,如果只编译一次可能会出现??
只要编译两次就能搞定了。。。。
--------------------------------------------------------------------------------------------------------------
字幕组,这样玩教授真的好么。。。