1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
| \documentclass[UTF8]{ctexart}
\title{你好,world!} \author{Liam} \date{\today} % date 可以是 {January 2021}
\usepackage{graphicx} % 使用图片
\usepackage{float} %可以将[htbp]换成[H]以固定图片位置
\usepackage{amsmath} % 如果要使用数学公式,在导言区就要使用这个包。
\usepackage{geometry} \geometry{papersize={20cm,15cm}} \geometry{left=1cm,right=2cm,top=3cm,bottom=4cm} % 设置纸张大小和页边距
\usepackage{fancyhdr} \pagestyle{fancy}
\lhead{\author} \chead{\date} \rhead{18537182018} \lfoot{} \cfoot{\thepage} \rfoot{} \renewcommand{\headrulewidth}{0.4pt} \renewcommand{\headwidth}{\textwidth} \renewcommand{\footrulewidth}{0pt} % 设置页眉页脚
\usepackage{setspace} \onehalfspacing % 设置行间距
%\setlength{变量名} %设置变量的值 %\addtolength{变量名} %增加变量的值 %\newlength{变量名} % 定义新变量
\addtolength{\parskip}{.4em} % 修改段落间距:注意,这是在原有基础上加0.4em,如果需要缩小,改成负数就可以
%单位 含义 %pt point,磅,1pt=0.353mm %pc pica,1pc=12pt,四号字体大小 %in inch,英尺,1in=72.27pt=25.4mm %bp bigpoint, 大点,1bp=1/72 in %cm 厘米,1cm=1/2.54 in %mm 毫米,1mm=1/10 cm %sp TEX的基本长度单位,1sp=1/65536 pt %em 当前字号下,大写字母M的宽度 %ex 当前字号下,小写字母x的宽度 %mu math unit,数学单位长度 1/18em
%自定义section标题中的数字使用中文 \usepackage{zhnumber} \renewcommand\thesection{\zhnum{section}}
%自定义section标题的模板,显示为“第x部分” \usepackage{titlesec} \titleformat{\section}{\Large}{第\,\thesection\,部分}{1em}{}
%使用此包可以为每个小章节添加小目录 前提文档类型必需是ctexbook %renewcommand可以修改minitoc的默认名称从"Contents"到自己想要的字符串,如“目录” %\usepackage{minitoc} %\renewcommand\mtctitle{本章节目录}
%定义\tableofcontents能显示出的层级 \setcounter{tocdepth}{1}
%设置最深编号记录深度 \setcounter{secnumdepth}{5}
% 使用颜色 \usepackage{color}
\begin{document} \maketitle % maketitle 将展示导言区的 title, author and date % 可以使用 titling 宏包更精细地编辑maketitle的展示方式
\tableofcontents % 这个是目录
%如果不想使用预定义的标题页maketitle(预定义的样式与文本类型有关) \begin{titlepage} \vspace*{\fill} %\vspace上下段落之间空的距离,{}可填写pt,cm,mm,in等单位 %\vsapce*{}中*表示在一页开始就空距离 \begin{center} \Huge{标题}
\vspace{2cm}%上下两个Enter
\bigskip \Large{临床研究管理部}%上下两个Enter
\medskip% \Large{\today} \end{center} \vspace{\stretch{3}} \end{titlepage}
\newpage
你好,world! 换一行不会换行。但是会有一个空格。
换两行才会换行,和markdown一样。
使用textbf来\textbf{加粗文字}。bf 是 bold font的缩写
使用textit来\textit{斜体文字}。bf 是 italic的缩写
使用underline来添加\underline{下划线}。
\textcolor{red/blue/green/black/white/cyan/magenta/yellow}{text}
%其中textcolor{...}中包含的是系统定义好的颜色
\tiny{测试字号}
\scriptsize{测试字号}
\footnotesize{测试字号}
\small{测试字号}
\normalsize{测试字号}
\large{测试字号}
\Large{测试字号}
\LARGE{测试字号}
\huge{测试字号}
\Huge{测试字号}
\section{你好中国} 中国在East Asia. \subsection{Hello Beijing} 北京是capital of China. \subsubsection{Hello Dongcheng District} \paragraph{Tian'anmen Square} is in the center of Beijing \subparagraph{Chairman Mao} is in the center of 天安门广场。 \subsection{Hello 山东} \paragraph{山东大学} is one of the best university in 山东。
% 注意 上述的section subsection subsubsection paragraph subparagraph subsubparagraph 全部是文档类 article/ctexart 中可以使用的行文组织结构 % 在report/ctexrep/ctexbook中,还有\chapter{·};在文档类book/ctexbook中,还定义了\part{·}。
展示行内数学公式 $ a + \theta * b = \frac{a}{b} $ 展示行内数学公式。
展示行间数学公式
\[a + \theta * b = \frac{a}{b}\]
展示行间数学公式
如果要对公式进行编号,需要使用下方这种形式:
\begin{equation} E=mc^2. \end{equation}
表格用法
\begin{tabular}{|l|c|r|} \hline 操作系统& 发行版& 编辑器\\ \hline Windows & MikTeX & TexMakerX \\ \hline Unix/Linux & teTeX & Kile \\ \hline Mac OS & MacTeX & TeXShop \\ \hline 通用& TeX Live & TeXworks \\ \hline \end{tabular}
% 插图和表格通常需要占据大块空间,所以在文字处理软件中我们经常需要调整他们的位置。figure 和 table 环境可以自动完成这样的任务;这种自动调整位置的环境称作浮动体(float)。我们以 figure 为例。
\begin{figure}[htbp] \centering % 图片据中,可不写 \includegraphics[width = 0.5\textwidth]{a.jpg} % textwidth 代表当前文本区域的宽度 \caption{有图有真相} % 如果不需要添加标题,直接使用\includegraphics就行,不用figure环境 \label{fig:myphoto} \end{figure}
% htbp 选项用来指定插图的理想位置,这几个字母分别代表 here, top, bottom, float page,也就是就这里、页顶、页尾、浮动页(专门放浮动体的单独页面或分栏)。\centering 用来使插图居中;\caption 命令设置插图标题,LaTeX 会自动给浮动体的标题加上编号。注意 \label 应该放在标题命令之后。
\begin{enumerate} \item 第一项 \item item2 \item item3 \end{enumerate}
\begin{itemize} \item 第一项 \item item2 \item item3 \end{itemize}
\end{document}
|