为了账号安全,请及时绑定邮箱和手机立即绑定

无涯教程 - Latex 字体(Fonts)

标签:
Html5

Latex字体

我们通常在方括号[]中定义纸张大小和字体大小。

可以使用 [10pt] 来描述点的大小。其他字体大小为8pt,9pt,10pt,11pt,12pt,14pt,17pt,20pt。

Latex的默认字体大小为 10pt 

纸张类型及其尺寸如下:

  • letterpaper(11 x 8.5英寸)

  • legalpaper(14 x 8.5英寸)

  • a5paper(5.8 x 8.3英寸)

  • a4paper(8.3 x 11.7英寸)

  • executivepaper(10.5 x 7.25英寸)

  • b5paper(25 x 17.6厘米)

Latex尺寸

Tex生成的默认字体大小或类型大小为10pt。有一些声明用于更改类型大小。所有类型大小以及命令的表如下所示:

https://img3.sycdn.imooc.com/61bbe86500019bef06360301.jpg

在上述顺序中,\tiny 最小,而\Huge 最大。为了理解,让我们考虑以下示例:

\documentclass[a4paper]{letter}
\begin{document}
    \begin{center}
        \begin{huge}
            \textbf{The \LaTeX\Technical Would}
        \end{huge}
        
        \begin{LARGE}
            \textsc{\\LearnFK} 
        \end{LARGE}  
        
    \end{center}
    \noindent learnfk is a tutorial network for programmers technology introduction, including PHP, Java, Latex, Linux and other related tutorials -- from google translate
    
    \begin{flushright}
        \textsf{The Director}\\
            Hello LearnFK Would
    \end{flushright} %右对齐

\end{document}

下图显示了此代码的输出:

https://img4.sycdn.imooc.com/61bbe8650001479623020944.jpg

同样,您可以根据要求更改字体和样式。

Latex风格

样式分为family,seriesshape。输出中的字体由这三个特征组成。

styles的表格如下:

样式命令
Roman\textrm {roman}
Typewriter\texttt {typewriter}
Scans serif\textsf {sans serif}

series的表格如下:

样式命令
黑体\textbf {boldface}
中体\textmd {medium}

shape的表格如下:

样式命令
斜体\textit {italic}
倾斜\textsl {slanted}
竖立\textup {upright}
小体大写\textsc {small cap}

下面给出了使用这三种类别的方式或过程:

\documentclass[12pt]{article}
\begin{document}
     %textbf:加粗,textit:斜体
    \textit{\textbf{ Welcome LearnFk Would.}}
    \\ %我要换行,嘎嘎

    \textrm{\textsl{  learnfk is a tutorial network for programmers technology introduction }}
\end{document}

此代码的输出将是:

https://img2.sycdn.imooc.com/61bbe86600014e5623080590.jpg

如果要在单独的行中显示以上文本,请使用\newline 命令,如下所示:

\documentclass[12pt]{article}
\begin{document}
     %textbf:加粗,textit:斜体
    \textit{\textbf{ Welcome LearnFk Would.}}\newline

    \textrm{\textsl{  learnfk is a tutorial network for programmers technology introduction }}\newline
\end{document}

输出:

https://img4.sycdn.imooc.com/61bbe8660001bb7222740538.jpg

还有另一个名为\emph 的命令,用于样式设置。它使用series和当前字体。

\emph 用于在普通(竖排)文本的中间产生斜体形状。如果当前形式为斜体,则将其切换为直立形状。

示例如下所示:

\documentclass[12pt]{article}
\begin{document}
    \textit{learnfk is a tutorial network for programmers technology including   \emph{hexagon} PHP, Java, Latex, Linux \emph{tutorials}.}
\end{document}

下图显示了以上代码的输出:

https://img1.sycdn.imooc.com/61bbe8660001db6523260400.jpg

您可以看到使用\emph 命令的单词与其他单词之间的区别。

在另一个示例中,我们使用粗体代替了上面的斜体,如下所示:

\documentclass[12pt]{article}
\begin{document}
    \textbf{learnfk is a tutorial network for programmers technology including   \emph{hexagon} PHP, Java, Latex, Linux \emph{tutorials}.}
\end{document}

上面的代码的输出如下图所示:

https://img3.sycdn.imooc.com/61bbe867000160c623240466.jpg

Latex文档

它包括开始和结束时使用的基本命令。它还包括编写文本的过程。在此模块中,我们使用了 OVERLEAF 编写代码。Latex的概述如下:

\documentclass[a5paper, 12pt]{article}
\begin{document}
   LearnFk is a Tutorial network for programmers technology introduction, including PHP, Java, Latex, Linux and other related tutorials
\end{document}

上述文档文件的输出将是:

https://img2.sycdn.imooc.com/61bbe8670001ef6522220492.jpg

下面给出了常用的其他命令,这些命令将在本项目中进一步实现。

  • flushright和flushleft   -  这些命令写为\begin {flushright} \begin {flushleft} 。这些用于使文本在文档的左右对齐。

  • \noindent                        -  如果要在没有 indent 的情况下开始任何段落或在不中断的情况下继续该段落,则使用此命令。

故障排除

在Latex中,如果文档文件中有错误,那么它将在编译后在底部以红色显示所有错误。错误将得到详细说明。

错误看起来将如下图所示:

https://img2.sycdn.imooc.com/61bbe8670001661510440210.jpg

之后,转到特定的行并删除错误。保存文件,然后可以再次编译。

其他字体样式

其他使用的字体样式和相应的代码如下:

  • 如果您希望文档的大小不同,则可以使用extsizes包。命令是\documentclass [10pt] {extarticle} \documentclass [14pt] {extreport} 

  • 您还可以使用其他样式来设置文本样式。代码如下:

\documentclass[9pt]{extarticle}
\begin{document}
    This text can be arranged in a unique way as given below:\\\\
    {\fontsize{50}{60}\selectfont LearnFK}
    {\fontsize{5}{6}\selectfont TeX!}
    {\Huge LearnFK}{\tiny TeX!!!}
\end{document}

输出如下所示:

https://img1.sycdn.imooc.com/61bbe8680001b8a922260478.jpg

\fontsize \selectfont 命令用于修改文本的大小。您可以根据要求设置尺寸。

字体家族

下面列出了常见的字体系列:

字体家族Full Form
cmmComputer Modern Italic
cmsyComputer Modern Symbols
cmexComputer Modern Extensions
cmrComputer Modern Roman
cmssComputer Modern Sans
cmttComputer Modern Typewriter
ptmAdobe Times
phvAdobe Helvetica
pcrAdobe Courier

下表列出了字体系列的粗细和粗细支持的标准:

sb  -  Semi Bold

ub  -  Ultra Bold

b     -  Bold

eb   -  Extra Bold

ul     -  Ultra Light

el     -  Extra Light

l       -  Light

sl     -  Semi Light

m     -  Medium(normal)

标准完整格式%百分比
ucUltra Condensed50%
ecExtra Condensed62.5%
cCondensed75%
scSemi Condensed87.5%
xExpanded125%
exExtra Expanded150%
uxUltra Expanded200%
mMedium100%
sxSemi Expanded112.5%




点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
PHP开发工程师
手记
粉丝
8
获赞与收藏
17

关注作者,订阅最新文章

阅读免费教程

  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消