MiKTeX 關鍵字清單在哪裡?

MiKTeX 關鍵字清單在哪裡?

我最近下載了Basic MiKTeX 2.9.4813..

我試圖在 MiKTeX 目錄中找到一個文件,其中包含 LaTeX 語言的所有通用關鍵字的列表,但找不到任何...

你可以幫幫我嗎?

答案1

在 TeX 系統中,總是可以定義新指令:

\def\somemacro\with#1\weird#2,#3\delimiters{#1, #2, #3}
\newcommand \somenewcommand[1] {some expansion using #1}
% ... the following with `xparse` and `expl3` as appropriate
\NewDocumentCommand \SomeCrazyCommand {m m o O{default} u{(} t! r][}{...}
% ... used as \SomeCrazyCommand{...}{...}[what?] this is arg 5(!]and 6[%end
\cs_new:Nn \you_can't_even_rely_on_the_hash:NnN {something~ with~ #1,~ #2~, and~ #3}

唯一最恆定的東西是指令:它由一個反斜線 ( \) 組成,引入一個符號或一串字母,即正規表示式\\(.|[A-z@]*\*?])。 (@通常在 LaTeX 內部巨集中用作字母。此外,許多 LaTeX 命令都有帶星號的變體。)

嘗試編譯這樣的清單會很困難,但是您可以查看 Emacs 的 AUCTeX 項目 - 在樣式檔案中存在針對特定套件的方便的命令清單。

相關內容