这涉及上一个问题。 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
一些提醒:
- 不要
~\\
在结束行时使用。 - 不要用“两个”
\\
来结束一个段落。 - 用来
\par
代替全部~\\
和~\\~\\
或留下一个空行。 - 如果要对整个段落使用斜体,最好
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}