Wednesday, April 20, 2011

latex 中添加自定义的 definition or theorem 重点 斜体输入 与字体大小+黑体

\documentclass[times, 10pt,twocolumn]{article}
....
\usepackage{amsmath,amsthm,amssymb} % 引入 AMS 數學環境g
....
\newtheorem{definition}{Definition}
\newtheorem{theorem}{Theorem}(for 公理)

\begin{document}
...
(如果只是definition,之用引入amssymb包)
\begin{definition}[Name of the Definition]
content of the definition
\end{definition}

首先要有支持的包。。如使用amssymb.
再用 \newtheorem{xxx}{xxx}来定义你自己的类型。
最后用begin{xxx}和\end{xxx} 来表示


{\em  xxx} 表示后面用重点输出
改变字体大小与粗体
{\large\bf xxxx}
要先有字体大小再粗体

No comments:

Post a Comment