summaryrefslogtreecommitdiff
path: root/info/install-latex-guide-zh-cn
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2022-03-02 03:03:38 +0000
committerNorbert Preining <norbert@preining.info>2022-03-02 03:03:38 +0000
commit1769d3d8842ef66919943128931e647de9756adb (patch)
tree46df94f2204cba9384cccf5ab6ca8cbbcd49bcad /info/install-latex-guide-zh-cn
parent3e9a44ea155766214d8657ed79db2206592b6e8e (diff)
CTAN sync 202203020303
Diffstat (limited to 'info/install-latex-guide-zh-cn')
-rw-r--r--info/install-latex-guide-zh-cn/appendix/updateinfo.tex6
-rw-r--r--info/install-latex-guide-zh-cn/appendix/wsladdition.tex2
-rw-r--r--info/install-latex-guide-zh-cn/chapter/editor.tex57
-rw-r--r--info/install-latex-guide-zh-cn/install-latex-guide-zh-cn.pdfbin748161 -> 754326 bytes
4 files changed, 64 insertions, 1 deletions
diff --git a/info/install-latex-guide-zh-cn/appendix/updateinfo.tex b/info/install-latex-guide-zh-cn/appendix/updateinfo.tex
index 05808fb698..7956e412a7 100644
--- a/info/install-latex-guide-zh-cn/appendix/updateinfo.tex
+++ b/info/install-latex-guide-zh-cn/appendix/updateinfo.tex
@@ -2,6 +2,12 @@
\chapter{版本信息}
+\section*{v2022.3.1}
+
+\begin{enumerate}
+ \item 更改 \TeX works 的编译命令设置
+\end{enumerate}
+
\section*{v2021.12.1}
\begin{enumerate}
diff --git a/info/install-latex-guide-zh-cn/appendix/wsladdition.tex b/info/install-latex-guide-zh-cn/appendix/wsladdition.tex
index 348dd85978..23aa123f0d 100644
--- a/info/install-latex-guide-zh-cn/appendix/wsladdition.tex
+++ b/info/install-latex-guide-zh-cn/appendix/wsladdition.tex
@@ -76,7 +76,7 @@ WSL (本质上是 Ubuntu) 中安装字体比较麻烦.
"-interaction=nonstopmode",
"-halt-on-error",
"-file-line-error",
- "-pdfxe",
+ "-xelatex",
"%DOCFILE%"
]
},
diff --git a/info/install-latex-guide-zh-cn/chapter/editor.tex b/info/install-latex-guide-zh-cn/chapter/editor.tex
index 791b298233..b757602f5a 100644
--- a/info/install-latex-guide-zh-cn/chapter/editor.tex
+++ b/info/install-latex-guide-zh-cn/chapter/editor.tex
@@ -58,6 +58,63 @@ Windows 10 中字体列表见%
\TeX works支持从模板新建文档, 在 \menu{文件} 菜单中可见.
+\subsubsection{更改编译命令设置}
+
+\TeX works 默认提供了若干编译命令,
+具体见 \menu{编辑 > 首选项 > 排版}.
+实际上,
+用户可以根据自己的需要,
+添加、更改其中的设置.
+首先明确 \TeX works 中已有一些定义,
+见表~\ref{tab:editor} \footnote{参考 \href{https://github.com/TeXworks/texworks/wiki/AdvancedTypesettingTools}{Advanced Typesetting Tools}.}.
+接下来可以定义 \texttt{latexmkpdf},
+它调用 \texttt{latexmk} 并使用 \texttt{pdflatex} 等命令编译文档.
+在 \menu{排版} 上点击 \menu{+},
+输入名称 \textsf{latexmkpdf} 和程序 \texttt{latexmk},
+相关参数需要再次点击 \menu{+} 来予以添加,
+例如添加以下这些
+\begin{lstlisting}
+ -e
+ $pdflatex=q/pdflatex $synctexoption %O %S/
+ -pdf
+ $fullname
+\end{lstlisting}
+这里的 \texttt{\$synctexoption} 和 \texttt{\$fullname} 均是 \TeX works 预定义的内容,
+而其他的 \texttt{-e}, \texttt{\$pdflatex=...} 和 \texttt{-pdf} 需要用户自己阅读 \texttt{latexmk} 手册了解.
+然后选择 \textsf{运行后查看 pdf 文件},
+再点击 \menu{OK},
+即可发现已经添加成功.
+之后用户可以调用 \texttt{latexmkpdf} 来编译文档.
+当然,
+在 \menu{排版} 处还可以将 \texttt{latexmkpdf} 设置为默认.
+
+类似地,
+如果要定义 \texttt{latexmkxe},
+可以考虑以下参数
+\begin{lstlisting}
+ -e
+ $xelatex=q/xelatex $synctexoption %O %S/
+ -xelatex
+ $fullname
+\end{lstlisting}
+程序依然是 \texttt{latexmk}.
+
+\begin{table}
+ \centering
+ \caption{\TeX works 已有定义}\label{tab:variables}
+ \begin{tabular}{p{0.15\linewidth}p{0.75\linewidth}}
+ \toprule
+ Option & Description\\
+ \midrule
+ \$synctexoption & expands to ``-synctex=1'' if your tools support SyncTeX\\
+ \$fullname & expands to the full name of your root document (e.g. rootfile.tex)\\
+ \$basename & expands to the name (without extension) of your root document (e.g. rootfile)\\
+ \$suffix & expands to the extension of your root document (e.g. tex)\\
+ \$directory & expands to the absolute path to the directory containing your root document\\
+ \bottomrule
+ \end{tabular}
+\end{table}
+
\subsubsection{拼写检查}
默认情况, \TeX works没有搭载拼写检查字典, 需要用户自己配置.
diff --git a/info/install-latex-guide-zh-cn/install-latex-guide-zh-cn.pdf b/info/install-latex-guide-zh-cn/install-latex-guide-zh-cn.pdf
index bb9dee2b9e..5b56b135f4 100644
--- a/info/install-latex-guide-zh-cn/install-latex-guide-zh-cn.pdf
+++ b/info/install-latex-guide-zh-cn/install-latex-guide-zh-cn.pdf
Binary files differ