%导言区
\documentclass[12pt]{article} %book,report,letter
% 12pt用来设置文本大小,一般只有10,11,12,其他设置通过字体大小命令设置
\usepackage{ctex} % 撰写中文
% \documentclass{ctexart}等价于以上两条命令,同样有ctexrep,ctexbook
\newcommand{\myfont}{\textsf{Fancy Text}} % 定义myfont设置字体
\title{\heiti 期中答辩} % 指定字体为黑体
\author{\kaishu 阿糊}
\date{\today}
%正文区(文稿区)
\begin{document}
\maketitle % 显示标题、作者和日期。letter中无此命令
hello world % 在latex中空行意味着另起一行
% 字体族设置(罗马字体、无衬线字体、打字机字体)
\textrm{Roman Family} \textsf{Sans Serif Family}
\texttt{Typewriter Family}
{\rmfamily Roman Family} {\sffamily Sans Serif Family}
{\ttfamily Typewriter Family}
% 字体系列设置(粗细、宽度)
\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 楷书}
% \quad代表空格
% 对于中文,粗体是用黑体表示,斜体是用楷书表示
中文字体的\textbf{粗体}与\textit{斜体}
% 字体大小
{\tiny Hello}\\
{\scriptsize Hello}\\
{\footnotesize Hello}\\
{\small Hello}\\
{\normalsize Hello}\\
{\large Hello}\\
{\Large Hello}\\
{\LARGE Hello}\\
{\huge Hello}\\
{\Huge Hello}\\
% 中文字号设置命令
\zihao{-0} 你好!% -0代表小初号
\zihao{5} 你好!
\myfont % 用newcommand定义myfont设置字体
\end{document}
LaTeX字体设置
于 2022-04-08 16:47:52 首次发布