博客
关于我
美赛latex写作相关
阅读量:260 次
发布时间:2019-03-01

本文共 1719 字,大约阅读时间需要 5 分钟。

一、引用宏

这个在每个模板里都有,还有页眉页脚页数,不必赘述。

\documentclass[final,3p,times]{elsarticle}\usepackage{graphicx, amssymb}\usepackage{amsthm}\usepackage{amsmath}\usepackage{epsfig}\usepackage{graphicx}\usepackage{subfigure}\usepackage{graphics}\usepackage{multirow}\usepackage{threeparttable}\usepackage{amsthm}\usepackage[noend]{algpseudocode}\usepackage{algorithmicx,algorithm}\newtheorem{theorem}{Theorem}\theoremstyle{definition}\newtheorem{definition}{Definition}\theoremstyle{remark}\newtheorem{remark}{Remark}\theoremstyle{proposition}\newtheorem{proposition}{Proposition}\theoremstyle{example}\newtheorem{example}{Example}\theoremstyle{corollary}\newtheorem{corollary}{Corollary}\theoremstyle{property}\newtheorem{property}{Property}\renewcommand{\algorithmicrequire}{ \textbf{Input:}} %Use Input in the format of Algorithm\renewcommand{\algorithmicensure}{ \textbf{Output:}} %UseOutput in the format of Algorithm\begin{document}Please write here.\end{document}

二、数学符号相关

两种控制符

  1. $ $生成行内公式
  2. 生成数学块公式
    $_{}需要转义字符,前加\

一些常用的数学符号表示:

指数^下标_平方根\sqrt[n]上下水平线\overline    \underline上下大括号\overbrace   \underbrace向量  \vec      \overrightarrow 和\overleftarrow分数  \frac积分运算符    \int求和运算符    \sum乘积运算符    \prod

详情:

三、论文格式排版

1.整体格式

\begin{XXX}...\end{XXX}表示一个段落,XXX填写document表示整篇文章abstruct表示摘要
\newpage   新起一页
\setcounter{page}{1}设置页码计数器从当前页面开始之后每页自动加上代码
\section{XXX}段落,XXX为段落标题
\subsection{XXX}子段落

2.语句编辑

\indent缩进
\\换行,另起一段\par换行,另起一段(首行缩进)
\bf加粗
{...}语句块
$...$行内数学公式
\url加入超链接

3.插入图片

\centerline{\inludegraphics[height=X.Xcm]{图片名.后缀名}}设置插入图片高度,要插入的图片放在figures文件夹里\centerline{XXXX}图片下方文字标注

4.插入表格

\begin{table}...\end{table}插入表格快控制语句\begin{tabular}{  {p{3cm}|p{3cm}....}\end{tabular}
\centering居中\hline表格每一行的横线&\\每一行的结束\rowcolor[gray]{0.9}设置一行的颜色

转载地址:http://fyvx.baihongyu.com/

你可能感兴趣的文章
Mysql5.7版本单机版my.cnf配置文件
查看>>
mysql5.7的安装和Navicat的安装
查看>>
mysql5.7示例数据库_Linux MySQL5.7多实例数据库配置
查看>>
Mysql8 数据库安装及主从配置 | Spring Cloud 2
查看>>
mysql8 配置文件配置group 问题 sql语句group不能使用报错解决 mysql8.X版本的my.cnf配置文件 my.cnf文件 能够使用的my.cnf配置文件
查看>>
MySQL8.0.29启动报错Different lower_case_table_names settings for server (‘0‘) and data dictionary (‘1‘)
查看>>
MYSQL8.0以上忘记root密码
查看>>
Mysql8.0以上重置初始密码的方法
查看>>
mysql8.0新特性-自增变量的持久化
查看>>
Mysql8.0注意url变更写法
查看>>
Mysql8.0的特性
查看>>
MySQL8修改密码报错ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
查看>>
MySQL8修改密码的方法
查看>>
Mysql8在Centos上安装后忘记root密码如何重新设置
查看>>
Mysql8在Windows上离线安装时忘记root密码
查看>>
MySQL8找不到my.ini配置文件以及报sql_mode=only_full_group_by解决方案
查看>>
mysql8的安装与卸载
查看>>
MySQL8,体验不一样的安装方式!
查看>>
MySQL: Host '127.0.0.1' is not allowed to connect to this MySQL server
查看>>
Mysql: 对换(替换)两条记录的同一个字段值
查看>>