创建数学 PDF

创建数学 PDF

我实在是太困惑了……你们可以嘲笑我因技术无能而蹒跚前行。

好的。根据我问过之后收到的六条(相互矛盾的)建议,这个问题,我已将 WinEdt 和 TeXworks 下载到我的 Windows 计算机上。我已经安装了 Adob​​e Acrobat 来查看 PDF 文档。

我复制并粘贴了这样的内容(来自writelatex.com

\documentclass[a4paper]{article}

\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage[colorinlistoftodos]{todonotes}

\title{Your Paper}

\author{You}

\date{\today}

\begin{document}
\maketitle

\begin{abstract}
Your abstract.
\end{abstract}

\section{Introduction}

Your introduction goes here! Some examples of commonly used commands and features are listed below, to help you get started. If you have a question, please use the help menu (``?'') on the top bar to search for help or ask us a question.

\section{Some \LaTeX{} Examples}
\label{sec:examples}

\subsection{How to Leave Comments}

Comments can be added to the margins of the document using the \todo{Here's a comment in the margin!} todo command, as shown in the example on the right. You can also add inline comments:

\todo[inline, color=green!40]{This is an inline comment.}

\subsection{How to Include Figures}

First you have to upload the image file (JPEG, PNG or PDF) from your computer to writeLaTeX using the upload link the project menu. Then use the includegraphics command to include it in your document. Use the figure environment and the caption command to add a number and a caption to your figure. See the code for Figure in this section for an example.

\subsection{How to Make Tables}
Use the table and tabular commands for basic tables --- see Table~\ref{tab:widgets}, for example.

\begin{table}
\centering
\begin{tabular}{l|r}
Item & Quantity \\\hline
Widgets & 42 \\
Gadgets & 13
\end{tabular}
\caption{\label{tab:widgets}An example table.}
\end{table}

\subsection{How to Write Mathematics}

\LaTeX{} is great at typesetting mathematics. Let $X_1, X_2, \ldots, X_n$ be a sequence of independent and identically distributed random variables with $\text{E}[X_i] = \mu$ and $\text{Var}[X_i] = \sigma^2 < \infty$, and let
$$S_n = \frac{X_1 + X_2 + \cdots + X_n}{n}
      = \frac{1}{n}\sum_{i}^{n} X_i$$
denote their mean. Then as $n$ approaches infinity, the random variables $\sqrt{n}(S_n - \mu)$ converge in distribution to a normal $\mathcal{N}(0, \sigma^2)$.

\subsection{How to Make Sections and Subsections}

Use section and subsection commands to organize your document. \LaTeX{} handles all the formatting and numbering automatically. Use ref and label commands for cross-references.

\subsection{How to Make Lists}

You can make lists with automatic numbering \dots

\begin{enumerate}
\item Like this,
\item and like this.
\end{enumerate}
\dots or bullet points \dots
\begin{itemize}
\item Like this,
\item and like this.
\end{itemize}
\dots or with words and descriptions \dots
\begin{description}
\item[Word] Definition
\item[Concept] Explanation
\item[Idea] Text
\end{description}

We hope you find write\LaTeX\ useful, and please let us know if you have any feedback using the help menu above.

\end{document}

进入我的 WinEdt 程序,它基本上就在那里。然后我将其复制并粘贴到我的 TeXworks 程序中,开始点击随机按钮,然后按下左上角的绿色按钮,令我惊讶的是,它打开了一个 PDF:在此处输入图片描述

但我无法保存它,所以我需要知道:

  1. 我是否可以正确地假设 WinEdt 除了让我输入内容之外基本上不做任何事情?
  2. 我的“设置”看起来还好吗?我正在考虑使用据称是“AMS 文章风格”,但事实上它在一个随机的空白网页上,而且“文章”拼写为“artcle”,这让我怀疑是有人编造的……这是实际上AMS 模板?
  3. 如何在 TeXworks 中转换并保存为 PDF?

编辑:在 WinEdt 中,我应该单击“TeXify”、“LaTeX”、“TeX”、“AMSTeX”还是其他?我有 MiKTeX,但我猜它应该叫 TeXworks...

答案1

不是。WinEdt 可以通过图标或菜单启动编译器,打开 pdf 查看器,还可以做很多其他事情。它拥有强大的语言,包含约 1000 个宏。几乎每个方面都可以定制。

WinEdt以下是.tex 文件开头的屏幕截图:

在此处输入图片描述

您会注意到,在“回收站”图标的右侧有一个 PDF/L 图标。单击它,您将启动pdfLaTeX编译器。单击图标旁边的小“向下三角形”可选择另一个编译器(LaTeX、及其变体)。但首先,pdfLaTeX 就足够了。和XeLaTeX类似的是 MiKTeX 实用程序,它们启动完整的编译周期,以解决交叉引用并排版您可能拥有的参考书目、索引或词汇表。LuaLaTeXpdfLaTeXify

Adobe Reader 右侧的图标可让您打开 pdfviewer。推荐用于 tex 的 pdfviewer 不是 Adob​​e Reader,但您SumatraPDF应该安装它。它允许您从源代码导航到生成的 .pdf 文件中的相应点,并通过快捷方式向后导航:如果光标位于 .tex 文件中的某个位置,快捷方式Maj+F8将带您到 .pdf 中的相应位置(“ direct search”)。相反,双击 .pdf 文件中的某个位置将带您到 .tex 文件的相应行(“ inverse search”)。

您应该查看菜单Execution Modes的子菜单Options

在此处输入图片描述在这里,您可以确定编辑器的行为,选择已安装的 pdfviewer(id SumatraPDF,它是 .tex 文件的默认查看器。特别是,您可以要求在编译器完成其工作后启动查看器。

另一个重要功能是,在Help菜单中,您可以访问:

  • WinEdt(丰富)帮助(F1)
  • LaTeX Doc(Shift+Ctrl+F1):您输入一个包的名称,它会打开其文档(如果它只包含一个文件)或让您在列表中选择(如果有多个文件)。
  • LaTeX 帮助电子书是关于 LaTeX 的一般帮助。
  • MiKTeX 或 TeX Live Help,根据您的 TeX 系统

我希望这能够有所帮助。

答案2

查看.tex文件所在的文件夹,您还会发现一份 PDF。:)

  1. 编辑器将 TeX 代码编译为 PDF,使输入代码更加舒适。

相关内容