latex字体字号设置学习笔记

%导言区
\documentclass[10pt]{article}
%文档类参数可以控制normalsize的大小,可以进行设置,一般只有10、11、12pt


\usepackage{ctex}


%latex的思想是格式与内容的分离,不建议在文档中直接使用大量命令,用newcommand命令定义一个新的命令以执行相关的操作。
\newcommand{\myfont}{\textit{\textbf{\textsf{Fancy Text}}}}


%正文区(文稿区)
       %字体族设置(罗马字体、无衬线字体、打字机字体)
       \textrm{Roman Family} \textsf{Sans Serif Family} \texttt{Typewriter Family}
       %字体命令,作用于命令的参数
       
       {\rmfamily Roman Family} {\sffamily Sans Serif Family}  {\ttfamily Typewriter Family}
       %字体声明,作用于后续的文本,可以用大括号对文本进行分组,从而限定字体声明的作用范围
       
       {\sffamily who you are?you find self on everyone around.}
       
       {\ttfamily Are you wiser than others?}
       
       %字体系列设置(粗细、宽度)
       \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 楷书}
       
       中文字体的\textbf{粗体}与\textit{斜体}
       %中文字体的粗体用黑体表示,斜体用楷书表示
       
       %字体大小(与normalsize相对的大小)
       {\tiny          Hello}\\
       {\scriptsize    Hello}\\
       {\footnotesize  Hello}\\
       {\small         Hello}\\
       {\normalsize    Hello}\\
       {\large         Hello}\\
       {\LARGE         Hello}\\
       {\huge          Hello}\\
       {\Huge          Hello}\\
       
       %中文字号设置命令
       \zihao{-0} 你好!
       
       \zihao{5}  你好!
       
       \myfont
%注:在命令行输入texdoc ctex可以打开ctex宏包手册 输入texdoc lshort-zh可以打开latex简单使用教程

你可能感兴趣的:(latex)