Cercle inversé

a marqué ce sujet comme résolu.

Salut, vous sauriez comment réaliser un cercle inversé comme le rouge de ce modèle : http://pagedegarde.net/portfolio/latunisienne

J'ai ça mais il est dans le mauvais sens ..

1
2
3
4
5
6
\begin{tikzpicture}[remember picture, overlay]
 \begin{scope}[shift={(current page.south)},shift={(1,1)},scale=1]
 \shade[ball color=blue,opacity=.6] (0,-5) circle (80ex);

 \end{scope}
 \end{tikzpicture}

Merci :)

ça me le met en absolue sur le devant. ça cache toute la page..

1
2
3
4
5
6
7
8
9
\begin{tikzpicture}[remember picture, overlay]
 \begin{scope}[shift={(current page.south)},shift={(1,1)},scale=1]

 \draw[fill=red] (0, 0) rectangle (100, 10);
 \draw[fill=white] (0,10) circle (80ex);
 %\shade[ball color=blue,opacity=.6] (0,-5) circle (80ex);

 \end{scope}
 \end{tikzpicture}
+0 -0

En fait, je cherche à faire exactement comme sur le lien : http://pagedegarde.net/portfolio/latunisienne :P

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
\documentclass[11pt]{report}  
\usepackage[utf8]{inputenc}  
\usepackage[francais]{babel}  
\usepackage{geometry}
\usepackage{amsthm}
\usepackage{eurosym}
\usepackage{graphicx}    
\usepackage{enumitem} 
\usepackage[table]{xcolor} 
\usepackage{thmtools}
\declaretheorem[thmbox=L]{boxtheorem L}
\declaretheorem[thmbox=M,preheadhook={\xdef\restorepagetotal{\pagetotal=\the\pagetotal}\pagetotal=0pt },postfoothook=\restorepagetotal]{Case}
\declaretheorem[thmbox=S]{boxtheorem S}

\usepackage[backend=biber]{biblatex} % chargement de biblatex
\bibliography{biblio} % fichier de biblio


\usepackage[tikz]{bclogo}

\begin{document}

  \begin{titlepage}

\begin{center}

\begin{minipage}{0.4\textwidth}
\begin{flushleft} 
\includegraphics[width=0.75\textwidth]{../images/logo2.jpeg}
\end{flushleft}
\end{minipage}
\begin{minipage}{0.4\textwidth}
\begin{flushright} 
\includegraphics[width=0.75\textwidth]{../images/logo1.png}
\end{flushright}
\end{minipage}


\textsc{\Large Ecole}\\[1.5cm]

\textsc{\Large }\\[0.5cm]


% Title

{ \huge \bfseries Titre}\\[0.4cm]



% Author and supervisor
\begin{minipage}{0.4\textwidth}
\begin{flushleft} \large
\emph{Etudiant:}\\
Prénom \textsc{Nom}
\end{flushleft}
\end{minipage}
\begin{minipage}{0.4\textwidth}
\begin{flushright} \large
\emph{Maitre de stage:} \\
Prénom \textsc{Nom}
\end{flushright}
\end{minipage}

\vfill

\includegraphics[width=0.75\textwidth]{../images/photo1.jpg}

% Bottom of the page
{\large \today}

\end{center}

\vspace*{\stretch{2}}

\begin{tikzpicture}[remember picture, overlay]
 \begin{scope}[shift={(current page.south)},shift={(1,1)},scale=1]

\shade[ball color=blue,opacity=.6] (0,-5) circle (80ex);

 \end{scope}
 \end{tikzpicture}

\end{titlepage}
\end{document}

Je voudrai faire ça : http://pagedegarde.net/portfolio/latunisienne

Ce que j'aurai beaucoup aimé, c'est un effet où on a l'impression que l'image (le rectangle noir) sort du cercle. Comme si l'arc de cercle était une boite et que dans cette boite, il y avait le rectangle noir qui essayait d'en sortir.

Une sorte de fente dans lequel le carré noir rentre. Tu vois un peu ?

Un peu comme ça : http://hpics.li/b003a39

En partant de cet ECM :

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
\documentclass[11pt]{report}  
\usepackage[utf8]{inputenc}  
\usepackage[francais]{babel}  
\usepackage{geometry}
\usepackage{graphicx}    
\usepackage{thmtools}
\declaretheorem[thmbox=L]{boxtheorem L}
\declaretheorem[thmbox=M,preheadhook={\xdef\restorepagetotal{\pagetotal=\the\pagetotal}\pagetotal=0pt },postfoothook=\restorepagetotal]{Case}
\declaretheorem[thmbox=S]{boxtheorem S}
\usepackage[pages=some]{background}




\begin{document}

  \begin{titlepage}

\begin{center}



 \begin{tikzpicture}[remember picture, overlay]
 \begin{scope}[shift={(current page.south west)},shift={(0,0)},scale=1]

  \fill [red] (0,0) rectangle (100,10);
 \end{scope}

 \end{tikzpicture}

 \begin{tikzpicture}[remember picture, overlay]
 \begin{scope}[shift={(current page.south)},shift={(0,0)},scale=1]


  \fill[fill=white] (0,17) circle (80ex);

 %\shade[ball color=blue,opacity=.6] (0,-5) circle (80ex);

 \end{scope}

 \end{tikzpicture}



\begin{minipage}{0.4\textwidth}
\begin{flushleft} 
\includegraphics[width=0.75\textwidth]{example-image}
\end{flushleft}
\end{minipage}
\begin{minipage}{0.4\textwidth}
\begin{flushright} 
\includegraphics[width=0.75\textwidth]{example-image}
\end{flushright}
\end{minipage}


\textsc{\Large Ecole}\\[1.5cm]

\textsc{\Large }\\[0.5cm]


% Title

{ \huge \bfseries Titre}\\[0.4cm]

\vspace{1cm}

% Author and supervisor
\begin{minipage}{0.4\textwidth}
\begin{flushleft} \large
Nom \\
Prénom \\
\end{flushleft}
\end{minipage}
\begin{minipage}{0.4\textwidth}
\begin{flushright} \large
Nom \\
Prénom
\end{flushright}
\end{minipage}

{\large \today}

 \begin{tikzpicture}[remember picture, overlay]
 \begin{scope}[shift={(current page.south)},shift={(0,0)},scale=1]

 \node[inner sep=0pt] (russell) at (0,7){\includegraphics[width=0.75\textwidth]{example-image}};

 \end{scope}

 \end{tikzpicture}
% Bottom of the page


\end{center}



\end{titlepage}

\end{document}
Connectez-vous pour pouvoir poster un message.
Connexion

Pas encore membre ?

Créez un compte en une minute pour profiter pleinement de toutes les fonctionnalités de Zeste de Savoir. Ici, tout est gratuit et sans publicité.
Créer un compte