latex入门1——5课笔记

时间:2022-11-30 06:36:25
%导言区
\documentclass{article}%book,report,letter
\title{My Document}
\author{Zhou Siyu}
\date{\today}

%正文区
\begin{document}
\maketitle
Hello World!

%添加空行实现分段
Let $f(x)$ be defined by the formula $$f(x)=3x^2+x-1$$ which is a polynomial of degree 2.
%单美元符号表示行内公式,双美元符号表示行间公式
%数学内容放在美元符号内
\end{document}

预览效果:

latex入门1——5课笔记

latex入门1——5课笔记
latex入门1——5课笔记

%导言区
\documentclass{ctexart}
%通过打开命令窗口,输入texdoc ctex命令打开ctex宏包手册。

%在导言区进行全局设置引入ctex宏包,并确认编码形式为UTF-8{\tiny }
%\usepackage{ctex}
\title{\heiti 杂谈勾股定理}
\author{\kaishu 张三}
\date{\today}
%使用newcommand定义命令
\newcommand\degree{^\circ}

%正文区
\begin{document}
\maketitle
勾股定理可以用现代语言描述如下:

直角三角形斜边的平方等于两腰的平方和。

可以用符号语言表述为:设直角三角形$ABC$,其中$\angle c = 90\degree$,则有:%$$AB^2=BC^2+AC^2$$
%引用begin{equation}环境产生带有序号的公式环境
\begin{equation}
AB^2=BC^2+AC^2
\end{equation}
\end{document}
效果预览:

latex入门1——5课笔记

\documentclass[12pt]{article}
%12pt指字体大小为12磅(只有10,11,12磅)
\usepackage{ctex}
\newcommand{\myFont}{\textit{\textbf{\textsf{Fancy Text}}}}
\begin{document}
%字体族设置_罗马字体,无衬线字体,打字机字体
\textrm{Roman Family} \textsf{Sans Serif Family} \texttt{Typewritter Family}
\rmfamily Roman Family \sffamily Sans Serif Family \ttfamily TypeWritter Family

\sffamily In Chinese tradition, it is a great merit for people to be frugal.

%定义字体命令一直延伸到遇到下一个字体命令的时候。
\ttfamily Our parents have gone through the hard time when our country’s economy is not good.
%也可以使用大括号进行分组以限定声明的范围。

%字体系列设置(粗细,宽度)
\textmd{Medium Series} \textbf{Boldface Series}%黑体字,粗体铅字
\mdseries Medium Series \bfseries Boldface Series

%字体形状设置
%英文——平常直立,斜体/意大利斜体,伪斜体,小型大写
\textup{UpRight Shape}\textit{Italic Shape}
\textsl{Slanted Shape}\textsc{Small Caps Shape}

\upshape{UpRight Shape}\itshape{Italic Shape}
\slshape{Slanted Shape}\scshape{Small Caps Shape}


%中文——宋体,楷书等
{\songti 宋体}\quad {\heiti 黑体}\quad{ \fangsong 仿宋} \quad{\kaishu 楷书}

中文字体的\bfseries 粗体 与\itshape 斜体

{\zihao{-0}香港记者跑得快}

\myFont

\end{document}
效果预览:

latex入门1——5课笔记

%使用section,subsection与subsubsection来设置提纲
%\documentclass{article}
%\usepackage{ctex}
\documentclass{ctexbook}

%正文区(文稿区 )
\begin{document}
\chapter{绪论}%使用chapter产生带章节的结构,用于book的排版
\section{引言}
19世纪末20世纪初,是世界历史发生大动荡、大变革的时期。在这个 时期里,尽管欧洲批判现实主义文学呈现衰落状态,但仍然是文学的主流, 在整个世界文坛影响最大。\\同时,自然主义文学、象征主义文学和唯美主义 文学的出现,又使文坛在丰富多彩中显得光怪陆离。\par 无产阶级文学也获得了 重大成就。
%\par paragraph命令产生了新的段落。
%使用\\实现换行,但并不会缩进。
\section{实验方法}
\section{实验结果}
\subsection{数据}
\subsection{图表}
\subsubsection{实验条件}
\subsubsection{实验过程}
\subsection{结果分析}
\section{结论}
\section{致谢}
\end{document}
效果预览:

latex入门1——5课笔记