新建一个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

相关文章:

  • 2022-02-26
  • 2022-12-23
  • 2021-04-15
  • 2021-10-22
  • 2022-02-15
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-12-19
  • 2021-06-21
  • 2021-08-01
  • 2022-12-23
  • 2022-01-24
  • 2022-01-16
  • 2021-12-31
相关资源
相似解决方案