1 Commits
v3.02 ... v3.03

Author SHA1 Message Date
EthanDeng
ec862e0bf6 v3.03 2019-01-15 15:18:42 +08:00
7 changed files with 3372 additions and 1647 deletions

View File

@@ -5,11 +5,11 @@
%% This work may be distributed and/or modified freely
%% available at https://ddswhu.me/resource/
% %
%% Last Modification 2018-12-31
%% Last Modification 2018-01-08
%%%%%%%%%%%%%%%%%%%%%
% % !Mode:: "TeX:UTF-8"
\NeedsTeXFormat{LaTeX2e}
\ProvidesClass{elegantbook}[2018/12/31 v3.02 ElegantBook document class]
\ProvidesClass{elegantbook}[2018/01/08 v3.03 ElegantBook document class]
\RequirePackage{kvoptions}
\RequirePackage{etoolbox}
@@ -17,7 +17,7 @@
\newcommand{\ekv}[1]{\kvsetkeys{ELEGANT}{#1}}
% ----- Colors -----
\DeclareStringOption[green]{color}[green]
\DeclareStringOption[green]{color}
% ----- backward compatibility
\DeclareVoidOption{green}{\ekv{color = green}}
\DeclareVoidOption{cyan}{\ekv{color = cyan}}
@@ -116,7 +116,7 @@
\renewcommand{\listfigurename}{}
\renewcommand{\listtablename}{}
\renewcommand{\bibname}{}
\renewcommand{\appendixname}{\hspace{2em}}
\renewcommand{\appendixname}{}
\renewcommand{\indexname}{\hspace{2em}}
% more pretty font
@@ -170,6 +170,7 @@
\hypersetup{
breaklinks,
unicode,
linktoc=all,
bookmarksnumbered=true,
bookmarksopen=true,
pdfsubject=\@author \@title Book,
@@ -197,10 +198,12 @@
%%
\RequirePackage[center,pagestyles]{titlesec}
\renewcommand{\chaptername}{ \thechapter\;}
\RequirePackage{apptools}
\RequirePackage[toc,page]{appendix}
\renewcommand{\chaptername}{ \thechapter\;}
\titleformat{\chapter}[\style]{\bfseries}
{\filcenter\LARGE\enspace\bfseries{\color{main}\chaptername}\enspace}{1pt}{\bfseries\color{main}\LARGE\filcenter}[\filcenter\base]
{\filcenter\LARGE\enspace\bfseries{\color{main}\IfAppendix{\appendixname}{\chaptername}\enspace}}{1pt}{\bfseries\color{main}\LARGE\filcenter}[\filcenter\base]
\titleformat{\section}[hang]{\bfseries}
@@ -352,18 +355,15 @@
{\Huge \bfseries{\color{main} \the\zhtitle } \the\zhend}\\
\rule{0.8\textwidth}{2pt}
\end{center}
\vskip3ex
\begin{figure}[htp]
\centering
\@logo
\end{figure}
\vfill
\vskip5ex
\centerline{\@logo}
\begin{center}
\begin{minipage}{0.65\textwidth}
\indent\centering\color{bule}\@myquote
\end{minipage}
\end{center}
\vfill
\vspace{2cm}
\begin{flushright}
\color{second}
\rule{0.45\textwidth}{1pt}\\

File diff suppressed because one or more lines are too long

BIN
figure/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

File diff suppressed because one or more lines are too long

Binary file not shown.

Before

Width:  |  Height:  |  Size: 353 KiB

After

Width:  |  Height:  |  Size: 20 KiB

BIN
guide.pdf

Binary file not shown.

View File

@@ -7,9 +7,9 @@
\zhend{模板}
\entitle{Elegant\LaTeX{} Book}
\enend{Template}
\version{3.02}
\version{3.03}
\myquote{Victory won\rq t come to us unless we go to it.}
\logo{logo.png}
\logo{ElegantLaTeX_green.pdf}
\cover{cover.pdf}
%green color
@@ -29,8 +29,6 @@
\usepackage{lipsum}
\usepackage{texnames}
\begin{document}
\maketitle
\tableofcontents
@@ -223,6 +221,19 @@ Lebesgue 积分有几种不同的定义方式。我们将采用逐步定义非
\bibliographystyle{aer}
\bibliography{reference}
\addcontentsline{toc}{chapter}{参考文献}
\appendix
\chapter{线性代数}
\section{矩阵的分块}
\begin{equation}
\begin{vmatrix}
A_1 & 0\\
C & A_2
\end{vmatrix}
=|A_1|\times |A_2|
\end{equation}
由矩阵 $A$ 的若干行、若干列的交叉位置元素按照原来顺序排成的矩阵称为 $A$ 的一个\textbf{子矩阵}
\end{document}