Document Classes ⇒ harvard vs hyperref
Re: harvard vs hyperref
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
harvard vs hyperref
I have reinstalled MiKTeX 2.9, I don't know how I can update my system in other ways.cgnieder wrote:If you have updated your system then I'm out of ideas. What does your log-file say?
Best regards.
bkarpuz
Re: harvard vs hyperref
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
harvard vs hyperref
Maybe by just selecting »Update (Admin)« from the »MiKTeX« folder in the »Start« menu?bkarpuz wrote:[…] I have reinstalled MiKTeX 2.9, I don't know how I can update my system in other ways. […]
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
harvard vs hyperref
Thank a lot Thorsten.localghost wrote:Maybe by just selecting »Update (Admin)« from the »MiKTeX« folder in the »Start« menu?bkarpuz wrote:[…] I have reinstalled MiKTeX 2.9, I don't know how I can update my system in other ways. […]
Thorsten
I have updated my files but I still have the same problem. I attached my log file.
Thank for your interest.
bkarpuz
- Attachments
-
- ws.log
- (11.14 KiB) Downloaded 534 times
harvard vs hyperref
»html.sty« is loaded by »harvard.sty« (only if it exists).
Try to run the example without »harvard.sty«.
Regards
harvard vs hyperref
It works fine when »harvard.sty« is disabled but in my thesis I have »harvard.sty«.cgnieder wrote: Try to run the example without »harvard.sty«.
Regards
So what can be done?
Thanks for your interest once again.
bkarpuz
harvard vs hyperref
Code: Select all
\IfFileExists{html.sty}{\RequirePackage{html}
\newcommand{\harvardurl}[1]{\htmladdnormallink*{\textbf{URL:} \textit{##1}}{##1}}
}{
\newcommand{\harvardurl}[1]{\textbf{URL:} \textit{##1}}
}
Code: Select all
% \IfFileExists{html.sty}{\RequirePackage{html}
% \newcommand{\harvardurl}[1]{\htmladdnormallink*{\textbf{URL:} \textit{##1}}{##1}}
% }{
\newcommand{\harvardurl}[1]{\textbf{URL:} \textit{##1}}
% }
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
harvard vs hyperref
html.sty
on your system or rename it (html.sty.old
for example). You can find it by
Code: Select all
kpsewhich html.sty
Or, place a dummy
html.sty
in your document folder, this file would win in the file lookup, though in general I would not reuse a style file name - here it could be quick workaround though.Stefan
Re: harvard vs hyperref
