tikzを使用してDVIファイルを正しく生成できない

tikzを使用してDVIファイルを正しく生成できない

私は次のコードを使用しています:

\documentclass[tikz,10pt]{standalone}
\usepackage[scaled]{helvet}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{chemfig}
\usepackage{esvect}
\usetikzlibrary{arrows,shadows,calc,shapes,backgrounds,intersections,positioning} 
\usetikzlibrary{decorations.markings,decorations.pathmorphing,decorations.pathreplacing}

\renewcommand{\familydefault}{\sfdefault}
\tikzset{
%Define standard arrow tip
>=stealth
}
\def\height{3cm}
\def\width{10cm}

\begin{document}

% create a shadow layer, so that we don't need to worry about overdrawing other things
\pgfdeclarelayer{shadow} 
\pgfsetlayers{shadow,main}

\newcommand{\specnode}[7]{
\draw[line width=2pt,shade, top color=white, bottom color=blue!70,shading angle=0] (#1cm,#2cm)--++(#3*.8,0)--++(#3*.2,-.5*#4)--++(#3*-.2,-.5*#4)--(#1,#2-#4)--++(#3*.2,#4*.5) node[anchor=west, text width=#5cm,xshift=#6cm] {\parbox{#5cm}{\centering #7}}--cycle;

}

\begin{tikzpicture}[font=\normalsize,line width=1pt,node distance=.1cm]
\tikzset{nodestyle1/.style={draw,blue,rounded corners=10pt,anchor=west,minimum width=2.2cm, minimum height=3.5cm,font=\normalsize,text=black}}



%GRID
%+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
%\draw[white] (0,0)--(\width,0)--(\width,\height)--(0,\height)--(0,0);
%\draw[very thin,color=gray] (0,0) grid (\width,\height);
% \foreach \j  in {0,...,8.5} {
  %    \node[] at (\j,0) {$\j$};
%    }
    
% \foreach \j  in {0,...,6} {
  %    \node[] at (0,\j) {$\j$};
 %   }
%===================================================================
\specnode{0}{1.5}{4.5}{1.2}{2}{.1}{Background information}

\specnode{3.9}{1.5}{4.5}{1.2}{3}{-.2}{Pattern utilization and factors}

\specnode{7.8}{1.5}{4.5}{1.2}{3}{-.2}{Patterns\\ Documention}
%
\end{tikzpicture}
\end{document}

使用した場合はpdflatexすべて機能します: ここに画像の説明を入力してください

dviですが、 IEEE に掲載するには取得する必要があります。

latexコンパイラが正しく動作しないのはなぜですか?MIKTEX 2.9を使用していますTEXStudio

このエラーが発生しますPackage pgf Warning: Your graphic driver pgfsys-dvips.def does not support fadings.

答え1

メッセージは本質的には答えです。dvipsルートはフェードをサポートしていません。これは、PostScript と PDF ファイル形式の違いによるものです。後者だけがフェードをネイティブにサポートしています。直接 PDF ルートを使用する必要があります。

関連情報