Texmaker and TeXstudio ⇒ fullpagegraphic.sty not found
fullpagegraphic.sty not found
\usepackage{fullpagegraphic}
..but I get the error message "fullpagegraphic.sty not found"
The package texlive-latex-extra is installed. Who can help?
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
- Stefan Kottwitz
- Site Admin
- Posts: 10362
- Joined: Mon Mar 10, 2008 9:44 pm
fullpagegraphic.sty not found
you need to install that package. I assume it's not in TeX Live and not in Debian packages, as it's not even on CTAN. However, you could download it from github and save it in the same folder as your document (or install it properly).
Stefan
fullpagegraphic.sty not found
thank you very much, I put the fullpagegraphic.sty in the same directory as my .tex file and, in principle, it works. The only thing I had to do was to change
Code: Select all
width=\paperwidth,height=\paperheight
Code: Select all
width=0.65\paperwidth,height=0.65\paperheight
One question: What do you mean with "install it properly"?
- Stefan Kottwitz
- Site Admin
- Posts: 10362
- Joined: Mon Mar 10, 2008 9:44 pm
fullpagegraphic.sty not found
This means copying into the TeX user directory or the directory of the TeX installation and refreshing the TeX file name database so it is able to find it. This depends on the TeX installation (TeX Live, MiKTeX, MacTeX, Linux versions) so it needs time to explain and is system specific. It was easier to put that file into your document folder. Anyway, it's a simple small file with a few lines.DirkT wrote:What do you mean with "install it properly"?
Stefan
fullpagegraphic.sty not found
Code: Select all
\begin{figure}
\includegraphicsfullpage{picture.jpg}
\end{figure}
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
fullpagegraphic.sty not found
\hspace{5mm}
before it, but this is manual labour. I bet there is a reason for doing this, define a new command \imgshift
to do the job.Code: Select all
\documentclass{article}
\usepackage{graphicx}
\usepackage{showframe}
\newcommand{\imgshift}{\hspace{5mm}}
\begin{document}
\begin{figure}
\imgshift\includegraphics[width=.6\linewidth]{example-image}
\end{figure}
\end{document}
fullpagegraphic.sty not found
The line in my fullpagegraphic.sty is now
Code: Select all
\hspace{6mm}\includegraphics[width=0.65\paperwidth,height=0.65\paperheight]{#1}
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm