防止 Latex 中“.csv”后出现斜体

防止 Latex 中“.csv”后出现斜体

这是我在 Latex 文件中写的内容:

Lists of generated file ".txt" were downloaded from the RCSB site, and the 'pdbesearch_3310382373986440321.csv' was  downloaded  from the PDBe site. %Fix the problem with the PDF after ".csv"

The ".txt" files contain a list of PDB IDs of all protein codes meeting the criteria. The 'pdbesearch_3310382373986440321.csv' contains PDB ID, Entity ID, Organism Scientific Name, Tax ID, Organism Synonyms, Rank (genus, subfamily, family, order, phylum, superkingdom), Genus, Experimente Data Available, Title, Entry Authors.

如何防止出现.csv以下屏幕截图中的斜体?我尝试使用\\\n其他修饰符,但无法防止这种情况:

问题

答案1

此代码存在几个问题。

首先,该错误是由于您在文件名中使用了下划线而导致的:下划线仅在 LaTeX 的数学模式下有效(无论出于何种原因……),因此 LaTeX 进入数学模式,从而导致文本呈斜体。

为了防止这种情况,您应该将所有文件名输入为逐字LaTeX 中的文本(例如使用\verb,或使用包提供的工具url)。

其次,花点时间考虑一下排版:您的引号不一致(您交替使用单引号和双引号),并且您使用的是直引号,而不是排版正确的“弯引号”。如果您的键盘无法轻松输入弯引号,您可以改用``…''

最后,您截图中的表格。阅读文档booktabs并实施其中表格布局的约定。

相关内容