Search found 38 matches

by marbocam
Sat Jan 18, 2025 2:04 pm
Forum: General
Topic: hyperref package error
Replies: 5
Views: 2435

Re: hyperref package error

Thank you, Stefan :)
by marbocam
Fri Jan 17, 2025 6:06 pm
Forum: General
Topic: hyperref package error
Replies: 5
Views: 2435

Re: hyperref package error

I'm still getting some error, but it worked 8-) Had to cmd it with pdflatex.
by marbocam
Fri Jan 17, 2025 5:50 pm
Forum: General
Topic: hyperref package error
Replies: 5
Views: 2435

Re: hyperref package error

To the preamble? Like this?

\usepackage[pdfa]{hyperref}
\usepackage[a-1b,latxmp,mathxmp]{pdfx}[2019/02/27]
\usepackage{colorprofiles}
\hypersetup{%
unicode=true,
pdftoolbar=false,
pdfmenubar=false,
pdffitwindow=true,
pdfstartview={FitH},
pdfnewwindow=true,
colorlinks=true,
linkcolor=black ...
by marbocam
Fri Jan 17, 2025 5:23 pm
Forum: General
Topic: hyperref package error
Replies: 5
Views: 2435

hyperref package error

I'm trying to make a PDF/A file, but I'm getting this error:

! LaTeX Error: Option clash for package hyperref.

See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.

Any ideas?
by marbocam
Fri Jan 17, 2025 3:58 pm
Forum: General
Topic: List of figures margin
Replies: 1
Views: 1373

Re: List of figures margin

This worked for me:

\usepackage{tocloft}
\setlength{\cftfignumwidth}{3em}
by marbocam
Fri Jan 17, 2025 1:56 pm
Forum: General
Topic: List of figures margin
Replies: 1
Views: 1373

List of figures margin

Is there a way to change the margin in my list of figures so that the numbering is more separated from the text?

e.g.: 2.1.12A 25GHz RoF transmission using developed TOSA with 16-QAM modulation
for dierent ber lengths with an additional 1.5m-long seamless antenna link.

12 and A should be more ...
by marbocam
Thu Jan 16, 2025 4:26 pm
Forum: General
Topic: Glossary entry error
Replies: 4
Views: 1844

Re: Glossary entry error

Right, so I tried running it from TeXworks and everything is fine now.

I also tried to cmd everything and this order works for me:
pdfLatex main
makeglossaries main
bibtex main
pdflatex main
pdflatex main
by marbocam
Thu Jan 16, 2025 3:51 pm
Forum: General
Topic: Glossary entry error
Replies: 4
Views: 1844

Re: Glossary entry error

Went to comand prompt and did this:
pdflatex myDoc
makeglossaries myDoc
pdflatex myDoc
pdflatex myDoc

after moving \input{acronyms.tex} to my preamble. The glossary is now working, but the references are missing. In which order should I cmd everything?
by marbocam
Thu Jan 16, 2025 3:31 pm
Forum: General
Topic: Glossary entry error
Replies: 4
Views: 1844

Re: Glossary entry error

So I added to the preamble \makeglossaries

\usepackage[acronym, nonumberlist, style=super]{glossaries}
\newcommand{\capitalizefirst}[1]{\xmakefirstuc{#1}}
\renewcommand{\glsnamefont}[1]{\textbf{#1}}
\makeglossaries

and then to the main document:

\input{acronyms.tex}
\printglossary[type ...
by marbocam
Thu Jan 16, 2025 1:59 pm
Forum: General
Topic: Glossary entry error
Replies: 4
Views: 1844

Glossary entry error

So... I'm having an issue with TexWorks with my glossary. It seems as if my file is not compiling..

I'm using this code in my preamble:
\usepackage[acronym, nonumberlist, style=super]{glossaries}
\newcommand{\capitalizefirst}[1]{\xmakefirstuc{#1}}
\renewcommand{\glsnamefont}[1]{\textbf{#1}}

and ...