使用 textit 时出现警告/错误

使用 textit 时出现警告/错误

这涉及上一个问题。 LaTeX 中 textit 的替代品

我正在使用 textit 使文本变为斜体。

\documentclass[11pt,table,a5paper]{article}
\begin{document}
\textit{\textbf{Some Text}~\\ 
 This gene encodes the pro-alpha1 chains of type III collagen.~\\ 
~\\  
SSS.~\\ 
~\\ 

ZZZZ in the ZZZ3A1 gene, which ZZZ type III pro-XXX, cause type IV SSS-Danlos   SSS, a rw rw to rw SSS in SSS rwr rw.}
\end{document}linecolor=goldenpoppy

我收到以下错误信息。

Runaway argument?
{\textbf {Some Text}~\\ This gene encodes the pro-alpha1 chains of ty\ETC.
! Paragraph ended before \text@command was complete.
<to be read again> 
                   \par 
l.9 ...os   SSS, a rw rw to rw SSS in SSS rwr rw.}

如何修复这个错误?

答案1

一些提醒:

  1. 不要~\\在结束行时使用。
  2. 不要用“两个”\\来结束一个段落。
  3. 用来\par代替全部~\\~\\~\\或留下一个空行。
  4. 如果要对整个段落使用斜体,最好itshape在组内使用(开关)→ {\itshape your text...}

话虽如此,这是可行的:

\documentclass[11pt,a5paper]{article}
\begin{document}
{\itshape \textbf{Some Text}

 This gene encodes the pro-alpha1 chains of type III collagen.\par
SSS.\par
ZZZZ in the ZZZ3A1 gene, which ZZZ type III pro-XXX, cause type IV SSS-Danlos
   SSS, a rw rw to rw SSS in SSS rwr rw.}
\end{document}

在此处输入图片描述

相关内容