📜  \%-Tex命令(1)

📅  最后修改于: 2023-12-03 15:13:14.211000             🧑  作者: Mango

"%tex-命令"介绍

TeX是一种流行的排版软件,被广泛应用于学术出版,包括科技文献、期刊、书籍等。在TeX中,使用百分号 "%" 可以表示注释符号,但也有一些特殊的格式化命令以 "%tex-" 开头。

%tex-命令列表

下面是一些常见的 %tex- 命令:

  • %tex- input: 插入另一个TeX文件
  • %tex- includegraphics: 插入图像文件
  • %tex- label : 为一个公式或图表添加标签
  • %tex- ref: 引用一个标签
  • %tex- cite: 引用一个参考文献
  • %tex- footnote: 添加脚注
  • %tex- eqref: 引用一个公式标签
  • %tex- mathbb: 插入黑体字符
%tex-命令示例
  • %tex- input:
% 插入子文件
\input{subfile.tex}
  • %tex- includegraphics:
% 插入图像
\usepackage{graphicx}
\includegraphics[width=0.5\textwidth]{image.png}
  • %tex- label & %tex- ref:
% 添加标签和引用
\begin{equation}
  E = mc^2 
  \label{eq:einstein}
\end{equation}

根据公式 \ref{eq:einstein} 计算能量。
  • %tex- cite:
% 引用参考文献
这个观点已经被证实 \cite{einstein1935can}.
  • %tex- footnote:
% 添加脚注 
这是一个脚注 \footnote{脚注文本可包含任何内容。}.
  • %tex- eqref:
% 引用公式标签
We can see from \eqref{eq:einstein} that mass and energy are equivalent. 
  • %tex- mathbb:
% 插入黑体字符
\usepackage{amssymb}
$\mathbb{R}$ 是实数的集合。
总结

以上是一些常用的 TeX %tex-命令及示例。您可以通过这些命令在TeX中轻松处理输入和格式化文档。