标签:style blog http color io 使用 ar strong for
基础使用:
\[ a^2+b^2=c^2 \]
插入代码:
在中插入代码需要包含listings宏包,而想要代码高亮需要xcolor宏包。
在导言区加入listings和xcolor宏包,并对其设置。
\usepackage{listings} %插入代码 \usepackage{xcolor} %代码高亮 \lstset{numbers=left, %设置行号位置 numberstyle=\tiny, %设置行号大小 keywordstyle=\color{blue}, %设置关键字颜色 commentstyle=\color[cmyk]{1,0,1,0}, %设置注释颜色 frame=single, %设置边框格式 escapeinside=``, %逃逸字符(1左面的键),用于显示中文 breaklines, %自动折行 extendedchars=false, %解决代码跨页时,章节标题,页眉等汉字不显示的问题 xleftmargin=2em,xrightmargin=2em, aboveskip=1em, %设置边距 tabsize=4, %设置tab空格数 showspaces=false %不显示空格 }
文章中需要插入代码时可以这样使用:
\begin{lstlisting}[language=C] /* helloworld.c */ #include <stdio.h> int main() { printf("Hello World!\n"); return 0; } \end{lstlisting}
(参考网址:http://blog.thebeyond.name/archives/33)
标签:style blog http color io 使用 ar strong for
原文地址:http://www.cnblogs.com/monmonde/p/3976391.html