الشرك بالله و الشرك مع الله
📅 October 01, 2025 | 👁️ Views: 1

\documentclass[a4paper]{article}
\usepackage[landscape,margin=1cm]{geometry}
\usepackage{tikz}
\usetikzlibrary{arrows.meta, positioning, calc, shadows}
\usepackage{fontspec} % For custom fonts
\usepackage{polyglossia} % For multilingual support
% Set Arabic as the main language
\setmainlanguage[numerals=maghrib]{arabic}
\newfontfamily\arabicfont[Script=Arabic]{Amiri} % Default Arabic font
% TikZ style for Arabic text
\tikzset{
arabic/.style={
font=\fontsize{18}{28}\arabicfont,
align=right,
execute at begin node=\RL
}
}
\tikzset{
% Base style (no colors yet)
process/.style={
rectangle,
arabic,
minimum width=3.5cm,
minimum height=1.2cm,
rounded corners=6pt,
draw=black!70,
thick,
drop shadow,
text centered,
},
% Color themes
processOrange/.style={process, top color=orange!20, bottom color=orange!40},
processBlue/.style={process, top color=blue!20, bottom color=blue!40},
processGreen/.style={process, top color=green!20, bottom color=green!40},
processPurple/.style={process, top color=purple!20, bottom color=purple!40},
processRed/.style={process, top color=red!20, bottom color=red!40}
}
\newcommand{\defone}{%
\textbf{\textcolor{red}{أشْرَكَ}} القاضي الإبن الثاني مع الإبن الأول في تقسيم تركة أبيهم رغم الوصية، فأجبر الإبن الأول على تقسيمها مع أخيه
}
\newcommand{\deftwo}{%
\textbf{\textcolor{red}{أشْرَكَ}} إبن الوزير صديقَه في جريمته باسم أبيه، أجبره على مشاركته في الجريمة قائلا أن أباه يأمره بفعل الجريمة معه
}
\newcommand{\cone}{%
\textbf{الشرك مع الله} مستحيل، فمن ذا الذي يستطيع أن يقتسم مع الله ملكَه، لكن هذا المعنى ورد في القرآن بتعابير مثل: إتخاذ إله من دون الله، إتخاذ أنداد من دون الله،...
\\
فالمُشرِكون هنا يظنون أن هناك إله مع الله، وهذا لا يعني أنهم أشركوه مع الله، لأن الفعل \textbf{\textcolor{red}{أشْرَكَ}} يسقط ويؤثر على المشْرَكين أنفسهم (الله سبحانه والإله الثاني) وهذا مستحيل
}
\newcommand{\ctwo}{%
\textbf{الشرك بالله} موجود بكثرة في القرآن والواقع، وهو أن تفرِضَ على غيرِكَ أن ينضم إليك في دينك بالقوة باسم الله(بمعنى الله يأمر بهذا). أي تُشْرِكُهُ معك في دينك (بالله، أي بإسم الله)
}
\newcommand{\rmrk}{%
\textbf{ملاحظة}:
الشيطان يُشارِكُ الناس في الأموال والأولاد. ليس في المشاركة إجبار، بل هم يشتركون معه بإختيارهم. لكن الإشْراكَ فيه إجبار.
}
\tikzset{myarrow/.style={-{Stealth[length=4mm,width=4mm]},thick,line width=1mm}}
\tikzset{line text/.style={%
midway, sloped, above,
font=\fontsize{38}{48}\arabicfont\bfseries},
}
\definecolor{RoyalBlue}{HTML}{4169E1}
\begin{document}
\pagestyle{empty}
\begin{tikzpicture}[node distance=4cm, auto]
\node[processOrange,text width=3cm, font=\fontsize{38}{48}\arabicfont\bfseries]
(start) {الشرك};
\node[processGreen, below of=start,text width=7cm, yshift=-1cm] (def1) {\deftwo};
\node[processGreen, above of=start,text width=8.5cm, yshift=1.5cm] (def2) {\defone};
\node[processPurple, left of=def2, xshift=-10cm,text width=14cm] (with1) {\cone};
\node[processRed, left of=def1, xshift=-10cm,text width=14cm] (with2) {\ctwo};
\draw[myarrow, purple] (start) -- (with2) node[line text] {بالله};
\draw[myarrow, purple] (start) -- (with1) node[line text, yshift=-0.7cm] {\RL{مع الله}};
\draw[myarrow, RoyalBlue] (start) -- (def1) ;
\draw[myarrow, RoyalBlue] (start) -- (def2) ;
\node[processBlue, left of=start, xshift=-10cm, yshift=-0.5cm,text width=12cm] (remrk) {\rmrk};
\end{tikzpicture}
\end{document}