Graphics, Figures & Tablescan't convert these images in lualatex

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
csayantan
Posts: 1
Joined: Mon Jun 20, 2022 2:28 pm

can't convert these images in lualatex

Post by csayantan »

i can't convert this image in lualatex
Image
so far i have only


https://tex.stackexchange.com/questions ... 336#648336

Code: Select all

\documentclass{standalone}
\usepackage{tikz}
\tikzset{
mynode/.style args={#1/#2/#3/#4/#5}{
#1,
fill=#2,
rounded corners=#5,
minimum height=#3,
minimum width=#4,
font=\sffamily\Large,
},
}
\begin{document}
\begin{tikzpicture}
    \node (a) [mynode=/gray!15/3cm/18cm/10pt] {};
    \node (b) [mynode={white,right=1cm}/blue/2cm/5.5cm/0pt] at (a.west) {Data File};
    \coordinate (tmp) at (b.east);
    \foreach \word/\col in {Parameter\\file/green,Control\\ File/green!50!black,Password\\File/blue!30,Archive Log\\File/purple}
        \node (tmp) [mynode={white,anchor=west,right=3pt,align=center}/\col/2cm/2.5cm/0pt] at (tmp.east) {\word};
\end{tikzpicture}
\end{document}


Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

Post Reply