Il existe une option sans paquetage supplémentaire qui fonctionne sous pdflatex
Adaptez ce code
\begin{figure}[h]
\centering
\includegraphics[width=\ScaleIfNeeded]{figuras/diagrama-spearman.pdf}
\caption{Schematical view of Spearman's theory.}
\end{figure}
"diagrama-spearman.pdf" est un tracé généré avec TikZ et voici le code (c'est un autre fichier .tex différent du fichier .tex où je veux insérer un pdf)
\documentclass[border=3mm]{standalone}
\usepackage[applemac]{inputenc}
\usepackage[protrusion=true,expansion=true]{microtype}
\usepackage[bb=lucida,bbscaled=1,cal=boondoxo]{mathalfa}
\usepackage[stdmathitalics=true,math-style=iso,lucidasmallscale=true,romanfamily=bright]{lucimatx}
\usepackage{tikz}
\usetikzlibrary{intersections}
\newcommand{\at}{\makeatletter @\makeatother}
\begin{document}
\begin{tikzpicture}
\tikzset{venn circle/.style={draw,circle,minimum width=5cm,fill=#1,opacity=1}}
\node [venn circle = none, name path=A] (A) at (45:2cm) { };
\node [venn circle = none, name path=B] (B) at (135:2cm) { };
\node [venn circle = none, name path=C] (C) at (225:2cm) { };
\node [venn circle = none, name path=D] (D) at (315:2cm) { };
\node[above right] at (barycentric cs:A=1) {logical};
\node[above left] at (barycentric cs:B=1) {mechanical};
\node[below left] at (barycentric cs:C=1) {spatial};
\node[below right] at (barycentric cs:D=1) {arithmetical};
\node at (0,0) {G};
\end{tikzpicture}
\end{document}
Voici le schéma que j'ai inclus
14 votes
Vous ne faites qu'ajouter le pdf ou vous voulez l'intégrer comme une image ?
15 votes
Remarque à l'attention de tous ceux qui voudraient nous suggérer de migrer ce texte vers text.stackexchange : nous ne pouvons pas. Il date de 2010, ce qui le rend bien trop vieux pour être migré.
1 votes
Voir aussi : Insérer un fichier PDF dans un document LaTeX
0 votes
Voir aussi : tex.stackexchange.com/questions/8662/