Re: Impedire l’elaborazione dei grafici per pgfplots

#91818
Up
0
Down
::


Apperò, grazie! 🙂

Al momento sto cercando di capire quale porzione del preambolo
`
\documentclass[a4paper,12pts,twoside,openright]{book}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english,italian]{babel}
\usepackage{csquotes}
\usepackage[useprefix,backend=bibtex]{biblatex} %incompatibile con il pacchetto ucs
\bibliography{bibliografia}
\usepackage{indentfirst}
\usepackage{graphicx}
\usepackage

{subfigure}
%pacchetti per i bordi delle figure
\usepackage{float}
%\floatstyle{boxed}
\usepackage{verbatim}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{mathrsfs}
\usepackage{bbm}
\usepackage{braket}
\usepackage[dvipsnames]{xcolor}
\usepackage{listings}

\usepackage{tikz}
\usepackage{pgfplots}
\usepgfplotslibrary{external}
\usetikzlibrary{calc}
\tikzexternalize %comando per non ricalcolare sempre i grafici

\usepackage{fancyhdr}
\pagestyle{fancy}

\renewcommand{\chaptermark}[1]{\markboth{#1}{}}
\renewcommand{\sectionmark}[1]{\markright{\thesection\ #1}}
\fancyhf{} % delete current setting for header and footer
\fancyhead[LE,RO]{\bfseries\thepage}
\fancyhead[LO]{\bfseries\rightmark}
\fancyhead[RE]{\bfseries\leftmark}
\renewcommand{\headrulewidth}{0.5pt}
\renewcommand{\footrulewidth}{0pt}
\addtolength{\headheight}{0.5pt}
\fancypagestyle{plain}{
\fancyhead{}
\renewcommand{\headrulewidth}{0pt} % and the line
}

%~ \usepackage{hyperref}
\usepackage{url}

%% Define a new 'leo' style for the package that will use a smaller font.
\makeatletter
\def\url@leostyle{%
\@ifundefined{selectfont}{\def\UrlFont{\sf}}{\def\UrlFont{\small\ttfamily}}}
\makeatother
%% Now actually use the newly defined style.
\urlstyle{leo}

\restylefloat{figure}

\newcommand{\omissis}{[\dots\negthinspace]}

\theoremstyle{plain}
\newtheorem{teorema}{Teorema}[chapter]
\newtheorem{lemma}{Lemma}[chapter]
\newtheorem{cor}{Corollario}[chapter]
%\newtheorem{proof}{Dimostrazione}

\theoremstyle{definition}
\newtheorem{defn}{Definizione}[chapter]

\addto\captionsitalian{\renewcommand{\lstlistingname}{Codice}}
\lstset{basicstyle=\small\ttfamily,
language=C++,
showstringspaces=false,
numbers=left,
numberstyle=\tiny,
tabsize=2,
frame=trbl
basicstyle=\ttfamily,
keywordstyle=\color{blue}\ttfamily,
stringstyle=\color{red}\ttfamily,
commentstyle=\color{green}\ttfamily,
morecomment=[l][\color{magenta}]{\#},
literate={è}{{\`e}}1
{é}{{\'e}}1
{à}{{\`a}}1
}

%~ \allowdisplaybreaks

\graphicspath{{Immagini/}}

\overfullrule=5pt

%\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
`

sia necessario inserire nel documento standalone.

Lo chiedo, perché devo capire bene come generare dei grafici “a parte” che poi andrò ad inserire nei documenti futuri.
Penso infatti di regolarmi in questo modo.
Anzi, se voleste darmi una mano con qualche indicazione ve ne sarei davvero grato.

Go to top