设置标志以使文本在 LaTeX 中可见

设置标志以使文本在 LaTeX 中可见

我正在写简历,有些信息在某些申请中是必须包含的,而在其他申请中则不是必需的。例如,在申请科学类工作时,我在学位期间学习的模块可能很重要,因此应该包括在内,但对于其他行业来说,它们无关紧要。

有没有办法在文档顶部设置一个标志LaTeX,并使用它来使文​​本在块中隐藏/取消隐藏以创建文档?

答案1

\newif您可以使用以下命令定义自己的开关:

\documentclass[a4paper,12pt]{article}

\newif\ifimportant

\importanttrue % or \importantfalse
\begin{document}

 some stuff which will always be shown

\ifimportant
 % only shown if \importanttrue is set
 this is some important text
\fi
\end{document}

使用此设置,将显示重要内容。当您想隐藏此部分时,您可以设置\importantfalse而不是\importanttrue

答案2

您还可以使用comment专门为此目的设计的包。

\usepackage{comment}
\begin{document}
\begin{comment}
something I might want to include, or maybe not
\end{comment}

然后你使用在你的序言中,有以下开关:

\includecomment{comment} %show comments
\excludecomment{comment} %do not show comments

相关内容