删除粗体字体并编辑字体样式

删除粗体字体并编辑字体样式

(1) 我在 LyX 中处于 section* 模式。我正在使用 (article) 类。除了字体之外,一切似乎都很好。全部都是粗体。我该如何撤消此操作?我不希望每次进入 section* 或 subsection* 时都默认使用粗体字体。

来源如下:

\begin{doublespace}

 \section*{1. Introduction. {\normalsize{Let $\left\{ x:0\le x<1\right\} $
 be the compact group of real numbers modulo 1. Any irrational element
 $\theta$ in this set has a continued fraction representation 
 \begin{eqnarray*}
 & \frac{1}{a_{1}+\frac{1}{a_{2}+\frac{1}{a_{3}+\frac{1}{\ddots}}}}
 \end{eqnarray*}

以下是 PDF 内容:在此处输入图片描述

(2) (article) 中的默认字体样式是否与 (article ams) 相同?如果不是,我如何在使用 (article) 时使用 ams 中的字体样式?我之所以问这个问题,是因为当我尝试将类转换为 ams 时,太多错误阻止我获取 PDF。因此我计划保留 article。

答案1

  • 不要在 ;的参数中包含太多内容\section,这里只有单词Introduction似乎属于分段标题。

  • 不要使用eqnarray——这是一个严重弃用的命令。

  • 考虑加载amsmath包并使用\cfrac(而不是\frac)来排版连分数。

  • 不要过度使用\left\right

  • 未从示例代码中进行修改,但可能也值得更改:\section*{1. Introduction}您几乎肯定会写成 ,而不是\section{Introduction}。无论如何,让 LaTeX 跟踪诸如章节编号之类的内容。

在此处输入图片描述

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\section*{1. Introduction}

Let $\{ x:0\le x<1\}$ be the compact group of real numbers modulo~1. Any irrational element $\theta$ in this set has a continued fraction representation 
\[
\cfrac{1}{a_{1}+\cfrac{1}{a_{2}+\cfrac{1}{a_{3}+\cfrac{1}{\ddots}}}}
\]
\end{document}

附录:如果将文档类从 切换articleamsart(但保持所有其他代码不变),您将获得以下外观:

在此处输入图片描述

主要区别在于:(i)节标题居中并以小型大写字母设置;(ii)节标题后的段落第一行缩进(量为\parindent)。

相关内容