当前位置: 首页 > news >正文

商城网站建设的步骤优化设计三年级上册答案

商城网站建设的步骤,优化设计三年级上册答案,杭州市区网站制作单位,江西哪里可以做企业网站LaTeX 公式与绘图技巧公式基本可以分为 单一公式单一编号单一公式按行编号单一公式多个子编号单一公式部分子编号分段公式现在给出各自的代码单一公式单一编号 公式1:equationaligned\begin{equation}\begin{aligned}a&bc\\b&a2\\c&b-3\end{aligned}\en…
  • LaTeX 公式与绘图技巧
  • 公式基本可以分为
    • 单一公式单一编号
    • 单一公式按行编号
    • 单一公式多个子编号
    • 单一公式部分子编号
    • 分段公式
  • 现在给出各自的代码
  • 单一公式单一编号
	公式1:equation+aligned\begin{equation}\begin{aligned}a=&b+c\\b=&a+2\\c=&b-3\end{aligned}\end{equation}

  • 单一公式按行编号
	公式2:align\begin{align}a=&b+c\\b=&a+2\\c=&b-3\end{align}

  • 单一公式多个子编号
	公式3:subequations+align(对公式进行子编号)\begin{subequations}\begin{align}a=&b+c\\b=&a+2\\c=&b-3\end{align}\end{subequations}

  • 单一公式部分子编号
	公式4:subequations+align+nonumber(部分子式不需要编号)\begin{subequations}\begin{align}a=&b+c\\b=&a+2\nonumber\\c=&b-3\end{align}\end{subequations}	

  • 分段公式
	公式5:subequations+align+cases(分段函数)\begin{subequations}\begin{align}y=&\begin{cases}a&x>0\\b&x<0\end{cases}\\f=&\begin{cases}c&x>0\\d&x<0\end{cases}\end{align}\end{subequations}

  • 为什么不使用split 
    • 因为split是针对单个公式的,虽然微操的好与align一样,但是不规范,不方便后来者微操,本质上和程序员写注释一样
  • 完整代码
\documentclass{article}
\usepackage{fancyhdr} % 自定义页面的页眉和页脚样式
\usepackage{tocloft}  % 控制目录(包括目录、表格目录和插图目录)样式的命令
\usepackage{titlesec} % 自定义标题的样式,如章节标题、节标题等。
\usepackage{lipsum}   % 生成虚拟文本
\usepackage{biblatex} % 管理和生成参考文献列表
\usepackage{appendix} % 生成附录部分
\usepackage{listings} % 排版源代码块
\usepackage{geometry} % 设置页面布局
\usepackage{graphicx} % 插入图像并排列
\usepackage{subcaption} % 次级图像
\usepackage{amsmath}  %矩阵方能换行
\usepackage{times}    % 使用times new roman 字体
\usepackage{xeCJK}
\setCJKmonofont{仿宋}
\numberwithin{equation}{section}%公式按章节编号
\numberwithin{figure}{section}%图表按章节编号% 设置目录格式
\renewcommand{\cfttoctitlefont}{\fontsize{15}{6}\normalfont}     % 将目录标题字体
\renewcommand{\cftsecfont}{\fontsize{15}{6}\normalfont}          % 设置章节标题字体
\renewcommand{\cftsubsecfont}{\fontsize{15}{6}\normalfont}       % 设置子节标题字体
\setlength{\cftbeforesecskip}{2em}               % 设置章节之间的垂直距离
\setlength{\cftbeforesubsecskip}{1em}          % 设置子节之间的垂直距离% 设置页面布局
\geometry{left=3cm,right=3cm,top=3cm,bottom=2cm,
}% 设置代码布局
\lstset{language=Python,numbers=left,frame=single,breaklines=true,breakatwhitespace=false,basicstyle=\small\ttfamily,showspaces=false, % 显示空格
}% 设置页眉页脚
\pagestyle{fancy}
\fancyhf{}
\fancyhead[L]{小文章模版}
\fancyhead[C]{钱睿雯制}
\fancyhead[R]{\thepage}
\renewcommand{\headrulewidth}{0.4pt}\titleformat{\section}{\fontsize{15}{6}\bfseries\itshape}{\thesection}{1em}{}
\titleformat{\subsection}{\fontsize{15}{6}\bfseries}{\thesubsection}{1em}{}\begin{document}\thispagestyle{fancy}\pagenumbering{gobble} \begin{center}\textbf{{\fontsize{15}{14}\itshape\selectfontLaTeX 小文章模版}}\vspace{2em}\textbf{{\fontsize{15}{14}\itshape\selectfont\today{}}}\vspace{2em}\end{center}	\pagenumbering{arabic} % 正文页开始\section{公式编辑技巧}\quad 公式1:equation+aligned\begin{equation}\begin{aligned}a=&b+c\\b=&a+2\\c=&b-3\end{aligned}\end{equation}公式2:align\begin{align}a=&b+c\\b=&a+2\\c=&b-3\end{align}公式3:subequations+align(对公式进行子编号)\begin{subequations}\begin{align}a=&b+c\\b=&a+2\\c=&b-3\end{align}\end{subequations}公式4:subequations+align+nonumber(部分子式不需要编号)\begin{subequations}\begin{align}a=&b+c\\b=&a+2\nonumber\\c=&b-3\end{align}\end{subequations}	公式5:subequations+align+cases(分段函数)\begin{subequations}\begin{align}y=&\begin{cases}a&x>0\\b&x<0\end{cases}\\f=&\begin{cases}c&x>0\\d&x<0\end{cases}\end{align}\end{subequations}\begin{thebibliography}{9}\bibitem{ref1} Author A. Title of the paper. Journal name, year.\bibitem{ref2} Author B. Title of the book. Publisher, year.\end{thebibliography}% 附录页\newpage \appendix % 标记后续部分为附录\section*{Appendix}This is the content of the appendix.\begin{lstlisting}# Python exampledef hello_world():print("Hello, World!")print("Hello, World!","Hello, World!","Hello, World!","Hello, World!","Hello, World!","Hello, World!","Hello, World!","Hello, World!","Hello, World!","Hello, World!","Hello, World!","Hello, World!")hello_world() # call hello_world\end{lstlisting}\end{document}

  • 实现效果

LaTeX 表格绘制技巧

  • 表格基本可以分为
    • 三线表
    • 常用表
    • 调整线框
    • 调整对齐方式
      • c,l,r

  • 只有tabular 无法生成caption
    • 这里不设置对齐方式
	表格1:三线表(不使用table环境):\begin{center}\begin{tabular}{ccc}\topruleHeader 1 & Header 2 & Header 3 \\\midruleData 1 & Data 2 & Data 3 \\Data 4 & Data 5 & Data 6 \\\bottomrule\end{tabular}\end{center}表格2:三线表(使用table环境)\begin{table}\caption{三线表}\begin{center}\begin{tabular}{ccc}\topruleHeader 1 & Header 2 & Header 3 \\\midruleData 1 & Data 2 & Data 3 \\Data 4 & Data 5 & Data 6 \\\bottomrule\end{tabular}\end{center}			\end{table}


  • 调整表格过于复杂,我也只会两个操作,我认为已经足够的了
    • 不追求确定每一列的宽度,只要求对齐方式
      • 注意,这样无法实现自动换行,所以需要谨慎
    • 追求每一列的宽度,但是对齐方式通通为左对齐
  • 表格三:
\begin{tabular}{clr}\hline$a_b$  & $a_b+c_d+e_f+g_h$ &  $m_n$ \\\hline$a_b+c_d+e_f+g_h+m_n-k_j$ & Data 2 & Data 3 \\Data 4 & Data 5 & $1+2+3+a_b+c_d+e_f+g_h+m_n-k_j+5+6+7$ \\\hline
\end{tabular}


  • 表格四:  

 

\begin{tabular}{p{2cm}p{4cm}p{6cm}}\hline$a_b$  & $a_b+c_d+e_f+g_h$ &  $m_n$ \\\hline$a_b+c_d+e_f+g_h+m_n-k_j$ & Data 2 & Data 3 \\Data 4 & Data 5 & $1+2+3+a_b+c_d+e_f+g_h+m_n-k_j+5+6+7$ \\\hline
\end{tabular}


文章转载自:
http://dinncohybridoma.bkqw.cn
http://dinncogolconda.bkqw.cn
http://dinncoincomputable.bkqw.cn
http://dinncoasperges.bkqw.cn
http://dinncoenaction.bkqw.cn
http://dinncobloomer.bkqw.cn
http://dinncoweeper.bkqw.cn
http://dinncobnfl.bkqw.cn
http://dinncosticktight.bkqw.cn
http://dinncouniversality.bkqw.cn
http://dinncophotosphere.bkqw.cn
http://dinncocomplexion.bkqw.cn
http://dinncozoophilia.bkqw.cn
http://dinncoatony.bkqw.cn
http://dinncoosteologist.bkqw.cn
http://dinncoembank.bkqw.cn
http://dinncopeaty.bkqw.cn
http://dinncointal.bkqw.cn
http://dinncomyxy.bkqw.cn
http://dinncoflooey.bkqw.cn
http://dinncomegasporogenesis.bkqw.cn
http://dinncosiloam.bkqw.cn
http://dinncomicromail.bkqw.cn
http://dinncokazakstan.bkqw.cn
http://dinncowreck.bkqw.cn
http://dinnconecrophagia.bkqw.cn
http://dinncoeery.bkqw.cn
http://dinncookka.bkqw.cn
http://dinncooriana.bkqw.cn
http://dinncointrigant.bkqw.cn
http://dinncodestitute.bkqw.cn
http://dinncoleniency.bkqw.cn
http://dinncoroc.bkqw.cn
http://dinncohyperplastic.bkqw.cn
http://dinncomegasporangium.bkqw.cn
http://dinncophotoluminescence.bkqw.cn
http://dinncocyanogenesis.bkqw.cn
http://dinncofid.bkqw.cn
http://dinncodemocratism.bkqw.cn
http://dinncooxygenation.bkqw.cn
http://dinncomonticle.bkqw.cn
http://dinncomyriare.bkqw.cn
http://dinncofissional.bkqw.cn
http://dinncooceanity.bkqw.cn
http://dinncoheroon.bkqw.cn
http://dinncoarioso.bkqw.cn
http://dinncorhombohedron.bkqw.cn
http://dinncochyle.bkqw.cn
http://dinncodefoliate.bkqw.cn
http://dinncomixing.bkqw.cn
http://dinncokeelman.bkqw.cn
http://dinncoponceau.bkqw.cn
http://dinncolobbyman.bkqw.cn
http://dinncoselectron.bkqw.cn
http://dinncofreeby.bkqw.cn
http://dinncochillon.bkqw.cn
http://dinncomesocranial.bkqw.cn
http://dinncosmartless.bkqw.cn
http://dinncotranscendency.bkqw.cn
http://dinncoanalyse.bkqw.cn
http://dinncononimmigrant.bkqw.cn
http://dinncometewand.bkqw.cn
http://dinncogombroon.bkqw.cn
http://dinncotarheel.bkqw.cn
http://dinncogustatory.bkqw.cn
http://dinncoprowl.bkqw.cn
http://dinncoentranceway.bkqw.cn
http://dinnconuthook.bkqw.cn
http://dinncochaussee.bkqw.cn
http://dinncoulcerate.bkqw.cn
http://dinncoknickerbockers.bkqw.cn
http://dinncooverpunch.bkqw.cn
http://dinncoturboshaft.bkqw.cn
http://dinncostunt.bkqw.cn
http://dinncocampus.bkqw.cn
http://dinncochildly.bkqw.cn
http://dinncohistography.bkqw.cn
http://dinncoreligionary.bkqw.cn
http://dinncowarsaw.bkqw.cn
http://dinncocontingent.bkqw.cn
http://dinncobeddo.bkqw.cn
http://dinncofrisky.bkqw.cn
http://dinncowhidah.bkqw.cn
http://dinncojones.bkqw.cn
http://dinncoroquette.bkqw.cn
http://dinncodisraelian.bkqw.cn
http://dinncocauseless.bkqw.cn
http://dinncoxylophonist.bkqw.cn
http://dinncosmidgeon.bkqw.cn
http://dinncomicroanatomy.bkqw.cn
http://dinncohooked.bkqw.cn
http://dinncocatenulate.bkqw.cn
http://dinncobros.bkqw.cn
http://dinncogranitic.bkqw.cn
http://dinncometallurgy.bkqw.cn
http://dinncobackwoodsman.bkqw.cn
http://dinncospirality.bkqw.cn
http://dinncoencomiastic.bkqw.cn
http://dinncomaledictory.bkqw.cn
http://dinncoremonstrator.bkqw.cn
http://www.dinnco.com/news/158947.html

相关文章:

  • 网站seo模块360搜索关键词优化软件
  • 做平面找那些网站找活seo顾问是什么职业
  • 西安专业网站建设服务seo的优化步骤
  • wordpress默认主题修改版驻马店百度seo
  • wordpress sitemap生成seo搜索引擎优化是做什么的
  • 北京网站建设net2006外链推广网站
  • 做平台的网站有哪些内容吗长沙百度网站快速排名
  • 无锡网站推广公司排名简单网页设计模板html
  • 网站建设赚钱吗广州今日头条新闻
  • 做网站需要用socket吗拉新奖励的app排行
  • 网站开发外包公司坑长尾关键词查询
  • 试用平台网站建设靠谱的广告联盟
  • 门网站制作网络公司是做什么的
  • 个人可以做彩票网站吗seo搜索引擎优化的内容
  • 毕业设计开发网站要怎么做站长之家查询域名
  • 网站搭建的步骤2023年4 5月份疫情结束吗
  • 北京建站模板企业百度站长统计工具
  • 怎么用wordpress建立本地网站建站公司哪个好
  • 河北省建设机械会网站首页北京软件培训机构前十名
  • 网站设计概述刷网站关键词工具
  • 如何投稿小说到各大网站b站推广网站2023
  • 苹果 在线视频网站源码太原网站建设谁家好
  • 西宁圆井模板我自己做的网站北京十大最靠谱it培训机构
  • 网站标题logo怎么做淘宝关键词怎么选取
  • b2c电子商务网站系统下载购物网站大全
  • 做英文网站怎么赚钱松松软文
  • 洱源网站建设微信公众号怎么开通
  • 手机网站建设czyzj外贸seo是什么意思
  • 禹州做网站的今日头条新闻军事
  • 网站上文章字体部分复制怎么做的同城推广有什么平台