Graphics, Figures & Tables ⇒ latex bookmark in pdf, figure problem
latex bookmark in pdf, figure problem
Using \usepackage{hyperref}, I can able to creat bookmark and auto citation of referrence(means if I click to the cite it automaticaly go to reference page). But the figure that I include in my tex file is not shown in the created pdf file (though it is shown in dvi file). I need them all and it is very urget to me. Please some one help me out by giving a detail tex file with fig. to over come my problem.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
latex bookmark in pdf, figure problem
Obviously you are using the compiling route LaTeX -> DVI (-> PS) -> PDF. But you have to be more precise concerning your figure. Tell us where the external graphics file for that figure is located and if you give an absolute path to include it. Take a look at the PS output. If not done yet, compile the source to PS with the according build profile in TeXnicCenter (TXC) and check whether the figure appears. The code example should come from your side to make the problem comprehensible to others. This is done best by building a short minimal working example (MWE) that reproduces the effect. It may help you to find out the cause on your own.pallav wrote:[...] But the figure that I include in my tex file is not shown in the created pdf file (though it is shown in dvi file). [...] I need them all and it is very urget to me. Please some one help me out by giving a detail tex file with fig. to over come my problem. [...]
Best regards and welcome to the board
Thorsten¹
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: latex bookmark in pdf, figure problem
N.B.- If any more information is required, please reply for that also.
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
latex bookmark in pdf, figure problem
There should be some hints in the log file. Please attach the Log file of the build profile "LaTeX => PS => PDF" to your next post. You didn't answer the question for the location and the path parameters for the concerning file. I guess it is better to build a MWE.pallav wrote:[...] N.B.- If any more information is required, please reply for that also.
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
latex bookmark in pdf, figure problem
Code: Select all
\documentclass[12pt]{article}
\usepackage{graphicx,latexsym, amsmath,amsfonts}
%\renewcommand{\baselinestretch}{1.5}
\setlength{\oddsidemargin}{-0.08in}
\setlength{\textheight}{10in}
\setlength{\textwidth}{6.6in}
\setlength{\topmargin}{-0.8in}
\textheight 9.0in
\textwidth 6.6in
\oddsidemargin -0.2in
\topmargin -.1in
\parskip 3pt
\parindent 0.3in
\usepackage{hyperref}
%\usepackage[driver]{hyperref}
%\usepackage[backref]{hyperref}
\begin{document}
\newtheorem{theorem}{Theorem}
\newtheorem{lemma}{Lemma}
\newtheorem{definition}{Definition}
\def\h{\hspace{0.25cm}}
\def\sh{\hspace{0.1cm}}
\date{}
\title{ a s d d }
\section{Introduction}
\cite{sto25}
\section{saddff}
\cite{sto50}
\begin{figure}[htbp]
\centering
\includegraphics[width=10cm]{sss.eps}
\caption{\small{d d d d d}}\end{figure}
\begin{thebibliography}{99}
\bibitem{sto25} Anderson 1988. a b c
\bibitem{sto50} Anderson1989. a b c
\end{thebibliography}
\end{document}
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
latex bookmark in pdf, figure problem
Not related to the original problem, you should take a look at the caption package to customize your captions and at the geometry package for setting page dimensions.
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10