Hi there,
Im new to latex and have 2 problems if you can help me with
1) the page numbers at the bottom of the page interfere with the text when I open the build PDF. How can I avoid that?
2) I have a few tables that have a reference as part of their caption. These references appear in the list of tables. So the reference counting starts from the list of tables rather than from the actual text. Can I avoid that too?
I hope somone can help me soon. I need to hand in my report tommorow
General ⇒ References numbered in list of figures
NEW: TikZ book now 40% off at Amazon.com for a short time.

- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
References numbered in list of figures
It is nearly impossible to say some thing about that without any code. Could be a matter of your page setup. Check the log file for warnings. Reduce the problem to a minimal working example (MWE). Longer text passages or even whole documents can be created easily with the blindtext package.moal2538 wrote:1) the page numbers at the bottom of the page interfere with the text when I open the build PDF. How can I avoid that? [...]
Use the short form for the caption to prevent references from appearing in the LoT.moal2538 wrote:2) I have a few tables that have a reference as part of their caption. These references appear in the list of tables. So the reference counting starts from the list of tables rather than from the actual text. Can I avoid that too? [...]
Code: Select all
\caption[short version for LoT entry]{long version with citation \cite{key}}
Best regards and welcome to the board
Thorsten¹
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: References numbered in list of figures
Thnx mate I solved the reference problem. I'm still struggling with the page numbering interfering with the text though. I had assigned the margins to be 2 cm from the bottom using the code below
\usepackage[left=3cm,top=2cm,bottom=2cm,right=2cm,nohead,nofoot]{geometry}
so what that be the problem???
I couldn't understand how the MWE can help in this regard??
\usepackage[left=3cm,top=2cm,bottom=2cm,right=2cm,nohead,nofoot]{geometry}
so what that be the problem???
I couldn't understand how the MWE can help in this regard??
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
References numbered in list of figures
A MWE does always help. In this case you have the luck that (according to my assumption) your setup with geometry is the cause. Modify it and allow at least a footer.moal2538 wrote:[...] I couldn't understand how the MWE can help in this regard??
Code: Select all
\usepackage[bindingoffset=1cm,margin=2cm,nohead]{geometry}
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 3
- Joined: Wed Jul 08, 2009 8:40 am
Re: References numbered in list of figures
Hi,
My references starts from List of Figures instead of 1st chapter, I tried the given solution for list of tables but it doesnt works(I just copied that into the main tex file)???
Can any one help?
My references starts from List of Figures instead of 1st chapter, I tried the given solution for list of tables but it doesnt works(I just copied that into the main tex file)???
Can any one help?
-
- Posts: 3
- Joined: Wed Jul 08, 2009 8:40 am
Re: References numbered in list of figures
sorry for the post, the solution worked for me, i was impatient to get the quick fix... thanks localghost..!!!