个性化阅读
专注于IT技术分析

Latex字体大小和样式用法介绍

本文概述

Latex字体大小

Latex字体大小和纸尺寸

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

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

Latex字体大小默认值为10pt。

纸张类型及其尺寸如下:

  • 信纸(11 x 8.5英寸)
  • 法律纸(14 x 8.5英寸)
  • a5纸(5.8 x 8.3英寸)
  • a4纸(8.3 x 11.7英寸)
  • 执行纸(10.5 x 7.25英寸)
  • b5纸(25 x 17.6厘米)

Latex尺寸

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

Latex字体大小和样式

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

\documentclass[a4paper]{letter}
\begin{document}
\begin{center}
 \begin{huge}
 \textbf{The \LaTeX\ Technical Institute}\\
\end{huge}
\begin{LARGE}
\textsc{\\Certification} 
\end{LARGE}  

\end{center}
\noindent This to certify that Mr. R.P Sharma has undergone a course in this institute and is qualified to be Technical Expert.

\begin{flushright}
\textsf{The Director}\\
The \LaTeX\ Technical Institute
\end{flushright} %used for aligning to the right

\end{document}

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

Latex字体大小和样式

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

Latex字体样式

除了Latex字体大小,Latex还支持丰富的样式,Latex字体样式分为家族, 系列和形状。输出中的字体由这三个特征组成。

样式表如下:

样式命令
Roman\textrm{roman}
Typewriter\texttt{typewriter}
Sans serif\ textsf {无衬线}

该系列的表格如下:

样式命令
boldface \textbf{boldface}
medium \textmd{medium}

形状表如下:

样式命令
italic\textit{italic}
slanted\textsl{slanted}
upright\textup{upright}
小盖\textsc{small cap]

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

\documentclass{article}
\begin{document}
\textit{\textbf{ the topic discussed is Latex.}}
\textrm{\textsl{ it contains the process and characteristics}}
\end{document}

此代码的输出将是:

Latex字体大小和样式

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

\documentclass{article}
\begin{document}
\textit{\textbf{ the topic discussed is Latex.}\newline}
\textrm{\textsl{ it contains the process and characteristics}}

\end{document}

输出:

Latex字体大小和样式

Latex替代了你的计算机上不可用的字体样式的近似值。

还有另一个称为\ emph的命令, 用于样式目的。它使用系列系列和当前字体。

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

示例如下所示:

\documentclass[12pt]{article}
\begin{document}

\textit{ a figure with six sides is called \emph{hexagon} and with five sides is called \emph{pentagon}.}
\end{document}

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

Latex字体大小和样式

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

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

\documentclass[16pt]{article}
\begin{document}

\textbf{ a figure with six sides is called \emph{hexagon} and with five sides is called \emph{pentagon}.}
\end{document}

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

Latex字体大小和样式

文件资料

总览

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

\documentclass[a5paper, 14pt]{article}
\begin{document}
The text you type is written here.
\end{document}

在Texmaker中写入此文档后, 你必须将此文件保存在任何特定文档中。单击菜单栏上的“快速构建”按钮, 如下所示:

Latex字体大小和样式

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

Latex字体大小和样式

注意:如果不保存文件或文档, 则无法编译代码。因此, 请确保在编译之前保存文档。

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

  • flushright和flushleft:这些命令写为\ begin {flushright}或\ begin {flushleft}。这些用于使文本在文档的左右对齐。
  • \ noindent:如果要在不缩进的情况下开始任何段落或在不中断的情况下继续该段落, 则使用此命令。

故障排除

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

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

Latex字体大小和样式

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

其他字体样式

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

  • 如果你希望文档的大小不同, 则可以使用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 \LaTeX}{\fontsize{5}{6}\selectfont TeX!}
{\Huge \LaTeX}{\tiny TeX!}

\end{document}

输出如下所示:

Latex字体大小和样式

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

字体家族

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

字体家族完整形式
cmm计算机现代斜体
cmsy计算机现代符号
cmex计算机现代扩展
cmr现代计算机罗马
cmss现代计算机
cmtt现代计算机打字机
ptmAdobe Times
phvAdobe Helvetica
pcrAdobe快递

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

  • sb-半粗体
  • ub-超粗体
  • b-加粗
  • eb-特粗体
  • ul-超轻
  • el-超轻
  • l小
  • sl-超小
  • m-中(正常)
标准完整形式百分比百分比
uc超浓缩50%
ec超浓缩62.5%
cCondensed75%
sc半冷凝87.5%
xExpanded125%
ex额外扩展150%
ux超扩展200%
mMedium100%
sx半展开112.5%

以上就是Latex字体大小和Latex字体样式的全部内容,希望可以帮到你,如有问题,请在下方评论。


赞(0)
未经允许不得转载:srcmini » Latex字体大小和样式用法介绍

相关推荐

评论 抢沙发

评论前必须登录!