寻求有关如何在 MiKTeX 2.9 中撰写科学(数学)文章的指南

寻求有关如何在 MiKTeX 2.9 中撰写科学(数学)文章的指南

我已经安装了 MiKTeX 2.9 并打开了 TeXworks,但我几乎不知道如果我想写一篇科学(数学)文章,该如何开始以及输入什么。

你可以想象一下这种情况,就好像你只知道高中代数和一个学期的微积分,然后有人给你一本关于黎曼 zeta 函数的研究生水平的书。

当然,你可以通过某种方式熟悉书中的一些概念,但仅靠了解那些提到的基础知识来彻底理解几乎是不可能的。

我面临着类似的困难,因为我从未写过科学(数学)文章,我想知道如何在 MiKTeX 2.9 中做到这一点。

您能在答案中给出一些关于如何撰写此类文章的一般指导吗?

此外,您可以假设图片(图像)不会成为文章的一部分,如果这可以简化帮助我的任务。

谢谢。

答案1

在 Latex 编辑器(在本例中为 TeXworks)中,复制并粘贴以下内容代码

\documentclass{article}
\title{A Small \LaTeX{} Article Template\thanks{To your mother}}
\author{Your Name}
\date{\today}
%
\begin{document}

\maketitle


\begin{abstract}
    Short introduction to subject of the paper \ldots 
\end{abstract}

\section{Introduction}
Make it possible for all to write documents with \LaTeX{}!

\paragraph{Outline}
First we start with a little example of the article class, which is an 
important documentclass. But there would be other documentclasses like 
book \ref{book}, report \ref{report} and letter \ref{letter} which are 
described in Section \ref{documentclasses}. Finally, Section 
\ref{conclusions} gives the conclusions.
%
\section{Document classes} \label{documentclasses}

\begin{itemize}
    \item article
    \item book 
    \item report 
    \item letter 
\end{itemize}


\begin{enumerate}
    \item article
    \item book 
    \item report 
    \item letter 
\end{enumerate}

\begin{description}
    \item[article\label{article}]{Article is \ldots}
    \item[book\label{book}]{The book class \ldots}
    \item[report\label{report}]{Report gives you \ldots}
    \item[letter\label{letter}]{If you want to write a letter.}
\end{description}


\section{Conclusions}\label{conclusions}
There is no longer \LaTeX{} example which was written by \cite{doe}.


\begin{thebibliography}{9}
    \bibitem[Doe]{doe} \emph{First and last \LaTeX{} example.},
    John Doe 50 B.C. 
\end{thebibliography}

\end{document}

现在编译您的文件(从运行或构建和查看图标),您应该得到如下输出:

在此处输入图片描述 在此处输入图片描述

这基本上是不言自明的。从这里开始,您可以通过阅读和搜索您到底想做什么来扩展您的知识并添加/修改。

相关内容