Latex itemize:文本被截断
Latex itemize: text gets cut off
我想在我的 markdown 文档中制作一个列表。
我正在使用乳胶。
我写了这个:
\begin{itemize}
\item Seniors are more often killed in daytime during the working week (72% versus 58% among all age groups).
\item There are proportionately more fatalities on urban roads (53% versus 38%) and consequently fewer on rural roads and motorways.
\item They are relatively more often killed at intersections (15% versus 10%) and less often (but still frequently) on road stretches (74% versus 81%).
\item Fatalities among senior car drivers were less often involved in a single crash, i.e. a crash in which only one vehicle and no pedestrians are involved (35% versus 44%).
\end{itemize}
但是文本在页面末尾被截断了。
有办法解决这个问题吗?
提前致谢,
问候,
芙蕾雅
试试这个:
\begin{itemize}
\item Seniors are more often killed in daytime during the working week (72\% versus 58\% among all age groups).
\item There are proportionately more fatalities on urban roads (53\% versus 38\%) and consequently fewer on rural roads and motorways.
\item They are relatively more often killed at intersections (15\% versus 10\%) and less often (but still frequently) on road stretches (74\% versus 81\%).
\item Fatalities among senior car drivers were less often involved in a single crash, i.e. a crash in which only one vehicle and no pedestrians are involved (35\% versus 44\%).
\end{itemize}
文本没有被截断,而是被百分号注释掉了。参见:https://texblog.org/2007/12/31/commenting-in-latex/.
为了将来,我建议您使用一个文本编辑器,它可能会直观地向您指出这一点(以绿色突出显示)。我个人用的是LaTeX语言扩展的vscode,不过我觉得TexShop也比较常用
此外,对于您遇到的任何其他与 TeX 相关的问题,我建议您转到 https://tex.stackexchange.com/,它与 Whosebug 属于同一系列网站,是专门用于解答 TeX 问题的地方!
我想在我的 markdown 文档中制作一个列表。 我正在使用乳胶。
我写了这个:
\begin{itemize}
\item Seniors are more often killed in daytime during the working week (72% versus 58% among all age groups).
\item There are proportionately more fatalities on urban roads (53% versus 38%) and consequently fewer on rural roads and motorways.
\item They are relatively more often killed at intersections (15% versus 10%) and less often (but still frequently) on road stretches (74% versus 81%).
\item Fatalities among senior car drivers were less often involved in a single crash, i.e. a crash in which only one vehicle and no pedestrians are involved (35% versus 44%).
\end{itemize}
但是文本在页面末尾被截断了。
有办法解决这个问题吗?
提前致谢, 问候, 芙蕾雅
试试这个:
\begin{itemize}
\item Seniors are more often killed in daytime during the working week (72\% versus 58\% among all age groups).
\item There are proportionately more fatalities on urban roads (53\% versus 38\%) and consequently fewer on rural roads and motorways.
\item They are relatively more often killed at intersections (15\% versus 10\%) and less often (but still frequently) on road stretches (74\% versus 81\%).
\item Fatalities among senior car drivers were less often involved in a single crash, i.e. a crash in which only one vehicle and no pedestrians are involved (35\% versus 44\%).
\end{itemize}
文本没有被截断,而是被百分号注释掉了。参见:https://texblog.org/2007/12/31/commenting-in-latex/.
为了将来,我建议您使用一个文本编辑器,它可能会直观地向您指出这一点(以绿色突出显示)。我个人用的是LaTeX语言扩展的vscode,不过我觉得TexShop也比较常用
此外,对于您遇到的任何其他与 TeX 相关的问题,我建议您转到 https://tex.stackexchange.com/,它与 Whosebug 属于同一系列网站,是专门用于解答 TeX 问题的地方!