09LaTeX學習系列之---Latex 字體的設置

目錄:

[TOC]html

本系列是有關LaTeX的學習系列,共計19篇,本章節是第9篇。 前一篇:08 LaTeX學習系列之---Latex 的中文操做 後一篇:10LaTeX學習系列之---Latex的文檔結構 總目錄:19LaTeX學習系列之---LaTeX的總結編程

1.字體族的設置函數

2.字體系列的設置學習

3.字體形狀的設置字體

4.字體大小的設置spa

5.函數式編寫文檔code

(一) 字體族的設置

1.說明:

(1)字體命令:

\textrm{Roman Family} 在花括號內的字體都是Roman Family 字體orm

(2)字體聲明:

\rmfamily Roman Family 該命令下面的字體都是是Roman Family字體,直到新的聲明出現覆蓋該聲明。htm

2.源代碼:

% 導言區
\documentclass{article}
\usepackage{ctex}

% 正文區
\begin{document}
	% 字體族的設置:羅馬字體, 無襯線字體 打字機字體 中文(黑體,宋體,仿宋,楷書)
	
	% 字體命令
	\textrm{Roman Family}
	
	\textsf{Sans Serif Family}
	
	\texttt{Typewriter Family }
	
	% 字體
	{\songti 宋體}
	
	{\heiti 黑體}
	
	{\fangsong 仿宋}
	
	{\kaishu 楷書}
	
	% 字體聲明
	\rmfamily  Roman Family
	\sffamily Sans Serif Family
	\ttfamily Typewriter Family
	
\end{document}

3.輸出結果:

01.png

(二) 字體系列的設置

1.源代碼:

% 導言區
\documentclass{article}
\usepackage{ctex}

% 正文區
\begin{document}
	% 字體系列的設置(粗細,寬度)
	
	% 字體命令
	\textmd{Medium Series}
	
	\textbf{Boldface Series}
	
	%字系列
	\textbf{粗體}
	
	\textit{斜體}
	
	
	% 字體聲明
	\mdseries{Medium Series}
	
	\bfseries{Boldface Series}
	
	
\end{document}

2.輸出效果:

02.png

(三) 字體形狀的設置

1.源代碼:

% 導言區
\documentclass{article}
\usepackage{ctex}

% 正文區
\begin{document}
	% 字體形狀設置(直立,斜體,僞斜體 ,小型大寫)
	
	% 字體命令
	\textup{Upright Shape}
	
	\textit{Italic Shape}
	
	\textsl{Slanted Shape}
	
	\textsc{Small Caps Shape}
	
	% 字體聲明
	\upshape{Upright Shape}
	
	\itshape{Slanted Shape}
	
	\slshape{Slanted Shape}
	
	\scshape{Small Caps Shape}
	
\end{document}

2.輸出效果:

03.png

(四) 字體大小的設置

1.說明:

在\documentclass[可選項]{article} 可選項:10pt, 11pt,12ptblog

(1)標準字體:

05.png

(2)中文字號:

04.png

2.源代碼:

% 導言區 10pt, 11pt, 12pt
\documentclass[12pt]{article}
\usepackage{ctex}

% 正文區
\begin{document}
	% 字體大小

	% 字體的大小
	{\tiny  Hello}\\
	{\scriptsize Hello}\\
	{\footnotesize Hello}\\
	{\small Hello}\\
	{\normalsize Hello}\\
	{\large Hello}\\
	{\Large Hello}\\
	{\LARGE Hello}\\
	{\huge Hello}\\
	{\Huge Hello}\\
	
	% 中文的字號
	\zihao{0} 你好\\
	\zihao{-0} 你好\\
	\zihao{1} 你好\\
	\zihao{-1} 你好\\
	\zihao{2} 你好\\
	\zihao{-2} 你好\\
	\zihao{3} 你好\\
	\zihao{-3} 你好\\
	\zihao{4} 你好\\
	\zihao{-4} 你好\\
	\zihao{5} 你好\\
	\zihao{-5} 你好\\
	\zihao{6} 你好\\
	\zihao{-6} 你好\\
	\zihao{7} 你好\\
	\zihao{8} 你好\\


\end{document}

3.輸出效果:

06.png

(五) 函數式編寫文檔

1.說明:

在latex文檔裏,咱們不可能滿篇文章的設置字體,咱們能夠用:

\newcommand{cmd}{def} 來定義一個新的命令,把字體的總體設置

放在def裏,減小代碼量,也利於更改。

2.源代碼:

% 導言區
\documentclass{article}
\usepackage{ctex}

% 模塊式編程
\newcommand{\myfont}{\textit{\textbf{\textsf{Fancy Family}}}}

% 正文區
\begin{document}
	% 調用本身的函數
	\myfont{Fancy Family}
\end{document}

3.輸出效果:

07.png

本系列是有關LaTeX的學習系列,共計19篇,本章節是第9篇。 前一篇:08 LaTeX學習系列之---Latex 的中文操做 後一篇:10LaTeX學習系列之---Latex的文檔結構 總目錄:19LaTeX學習系列之---LaTeX的總結

相關文章
相關標籤/搜索