在 Latex 下增加/显示(变量)/(部分编号)的内容?

在 Latex 下增加/显示(变量)/(部分编号)的内容?

拥有与 shell 的 echo 等价的东西。例如在 .tex 文件中我们有:

 \def \var{2}

    The content of var is $var

如何以如下方式编辑 tex 文件:

var 的内容为 2

特别是,我们可以在 latex 下进行算术运算吗?说

var = var + x

答案1

% arara: pdflatex

\documentclass{article}
\newcommand*{\var}{2}
\newcommand*{\x}{5}

\begin{document}
    The content of \verb|\var| is \var

    $\var+\x = \the\numexpr\var+\x\relax$
\end{document}

在此处输入图片描述


编辑

在你对问题的评论中,你问了一些完全不同的事情。这可以这样做:

% arara: pdflatex

\documentclass{article}
\newcounter{mycounter}

\begin{document}
    \setcounter{mycounter}{42}
    \themycounter{} My Section Starting where I Want
    \stepcounter{mycounter}

    \themycounter{} And Here Comes the Next Section 
\end{document}

在此处输入图片描述

相关内容