如何在颜色命令中添加换行符

如何在颜色命令中添加换行符

我正在写这个脚本:

\begin{chronology}[5]{1993}{2016}{\textwidth} [\textwidth] 
\event{\decimaldate{25}{3}{2011}}{\textcolor{red} {Line1 \\Line2}}
\end{chronology}

但是,\\没有任何效果。如何换行?

编辑: 以下是完整脚本:

\documentclass[a4paper,14pt]{article}
\usepackage{chronology} %for timeline
\begin{document}

\begin{chronology}[5]{1993}{2016}{\textwidth} [\textwidth] 
\event{\decimaldate{25}{3}{2011}}{\textcolor{red} {Line1 \\ Line2}}
\end{chronology}

\end{document}

答案1

这与文本颜色无关,但与\eventfrom 有关\chronology。作为一种快速破解方法,只需将文本放在 内即可parbox

\documentclass[a4paper,14pt]{article}
\usepackage{chronology} %for timeline
\begin{document}

\begin{chronology}[5]{1993}{2016}{\textwidth} [\textwidth] 
\event{\decimaldate{25}{3}{2011}}{\textcolor{red}{%
        \parbox[c]{3cm}{Line1 \\ Line2}
}}
\end{chronology}

\end{document}

在此处输入图片描述

相关内容