```tex \documentclass{beamer} \begin{document} \begin{frame}[fragile] \frametitle{MWE} \begin{verbatim} int main (void) { std::vector is_prime (100, true); for (int i = 2; i < 100; i++) if (is_prime[i]) { std::cout << i << “ “; for (int j = i; j < 100; is_prime [j] = false, j+=i); } return 0; } \end{verbatim} \end{frame} \end{document} ``` 以上是本次提问的代码 下图是在texstudio上面编译的结果。 ![](https://pics.latexstudio.net/data/images/202003/9a314f0c78fef0e.png) 下图是在overleaf上编译的结果。 ![](https://pics.latexstudio.net/data/images/202003/747263583d3e93e.png)

3 回答3

0
复现条件:`xelatex` 编译 两个选择: - 使用 `pdflatex` 编译 - 使用 `xelatex` 编译,将缩进 `tab` 转换为空格
  • 非常感谢! – jdldxk 2020-03-06 13:09 回复
  • 感谢。 – jdldxk 2020-03-06 10:11 回复
1
tab 造成的
  • 谢谢。 – jdldxk 2020-03-06 10:11 回复
0
不要用 `tab` 进行缩进,用空格进行缩进。

你的回答

请登录后回答

你的回答将会帮助更多人,请务必认真回答问题。