我在 WinEdt 中遇到了颜色问题。当我在 WinEdt 中编译下面的 MWE 时,文本
这将成为链接
是正确的绿色。
但当我将其保存为 pdf 文件时,颜色就变得不正确 黑色的,但可点击性仍然正确存在。
%&latex
%\documentclass[12pt,a4paper]{book}
\documentclass[14pt]{book}
\topmargin 2mm
\oddsidemargin 10mm
\evensidemargin 10mm
\textwidth 150mm
\textheight 220mm
\usepackage[latin2]{inputenc}
\usepackage[czech]{babel}
%\usepackage{czech}
\usepackage{latexsym}
\usepackage{a4}
\usepackage{makeidx}
\usepackage{theorem}
\usepackage[pdftex,breaklinks,colorlinks,citecolor=blue,urlcolor=blue,pdftitle={Lecture 9},pdfauthor={Ryan Higginbottom},linkcolor=green,pdfsubject={LaTeX}]{hyperref}
%\makeindex
\renewcommand{\theenumi}{\roman{enumi}}
\begin{document}
Links\hyperlink{foo_1}{This becomes a link}.
\hypertarget{foo_2}{This is the target}.
\newpage
\hypertarget{foo_1}{This is the target}.
Links\hyperlink{foo_2}{This becomes a link}.
\end{document}
答案1
第一行
%&latex
强制 pdflatex 在 dvi 模式下像 latex 一样运行,而不是像 pdflatex,因此如果你在文件上运行 pdflatex,那么你会得到错误
! Package hyperref Error: Wrong driver option `pdftex',
(hyperref) because pdfTeX in PDF mode is not detected.
并且没有可用的输出。
如果删除该行,它将运行而不会出现错误并生成
正如你在这里看到的,最好避免使用类似的驱动程序选项,[pdftex
如果hyperref
你不强迫它使用错误的驱动程序,它将选择合适的驱动程序,