\documentclass[utf8]{ctexart}
\begin{document}
这个部分不加黑 \\
\begin{bfseries}
这段我希望他能加黑啊
\end{bfseries}
,这个部分不加黑,看是否能实现\\
这个部分不加黑,看是否能实现
\end{document}
\usepackage{amssymb}
% 实数
\mathbb{R}
% 整数
\mathbb{N}
\usepackage[normalem]{ulem}
\uline{我是一个兵} %下划线
\uuline{我是一个兵} %双下划线
\uwave{我是一个兵} %底下波浪线
\sout{我是一个兵} %删除线
\xout{我是一个兵} %斜删除线
$\tilde{A_2}$ % 小波浪
$\widetilde{A_2}$ % 大波浪
\renewcommand{\algorithmcfname}{算法}
\SetKwInput{KwIn}{输入}
\SetKwInput{KwOut}{输出}
\begin{algorithm}
\end{algorithm}
\renewcommand{\abstractname}{摘要}
\begin{abstract}
\end{abstract}
\renewcommand\refname{参考文献}
% 若你的bib文件为sample.bib
\bibliography{sample}
% 设置文献的标号方式,unsrt为按文献在文章出现的顺序
\bibliographystyle{unsrt}
% 若你的bib文件为sample.bib
\bibliography{sample}
% 设置文献的标号方式,unsrt为按文献在文章出现的顺序
\bibliographystyle{unsrt}
除了unsrt还有其他的标号方式:
然后点击BibTex,然后就能获取
@inproceedings{zyskind2015decentralizing,
title={Decentralizing privacy: Using blockchain to protect personal data},
author={Zyskind, Guy and Nathan, Oz and others},
booktitle={Security and Privacy Workshops (SPW), 2015 IEEE},
pages={180--184},
year={2015},
organization={IEEE}
}
\usepackage{float}
\begin{algorithm}[H]
\section*{"Section的标题"}
\noindent
\\ %换行
\page %换页
$\<$ %小于
%\>$ %大于
$\le$ %小于等于
$\ge$ %大于等于
$\gg$ %远远大于
$\ll$ %远远小于
$a\ b$ % a b
\begin{equation}
\begin{aligned}
......
\end{aligned}
\end{equation}
\begin{equation}
\begin{aligned}
\theta ^{*},\theta ^{'*}&= \argmin\limits_{\theta,\theta^{'}}\frac{1}{n}\sum_{n}^{i=1}L\left (\textbf{x}^{(i)},\textbf{x}^{'(i)} \right )\\
&=\argmin\limits_{\theta,\theta^{'}}\frac{1}{n}\sum_{n}^{i=1}L\left (\textbf{x}^{(i)},g_{\theta ^{'}}\left ( f_{\theta }\left ( \textbf{x}^{i}\right )\right )\right )
\end{aligned}
\label{f2}
\end{equation}
\usepackage{supertabular}
\begin{supertabular}{|r@{\hspace{6.5mm}}|r@{\hspace{5.5mm}}|r|r|}
1 & 1 & 1 & 1 \\
2 & 4 & 16 & 2 \\
3 & 9 & 81 & 6 \\
\end{supertabular}
\appendix
\renewcommand{\appendixname}{Appendix~\Alph{section}}
\section{附录1}
some text...
\section{附录2}
some text...
\end{document}
%注意需要导包
\usepackage{caption}
\usepackage{graphicx, subfig}
\begin{figure}[H] %紧跟插入文本处
\centering %图片居住
\includegraphics[width=.4\textwidth]{pictures/summary.png} %设置为页面宽度的40%
\captionsetup{font={small}}
\caption{工作量生成算法总体框架} %caption是图片的标题
\label{summary} %此处的label相当于一个图片的专属标志,目的是方便上下文的引用
\end{figure}
\usepackage{float}
\begin{figure}[H]
大小有这几种:
1. large
2. small
3. footnotesize
\usepackage{caption}
\captionsetup{font={scriptsize}} %% 这一句放在 caption前面
%为公式自动编号
\makeatletter
\@addtoreset{equation}{section}
\makeatother
\renewcommand{\theequation}{\arabic{section}.\arabic{equation}}
后面就可以
\begin{equation}
\end{equation}
usepackage[noblocks]{authblk}
IEEE会议的模板&四个作者为例
作者单位如果名字较短,可以直接写在作者对应的下面,邮箱可以对应写在再接下来的下面。
\author{作者 \\ 单位 \\ 邮箱}
\author{作者1 \\单位1\vspace{-2cm}
\thanks{四位作者的邮箱}\\
\and 作者2\\单位2\vspace{-2cm}\\
\and 作者3\\单位3\vspace{-2cm}\\
\and 作者4\\单位4\vspace{-2cm}\\
}
总之就是,想脚注的就放在\thanks{ }里面。
一个作者对应一个单位可能一行写不下,尤其是有几个作者是同一单位的时候,可以在不同单位的作者名字右上角标注不同符号,下面再分别写这些单位和属于这些单位的作者的邮箱。
例如:(假设第1、3、4作者一个单位,第2作者自己一个单位)
\author[*]{作者1}
\author[+]{作者2}
\author[*]{作者3}
\author[*]{作者4}
\affil[*]{单位1, \authorcr 作者1、3、4的邮箱}
\affil[+]{单位2, 作者2的邮箱}
注:
1、\affil命令后的{}中的内容,如果觉得需要换行的话,换行命令是\authorcr(不是\)。
2、Email中可以吧相同邮箱的人@前面的内容写在一个{}里,用逗号隔开。注意{和}前面要加\。例如:
\affil[*]{单位1, \authorcr Email: \{zuozhe1, zuozhe2\}@yahoo.com, [email protected]}