更改 LyX 中 ToC 条目的文本颜色

更改 LyX 中 ToC 条目的文本颜色

我使用 LyX 插入了目录,方法是插入->列表/目录->目录,效果很好,但文本颜色是红色,我想要黑色。我使用书籍(KOMA-script)作为文档类。

谢谢!

好的,这是一个 .lyx 测试代码

#LyX 2.0 created this file. For more info see http://www.lyx.org/
\lyxformat 413
\begin_document
\begin_header
\textclass scrbook
\begin_preamble
\usepackage{mathpazo}

\usepackage{graphicx}
\usepackage{color,xcolor}
\usepackage{tikz, pgf, pgfplots}
\usetikzlibrary{arrows,backgrounds,plotmarks}
\pgfplotsset{width=7cm,compat=1.8}
\pgfplotsset{plot coordinates/math parser=false}

\newlength\figureheight  
\newlength\figurewidth  

\usepackage{icomma} 
\usepackage{fancyhdr} %activamos el paquete
\usepackage{endnotes} 
\usepackage{fancyvrb}
\date {}
\let\footnote=\endnote
\def\footnotetext{\endnotetext[\number\numexpr\value{endnote}+1]}
\let\footnotemark\endnotemark 
\pagestyle{fancy} %seleccionamos un estilo
 \lhead{ECUACIONES} %texto izquierda de la cabecera
 \rhead{\thepage }
\chead{TEORÍA Y EJERCICIOS} %texto centro de la cabecera
 \rfoot{RESOLUCIÓN ECUACIONES} %texto izquierda del pie
\rhead{\thepage } %número de página a la derecha
\renewcommand{\footrulewidth}{0.5pt} 
\renewcommand{\headrulewidth}{0.5pt}

% Referencias - Enlaces
\usepackage[hyphens]{url}
\usepackage[breaklinks,colorlinks=true,linkcolor=red,
citecolor=red, urlcolor=blue]{hyperref}

\usepackage{caption}
\captionsetup{font=small,format=plain,parskip=1pt,justification=centering}
\captionsetup[figure]{font=small,format=plain,parskip=1pt,justification=centering}
\renewcommand{\thefigure}{\arabic {figure}}

\usepackage[total={15cm,21cm},left=2cm,top=2cm]{geometry}
\parindent=0mm
\renewcommand{\baselinestretch }{1.2}

\usepackage[superscript]{cite} %las citas

\renewcommand\citeform[1]{\textcolor{blue}{#1}}  % Ponemos las citas en azul

\let\footnote=\endnote
\def\footnotetext{\endnotetext[\number\numexpr\value{endnote}+1]}
\let\footnotemark\endnotemark 

\renewcommand{\bibname}{Bibliografía}
\end_preamble
\use_default_options true
\begin_modules
theorems-ams
eqs-within-sections
figs-within-sections
fixltx2e
foottoend
customHeadersFooters
endnotes
hanging
initials
tabs-within-sections
\end_modules
\maintain_unincluded_children false
\language spanish
\language_package default
\inputencoding auto
\fontencoding global
\font_roman default
\font_sans default
\font_typewriter default
\font_default_family default
\use_non_tex_fonts false
\font_sc false
\font_osf false
\font_sf_scale 100
\font_tt_scale 100

\graphics default
\default_output_format default
\output_sync 0
\bibtex_command default
\index_command default
\paperfontsize default
\spacing onehalf
\use_hyperref false
\papersize a4paper
\use_geometry false
\use_amsmath 1
\use_esint 1
\use_mhchem 1
\use_mathdots 1
\cite_engine basic
\use_bibtopic false
\use_indices false
\paperorientation portrait
\suppress_date false
\use_refstyle 0
\index Index
\shortcut idx
\color #008000
\end_index
\leftmargin 3cm
\topmargin 2cm
\rightmargin 3cm
\bottommargin 2cm
\headheight 3cm
\headsep 3cm
\footskip 3cm
\secnumdepth 3
\tocdepth 3
\paragraph_separation indent
\paragraph_indentation default
\quotes_language english
\papercolumns 1
\papersides 1
\paperpagestyle default
\tracking_changes false
\output_changes false
\html_math_output 0
\html_css_as_file 0
\html_be_strict false
\end_header

\begin_body

\begin_layout Title
Testing
\end_layout

\begin_layout Subtitle
Testing 2
\end_layout

\begin_layout Author
Joy Division
\end_layout

\begin_layout Standard
\begin_inset CommandInset toc
LatexCommand tableofcontents

\end_inset


\end_layout

\begin_layout Chapter
Chapter 1
\end_layout

\begin_layout Section
Section 1
\end_layout

\begin_layout Standard
A testing section
\end_layout

\begin_layout Subsection
Subsection 1
\end_layout

\begin_layout Standard
A testing subsection
\end_layout

\begin_layout Chapter
Chapter 2
\end_layout

\begin_layout Section
Section 2
\end_layout

\begin_layout Standard
Another testing section
\end_layout

\begin_layout Subsection
Subsection 2
\end_layout

\begin_layout Standard
Another subsection
\end_layout

\end_body
\end_document

答案1

在您的序言中,您有以下内容:

\usepackage[breaklinks,colorlinks=true,linkcolor=red,
citecolor=red, urlcolor=blue]{hyperref}

这将激活该hyperref包,它会创建可点击的目录条目、交叉引用和类似内容的超链接。colorlinks=true这些链接被赋予颜色,正如您所指定的,linkcolor=red目录条目为红色。将颜色更改为black,或使用

\usepackage[breaklinks,hidelinks]{hyperref}

相反,hidelinks会导致所有链接都打印为黑色,就像周围的文本一样。

如果您已激活hyperref使用 LyX 界面激活,则需要在“文档 --> 设置 --> PDF 属性”中更改此项,其中使用 Hyperref 支持将被选中。底部有一个附加选项框,您可以在此处添加详细信息,例如

linkcolor=black,citecolor=black

因此,我的目录和内部链接都是黑色的(而不是默认的红色和绿色)。如果您同时激活了此功能并\usepackage{hyperref}在 LaTeX 序言中添加了其他选项,则在查看 PDF 时可能会出现错误。

相关内容