TeXStudio安装与入门

来源:互联网 发布:java nanotime 毫秒 编辑:程序博客网 时间:2024/05/18 05:43

1.安装配置texstudio+sumatraPDF

http://blog.csdn.net/lizuoxin/article/details/48173907

视频教程:

http://www.bilibili.com/video/av6564090/


2.简单的模板

\documentclass{article}


%宏包
\usepackage{amsmath}
\usepackage{graphicx}
\newtheorem{thm}{Theorem}[section]
%正文
\begin{document}


\title{linex loss function}
\author{}
\date{}
\maketitle
%\tableofcontents
%\mainmatter
%\part{}
%\chapter{}


\section{model}
hello!


\end{document}


3.texstudio常用快捷键

F5:运行和查看

"Ctrl" + "T":注释

“Ctrl” + "U":去除注释

eqnarray可输入多行,常用的有\\换行,&&调整多行之间对齐,\nonumber表示某行不需要标号

常用的LaTeX数学符号表下载:

http://download.csdn.net/detail/mary1992630/9827867

常用技巧和符号总结:

http://www.cnblogs.com/sylvanas2012/archive/2013/05/28/3102880.html

写作入门参考:

http://www.cnblogs.com/bekitty/p/3523591.html

http://www.cnblogs.com/bekitty/p/3523595.html


1 1