-
Notifications
You must be signed in to change notification settings - Fork 39
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 #40 from disc0ver-csu/dev
fix: reset the afterskip of multi-level titles and index format of reference
- Loading branch information
Showing
6 changed files
with
355 additions
and
57 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -1,49 +1,55 @@ | ||
%!TEX root = ../../csuthesis_main.tex | ||
\chapter{引用文献标注} | ||
\chapter{公式与符号} | ||
|
||
文献标注和索引的处理一直是学术写作的一个麻烦事,特别是在word环境下。latex中我们只需要 | ||
编辑(或直接获取) BibTeX 格式索引文件然后在正文中使用\cs{cite} \cs{citet}等指令 | ||
进行引用标注就可以。下面介绍在文章中引用指令的具体使用方法。 | ||
中南大学由原湖南医科大学、长沙铁道学院与中南工业大学于2000年4月合并组建而成。原中南工业大学的前身为创建于1952年的中南矿冶学院,原长沙铁道学院的前身为创建于1953年的中南土木建筑学院,两校的主体学科最早溯源于1903年创办的湖南高等实业学堂的矿科和路科。原湖南医科大学的前身为1914年创建的湘雅医学专门学校,是我国创办最早的西医高等学校之一。中南大学秉承百年办学积淀,顺应中国高等教育体制改革大势,弘扬以“知行合一、经世致用”为核心的大学精神,力行“向善、求真、唯美、有容”的校风,坚持自身办学特色,服务国家和社会重大需求,团结奋进,改革创新,追求卓越,综合实力和整体水平大幅提升。 | ||
|
||
\LaTeX 的公式环境中符号样式符合 \TeX 默认的美国数学学会(AMS)的符号使用习惯,中文论文写作推荐遵循 GB/T 3102.11——1993《物理科学和技术中的数学符号》标准。这里我们给出一些 \LaTeX 中常用的符号表示。 | ||
|
||
|
||
参考文献符合国标 GB/T 7714 的要求,模板使用 \BibLaTeX 配合 \pkg{biblatex-gbt7714-2015} 样式包, | ||
\footnote{\url{https://www.ctan.org/pkg/biblatex-gb7714-2015}} | ||
控制参考文献的输出样式,由于该样式包 2016年后加入CTAN,如果你本地的TeX环境较旧, | ||
建议参考\url{https://github.com/disc0ver-csu/csu-thesis} 环境配置部分安装较新的TeX环境。 | ||
\section{\LaTeX 数学公式模式} | ||
|
||
\section{顺序编码} | ||
\LaTeX 提供了两种数学公示的写作模式:内联模式和独显模式: | ||
|
||
根据学校要求,参考文献标注用中括号上标形式进行标注。使用方式与效果如下表所展示 | ||
\begin{itemize} | ||
\item \textbf{内联模式}(inline mode),又称为行内模式,随文模式,将公式显示为段落的一部分。 | ||
\item \textbf{独显模式}(display mode),又称为行间模式,将公式用独立行展示出来,不再作为段落的一部分。 | ||
\end{itemize} | ||
|
||
\begin{tabular}{l@{\quad$\Rightarrow$\quad}l} | ||
\verb|\cite{knuth1984texbook}| & \cite{knuth1984texbook} \\ | ||
\verb|\citet{knuth1984texbook}| & \citet{knuth1984texbook} \\ | ||
\verb|\citep{knuth1984texbook}| & \citep{knuth1984texbook} \\ | ||
% 暂不支持 | ||
% \verb|\cite[42]{knuth1984texbook}| & \cite[42]{knuth1984texbook} \\ | ||
\verb|\cite{knuth1984texbook,lamport1994latex}| & \cite{knuth1984texbook,lamport1994latex} \\ | ||
\end{tabular} | ||
\subsection{内联模式} | ||
|
||
\section{获取BibTeX格式索引} | ||
% TODO | ||
|
||
获取参考文献的 BibTeX 格式索引有两种方式 | ||
键入如下定义符之一在段落中来使用内联模式书写数学公式符号: | ||
|
||
\begin{itemize} | ||
\item 通过Google Scholare或者百度学术等学术文献搜索引擎获取,自行编辑 .bib 文件 | ||
\item 通过Zotero等学术文献整理软件,添加所有的引用文献至库中,导出对应的 .bib 文件 | ||
\item \verb|\(...\)| | ||
\item \verb|$...$| | ||
\item \verb|\begin{math}...\end{math}| | ||
\end{itemize} | ||
|
||
编译带参考文献的文章时,我们需要两次编译过程。我们提供了对应的自动化脚本,以及配合vscode latex插件的任务流程, | ||
帮助模板使用者进行编译。 | ||
\subsection{独显模式} | ||
|
||
\section{参考文献插入示例} | ||
使用如下方式以独显模式表示数学公式: | ||
|
||
LaTeX\cite{lamport1994latex}插入参考文献最方便的方式是使用bibliography\cite{pritchard1969statistical},大多数出版商的论文页面\cite{lamport1994latex,pritchard1969statistical}都会有导出bib格式参考文献的链接,把每个文献的bib放入``csuthesis\_main.bib'',然后用bibkey即可插入参考文献。 | ||
\begin{itemize} | ||
\item \verb|\[...\]| | ||
\item \verb|\begin{displaymath}...\end{displaymath}| | ||
\item \verb|\begin{equation}...\end{equation}| | ||
\end{itemize} | ||
|
||
中南大学由原湖南医科大学、长沙铁道学院与中南工业大学于2000年4月合并组建而成。原中南工业大学的前身为创建于1952年的中南矿冶学院,原长沙铁道学院的前身为创建于1953年的中南土木建筑学院,两校的主体学科最早溯源于1903年创办的湖南高等实业学堂的矿科和路科。原湖南医科大学的前身为1914年创建的湘雅医学专门学校,是我国创办最早的西医高等学校之一。中南大学秉承百年办学积淀,顺应中国高等教育体制改革大势,弘扬以“知行合一、经世致用”为核心的大学精神,力行“向善、求真、唯美、有容”的校风,坚持自身办学特色,服务国家和社会重大需求,团结奋进,改革创新,追求卓越,综合实力和整体水平大幅提升。 | ||
\textbf{公式插入示例如公式(\ref{E.example})所示。} | ||
|
||
\newpage | ||
\begin{equation} | ||
\gamma_{x}= | ||
\left\{ | ||
\begin{array}{lr} | ||
0, & {\rm if}~~\;|x| \leq \delta \\ | ||
x, & {\rm otherwise} | ||
\end{array} | ||
\right. | ||
\label{E.example} | ||
\end{equation} | ||
|
||
|
||
\newpage | ||
|
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 |
---|---|---|
@@ -1 +1,43 @@ | ||
%!TEX root = ../../csuthesis_main.tex | ||
|
||
\chapter{引用文献标注} | ||
|
||
文献标注和索引的处理一直是学术写作中一个繁琐步骤,特别是在word环境下。而在\LaTeX 中我们只需要编辑(或直接获取) \BibLaTeX 格式索引文件然后在正文中使用\cs{cite} \cs{citet}等指令进行引用标注就可以。注意,引文参考文献的每条都应该在正文中标注出来\cite{knuth1984texbook,__2011,__2014,__2015,__2016,__2017,_lpr_2019,_lpr_2020,_lpr_2020-1,_lpr_2020-2,_lpr_2021,balakrishnan_corfu_2012,balakrishnan_tango_2013,balakrishnan_virtual_2020,cidon_copysets_2013,csu__2020,ding_scalog_2020,hartman_zebra_1993,jia_boki_2021,kalia_design_2016,knuth1984texbook,lamport1994latex,lockerman_fuzzylog_2018,mehdi_i_2017,Pawlak1982Rough,pritchard1969statistical,wei_vcorfu_2017},下面介绍在文章中标注引用指令的具体使用方法。 | ||
|
||
参考文献格式应符合国标 GB/T 7714 的要求,模板使用 \BibLaTeX 配合 \pkg{biblatex-gbt7714-2015} 样式包,\footnote{\url{https://www.ctan.org/pkg/biblatex-gb7714-2015}}控制参考文献的输出样式,由于该样式包 2016年后加入CTAN,如果你本地的\TeX 环境较旧,建议参考\url{https://github.com/disc0ver-csu/csu-thesis} 环境配置部分安装较新的\TeX 环境。 | ||
|
||
\section{顺序编码} | ||
|
||
根据学校要求,参考文献标注用中括号上标形式进行标注。使用方式与效果如下表所展示 | ||
|
||
\begin{tabular}{l@{\quad$\Rightarrow$\quad}l} | ||
\verb|\cite{knuth1984texbook}| & \cite{knuth1984texbook} \\ | ||
\verb|\citet{knuth1984texbook}| & \citet{knuth1984texbook} \\ | ||
\verb|\citep{knuth1984texbook}| & \citep{knuth1984texbook} \\ | ||
% 暂不支持 | ||
% \verb|\cite[42]{knuth1984texbook}| & \cite[42]{knuth1984texbook} \\ | ||
\verb|\cite{knuth1984texbook,lamport1994latex}| & \cite{knuth1984texbook,lamport1994latex} \\ | ||
\end{tabular} | ||
|
||
\section{获取BibTeX格式索引} | ||
|
||
获取参考文献的 BibTeX 格式索引有两种方式: | ||
|
||
\begin{itemize} | ||
\item 通过Google Scholare或者百度学术等学术文献搜索引擎获取,自行编辑 .bib 文件 | ||
\item 通过Zotero等学术文献整理软件,添加所有的引用文献至库中,导出对应的 .bib 文件 | ||
\end{itemize} | ||
|
||
编译带参考文献的文章时,我们需要两次编译过程。我们提供了对应的自动化脚本,以及配合vscode latex插件的任务流程, | ||
帮助模板使用者进行编译。 | ||
|
||
\section{参考文献插入示例} | ||
|
||
LaTeX\cite{lamport1994latex}插入参考文献最方便的方式是使用bibliography\cite{pritchard1969statistical},大多数出版商的论文页面\cite{lamport1994latex,pritchard1969statistical}都会有导出bib格式参考文献的链接,把每个文献的bib放入``csuthesis\_main.bib'',然后用bibkey即可插入参考文献。 | ||
|
||
中南大学由原湖南医科大学、长沙铁道学院与中南工业大学于2000年4月合并组建而成。原中南工业大学的前身为创建于1952年的中南矿冶学院,原长沙铁道学院的前身为创建于1953年的中南土木建筑学院,两校的主体学科最早溯源于1903年创办的湖南高等实业学堂的矿科和路科。原湖南医科大学的前身为1914年创建的湘雅医学专门学校,是我国创办最早的西医高等学校之一。中南大学秉承百年办学积淀,顺应中国高等教育体制改革大势,弘扬以“知行合一、经世致用”为核心的大学精神,力行“向善、求真、唯美、有容”的校风,坚持自身办学特色,服务国家和社会重大需求,团结奋进,改革创新,追求卓越,综合实力和整体水平大幅提升。 | ||
|
||
|
||
\newpage | ||
|
||
|
Oops, something went wrong.