Latex设置全文英文使用新罗马
时间: 2024-10-11 18:12:58 浏览: 44
LaTeX页码设置样例
在 LaTeX 中,如果你想让全文使用新罗马 (Times New Roman) 字体,可以使用 `times` 包并设置文本的默认字体。以下是步骤:
1. 首先,在你的 LaTeX 文档开头加入 `\usepackage{times}` 来加载 times 字体包。这会在整个文档中启用 Times New Roman 字体。
```latex
\documentclass{...} % 指定你的文档类
\usepackage{times} % 引入 times 字体包
\begin{document}
```
2. 然后,如果你需要英文部分保持统一的字体,可以在 `\begin{document}` 后添加以下命令来设定正文默认字体:
```latex
\renewcommand{\rmdefault}{ptm} % ptm 是 Times New Roman 的 TeX 名称
```
完整的例子:
```latex
\documentclass[a4paper]{article} % 选择文章格式
\usepackage[T1]{fontenc} % 允许使用 Times 字体
\usepackage{times} % 加载 times 字体
\renewcommand{\rmdefault}{ptm} % 设定默认为 Times New Roman
\begin{document}
This is some text in Times New Roman.
\end{document}
```
阅读全文