有没有办法根据条件改变多行?

有没有办法根据条件改变多行?

我正在写简历,有两个版本——一个更适合我的生物学/医学预科经验,另一个更侧重于我的计算方面。现在,每当我更新简历时,我都必须注释/取消注释两者之间不同的每个部分。我很好奇是否有办法在文档开头设置变量/条件(例如 mode = Bio 或 Bio = true),然后根据该条件呈现其他每行。我目前正在使用 Overleaf,并尝试了以下方法:

\def\bio{T}
      \ifx\bio\T
        bio stuff here
      \else
        cs stuff here

但我明白这一点:

    l.125       \if\bio\T
                     
The control sequence at the end of the top line
of your error message was never \def'ed. If you have
misspelled it (e.g., `\hobx'), type `I' and the correct
spelling (e.g., `I\hbox'). Otherwise just continue,
and I'll forget about whatever was undefined.

有什么帮助/建议吗?谢谢!

相关内容