LaTex標准article文件框架解析



新建一個LaTex-Article文件


生成的文件框架代碼

% ----------------------------------------------------------------
% Article Class (This is a LaTeX2e document)  ********************
% ----------------------------------------------------------------
\documentclass[12pt]{article}
\usepackage[english]{babel}
\usepackage{amsmath,amsthm}
\usepackage{amsfonts}
% THEOREMS -------------------------------------------------------
\newtheorem{thm}{Theorem}[section]
\newtheorem{cor}[thm]{Corollary}
\newtheorem{lem}[thm]{Lemma}
\newtheorem{prop}[thm]{Proposition}
\theoremstyle{definition}
\newtheorem{defn}[thm]{Definition}
\theoremstyle{remark}
\newtheorem{rem}[thm]{Remark}
\numberwithin{equation}{section}
% ----------------------------------------------------------------
\begin{document}

\title[]{}%
\author{}%
\address{}%
\thanks{}%
\date{}%
% ----------------------------------------------------------------
\begin{abstract}
  
\end{abstract}
\maketitle
% ----------------------------------------------------------------
\section{}



\end{document}
% ----------------------------------------------------------------
View Code


關於宏包

LATEX 的核心只提供基本的功能,系統以宏包(package)的形式提供 附加功能或增強原有功能。

所以要引用一些功能與樣式,大部分的情況下都需要確認是否已經導入相應宏包。

推薦網站:

  1. 常用的LaTex宏包
  2. 寫作排版常用宏包
  3. LaTeX的一些宏包及細節知識

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM