Changing Fonts in LaTeX

source : http://timmurphy.org/2009/07/28/changing-fonts-in-latex/

Posted: 28th July 2009 by Tim in LaTeX

Tags: arialcourierdocumentfontfontsLaTeXlayoutpalatinotimestimes new roman

4

The default font used in LaTeX is a little bland. Most of us would like to use Times New Roman, Arial, Helvetica or something similar. This is quite a simple thing to do. All of the fonts are stored in packages and simply including that package (\usepackage{package}) will change the font.

Some of the fonts which are available are:

  • Antiqua (antiqua package)
  • Arial (uarial package)
  • Courier (courier package
  • Helvetica (helvet package)
  • Luximono (luximono package)
  • Palatino (palatino package)
  • Times New Roman (times package)

For example, to use Times New Roman, Add the following to the top of the document:

\usepackage{times}

There are many, many more fonts out there. A quick google search should be able to tell you which package to use.

时间: 2024-10-23 20:24:22

Changing Fonts in LaTeX的相关文章

listview control messages

CTreeCtrl是在OnNMCustomdraw中自绘的,不要设定其他属性 CListCtrl是在DrawItem中自绘的,要设定属性LVS_OWNERDRAWFIXED|LVS_REPORT CButton是在DrawItem中自绘的,要设定属性BS_OWNERDRAW CMenu是在DrawItem中自绘的,要把每一项都设定属性MF_OWNERDRAW,用到递归方法 单选按钮是基于CButton在DrawItem中自绘的,要重写Create设定属性为 dwStyle &= ~(0xF);

Absolute positioning

The programmer specifies the position and the size of each widget in pixels. When you use absolute positioning, we have to understand the following limitations: The size and the position of a widget do not change if we resize a window Applications mi

latex2e

classs and packages 这一节介绍新的latex文档结构, 以及新的文件类型: classs and packages 类和包是什么? lext 2.09和latex2e的主要差别就在与\begin{document}之前的命令. 在latex 2.09中, 文档有哦style, 比如article和book, 以及option, 比如, twoside和 epsfig. 这些都是通过\documentstyle命令来表征的. 但是存在着两种不同类型的文档style选项: 内建的

【转】LaTeX 符号命令大全

函数.符号及特殊字符 声调 语法 效果 语法 效果 语法 效果 \bar{x} \acute{\eta} \check{\alpha} \grave{\eta} \breve{a} \ddot{y} \dot{x} \hat{\alpha} \tilde{\iota} 函数 语法 效果 语法 效果 语法 效果 \sin\theta \cos\theta \tan\theta \arcsin\frac{L}{r} \arccos\frac{T}{r} \arctan\frac{L}{T} \sin

用Latex制作自己的简历

Latex的字真是漂亮(在阅读GCC Manual时一直好奇到底是怎么生成这么漂亮的字,当接触了Latex之后,我想答案已经揭晓了),逐步了解Latex可以做很多事,平时用它编辑文档外(生成的文档真的很美观),还写写自己的工作经验和遇到的问题,遂决定用Latex制作简历. 首先找到了moderncv模板.这里是地址: http://www.ctan.org/tex-archive/macros/latex/contrib/moderncv 当然也可以直接点击文字链接,效果是一样的.下面是一段简单

在Linux 系统 Latex安装 使用入门教程

来源: http://blog.chinaunix.net/u/25605/showart_2100398.html 入门介绍好文:TeX.LaTeX.TeXLive 小结 笔记详情:http://visayafan.com/others/o/latex-lyx.html#sec-14-3 一.安装TexLive+Latex+CJK: 打开终端,安装以下TexLive和常用的一些Latex宏包(可以根据自己的需要增改): sudo apt-get install texlive texlive-

用Latex写学术论文(一): IEEE模板和\documentclass

1.可以在博客园中使用latex代码输出公式,以后再以不用复制图片粘贴啦: http://www.cnblogs.com/cmt/p/3279312.html 例如可产生公式:  $  x(k + 1)=\Phi(k) x(k)+\Gamma(k) w(k)  $ 2.IEEE模板:http://www.ieee.org/publications_standards/publications/authors/author_templates.html 或者也可以去Latex官方资源站下载:htt

LaTeX插入图片方法 Inserting Images

Inserting Images Images are essential elements in most of the scientific documents. LATEX provides several options to handle images and make them look exactly what you need. In this article is explained how to include images in the most common format

修改LaTeX beamer演示文稿字体

在用LaTeX制作演示文稿的时候,改变字体单单使用 \documentclass{beamer} \usepackage{fontspec} \setmainfont{Ubuntu} 是不够的.这里以将字体改成Ubuntu字体为例,之前还须加入两行代码如下: \documentclass{beamer} \usefonttheme{professionalfonts} % using non standard fonts for beamer \usefonttheme{serif} % def