-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from HoangVanPhu888/HoangVanPhu888-patch-1
HoangVanPhu888, Patch 1
- Loading branch information
Showing
3 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
Binary file added
BIN
+280 KB
Letters/For different languages/Article in Vietnamese, for Mathematics.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions
8
Letters/For different languages/Article in Vietnamese, for Mathematics.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"Author": "Hoàng Văn Phú", | ||
"Date": "2024-11-08", | ||
"Description": "English: This is the LaTeX \"article\" environment, made for Mathematics articles in Vietnamese\nTiếng Việt: Đây là môi trường \"article\" của LaTeX, được làm ra phục vụ các bài báo toán học bằng Tiếng Viêtn", | ||
"License": "LaTeX Project Public License (LPPL)", | ||
"Name": "Article in Vietnamese, for Mathematics", | ||
"Version": "1.0" | ||
} |
54 changes: 54 additions & 0 deletions
54
Letters/For different languages/Article in Vietnamese, for Mathematics.tex
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
\documentclass[10pt]{article} | ||
\usepackage[utf8]{vietnam} | ||
\usepackage[margin=.5in]{geometry} | ||
\usepackage{amsmath, amssymb, amsthm, gensymb, multicol, graphicx, ragged2e, nopageno, wrapfig, charter, tkz-euclide, rotating} | ||
\usepackage[colorlinks=true, urlcolor=blue, linkcolor=red]{hyperref} | ||
\usepackage[framemethod=1]{mdframed} | ||
\usetikzlibrary{math} | ||
\newcommand{\fcb}[1]{\fcolorbox{red}{yellow}{\textbf{\textcolor{blue}{#1}}}} % Viền đỏ, nền vàng, chữ xanh đậm | ||
\newcommand{\ctext}[1]{\huge{\textbf{#1}}} % Tiêu đề | ||
% Các tập sau đây thường được dùng, viết rút gọn | ||
\newcommand{\R}{\mathbb{R}} % Tập số thực | ||
\newcommand{\Rp}{\mathbb{R}_+} % Tập số thực dương | ||
\newcommand{\Z}{\mathbb{Z}} % Tập số nguyên | ||
\newcommand{\Zp}{\mathbb{Z}_+} % Tập số nguyên dương | ||
\newcommand{\N}{\mathbb{N}} % Tập số tự nhiên | ||
\newcommand{\Q}{\mathbb{Q}} % Tập số hữu tỉ | ||
\newcommand{\Qp}{\mathbb{Q}_+} % Tập số hữu tỉ dương | ||
\newcommand{\PR}{\mathbb{P}} % Tập số nguyên tố | ||
\newcommand{\opintvl}[2]{\left(#1; #2\right)} % Khoảng | ||
\newcommand{\clointvl}[2]{\left[#1; #2\right]} % Đoạn | ||
\newcommand{\lclointvl}[2]{\left[#1; #2\right)} % Khoảng nửa đóng (bên trái) | ||
\newcommand{\rclointvl}[2]{\left(#1; #2\right]} % Khoảng nửa đóng (bên phải) | ||
\newcommand{\power}[2]{\mathcal{P}\left(#1, #2\right)} % Phương tích của điểm đến đường tròn | ||
\newcommand{\fphi}[1]{\phi\left(#1\right)} % Hàm phi - Euler | ||
\newcommand{\ftau}[1]{\tau\left(#1\right)} % Hàm đếm ước | ||
\newcommand{\fsigma}[2]{\sigma_{#1}\left(#2\right)} % Hàm tổng lũy thừa ước | ||
\newcommand{\fpi}[1]{\pi\left(#1\right)} % Hàm đếm số nguyên tố | ||
%%%%%%%%%%%%%%%% Tiêu đề, tác giả và ngày tháng | ||
\title{\ctext{Tiêu đề ở đây}} % Tiêu đề | ||
\author{\ctext{Hoàng Văn Phú}} % Tác giả | ||
\date{\textbf{Ngày 8 tháng 11 năm 2024}} | ||
%%%%%%%%%%%%%%%% Bắt đầu văn bản | ||
\begin{document} | ||
\pagestyle{empty} % Không đánh dấu trang, có thể bỏ đi cả nopageno ở \usepackage và dòng này | ||
\RaggedRight | ||
\Large | ||
\fontfamily{bch}\selectfont | ||
\boldmath | ||
\theoremstyle{definition} | ||
\newmdtheoremenv[innerleftmargin = 4mm, innerrightmargin = 4mm, innertopmargin = 2mm, innerbottommargin = 4mm, linecolor=red, backgroundcolor=yellow, leftline=false, rightline=false]{theorem1dl}{Định lý} | ||
\newmdtheoremenv[innerleftmargin = 4mm, innerrightmargin = 4mm, innertopmargin =2mm, innerbottommargin = 4mm, linecolor=red, backgroundcolor=yellow!50, leftline=false, rightline=false]{theorem2bd}{Bổ đề} | ||
\newmdtheoremenv[innerleftmargin = 4mm, innerrightmargin = 4mm, innertopmargin = 2mm, innerbottommargin = 4mm, linecolor=red, backgroundcolor=yellow!75, leftline=false, rightline=false, linewidth=2pt]{theorem3nx}{Nhận xét} | ||
\maketitle | ||
|
||
\maketitle | ||
|
||
\begin{abstract} | ||
Nội dung tóm tắt nên được ghi ở đây | ||
\end{abstract} | ||
|
||
\section{Phân mục ở đây} | ||
Đây là 1 văn bản thử nghiệm | ||
|
||
\end{document} |