尋求如何在 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}

現在編譯您的文件(從運行或建置並查看圖標),您應該得到如下輸出:

在此輸入影像描述 在此輸入影像描述

這基本上是不言自明的。從這裡您可以透過閱讀和搜尋您到底想要做什麼來開始擴展您的知識添加/修改。

相關內容