Historique des modifications [retour]
cliquez ici pour masquer/afficher la révision 7

20 Jui '19, 05:24

samcarter's gravatar image

samcarter
8.6k2817

Modifié de https://tex.stackexchange.com/a/86392/36296 : \documentclass{article} \usepackage{tikz} \usetikzlibrary{decorations.pathmorphing,calc,shadows.blur,shadings} \newcounter{mathseed} \setcounter{mathseed}{6} \pgfmathsetseed{\arabic{mathseed}} % To have predictable results % Define a background layer, in which the parchment shape is drawn \pgfdeclarelayer{background} \pgfsetlayers{background,main} % This is the base for the fractal decoration. It takes a random point between the start and end, and % raises it a random amount, thus transforming a segment into two, connected at that raised point % This decoration can be applied again to each one of the resulting segments and so on, in a similar % way of a Koch snowflake. \pgfdeclaredecoration{irregular fractal line}{init} { \state{init}[width=\pgfdecoratedinputsegmentremainingdistance] { \pgfpathlineto{\pgfpoint{random*\pgfdecoratedinputsegmentremainingdistance}{(random*\pgfdecorationsegmentamplitude-0.02)*\pgfdecoratedinputsegmentremainingdistance}} \pgfpathlineto{\pgfpoint{\pgfdecoratedinputsegmentremainingdistance}{0pt}} } } % define some styles \tikzset{ paper/.style={draw=black, fill=none}, irregular border/.style={decoration={irregular fractal line, amplitude=0.1}, decorate, }, ragged border/.style={ decoration={random steps, segment length=2mm, amplitude=1mm}, decorate, } } \def\tornpaper#1{% \tikz{ \node[inner sep=1em,text width=.85\linewidth,align=flush left] (A) {#1}; % Draw the text of the node \begin{pgfonlayer}{background} % Draw the shape behind \draw[paper] % recursively decorate the bottom border \pgfextra{\pgfmathsetseed{\arabic{mathseed}}\addtocounter{mathseed}{1}}% {decorate[irregular border]{decorate{decorate{decorate{decorate[ragged border]{ (A.north west) -- (A.north east) }}}}}} \pgfextra{\pgfmathsetseed{\arabic{mathseed}}}% {decorate[irregular border]{decorate{decorate{decorate{decorate[ragged border]{ -- (A.south east) }}}}}} \pgfextra{\pgfmathsetseed{\arabic{mathseed}}}% {decorate[irregular border]{decorate{decorate{decorate{decorate[ragged border]{ -- (A.south west) }}}}}} \pgfextra{\pgfmathsetseed{\arabic{mathseed}}}% {decorate[irregular border]{decorate{decorate{decorate{decorate[ragged border]{ -- (A.north west) }}}}}}; \end{pgfonlayer} }} \begin{document} \tornpaper{% {\Large Mon text en large} mon text } \end{document} ![alt text][1] ---- Une version plus simple : \documentclass{article} \usepackage{tikz} \usetikzlibrary{decorations.pathmorphing} \newcommand\randombox[1]{% \tikz{% \node[inner sep=1em,text width=.85\linewidth,align=flush left] (A) {#1}; \draw[decoration={random steps,segment length=0.4cm,amplitude=.1cm},decorate] (A.north west) -- (A.north east) -- (A.south east) -- (A.south west) -- cycle; }} \begin{document} \randombox{% {\Large Mon text en large} mon text } \end{document} ![alt text][2] [1]: https://texnique.fr/osqa/upfiles/Screen_Shot_2019-06-20_at_01.06.28.png [2]: https://texnique.fr/osqa/upfiles/Screen_Shot_2019-06-20_at_01.19.29.png
cliquez ici pour masquer/afficher la révision 6

20 Jui '19, 05:23

samcarter's gravatar image

samcarter
8.6k2817

Modifié de https://tex.stackexchange.com/a/86392/36296 : \documentclass{article} \usepackage{tikz} \usetikzlibrary{decorations.pathmorphing,calc,shadows.blur,shadings} \newcounter{mathseed} \setcounter{mathseed}{6} \pgfmathsetseed{\arabic{mathseed}} % To have predictable results % Define a background layer, in which the parchment shape is drawn \pgfdeclarelayer{background} \pgfsetlayers{background,main} % This is the base for the fractal decoration. It takes a random point between the start and end, and % raises it a random amount, thus transforming a segment into two, connected at that raised point % This decoration can be applied again to each one of the resulting segments and so on, in a similar % way of a Koch snowflake. \pgfdeclaredecoration{irregular fractal line}{init} { \state{init}[width=\pgfdecoratedinputsegmentremainingdistance] { \pgfpathlineto{\pgfpoint{random*\pgfdecoratedinputsegmentremainingdistance}{(random*\pgfdecorationsegmentamplitude-0.02)*\pgfdecoratedinputsegmentremainingdistance}} \pgfpathlineto{\pgfpoint{\pgfdecoratedinputsegmentremainingdistance}{0pt}} } } % define some styles \tikzset{ paper/.style={draw=black, fill=none}, irregular border/.style={decoration={irregular fractal line, amplitude=0.1}, decorate, }, ragged border/.style={ decoration={random steps, segment length=2mm, amplitude=1mm}, decorate, } } \def\tornpaper#1{% \tikz{ \node[inner sep=1em,text width=.85\linewidth,align=flush left] (A) {#1}; % Draw the text of the node \begin{pgfonlayer}{background} % Draw the shape behind \draw[paper] % recursively decorate the bottom border \pgfextra{\pgfmathsetseed{\arabic{mathseed}}\addtocounter{mathseed}{1}}% {decorate[irregular border]{decorate{decorate{decorate{decorate[ragged border]{ (A.north west) -- (A.north east) }}}}}} \pgfextra{\pgfmathsetseed{\arabic{mathseed}}}% {decorate[irregular border]{decorate{decorate{decorate{decorate[ragged border]{ -- (A.south east) }}}}}} \pgfextra{\pgfmathsetseed{\arabic{mathseed}}}% {decorate[irregular border]{decorate{decorate{decorate{decorate[ragged border]{ -- (A.south west) }}}}}} \pgfextra{\pgfmathsetseed{\arabic{mathseed}}}% {decorate[irregular border]{decorate{decorate{decorate{decorate[ragged border]{ -- (A.north west) }}}}}}; \end{pgfonlayer} }} \begin{document} \tornpaper{% {\Large Mon text en large} mon text } \end{document} ![alt text][1] ---- \documentclass{article} \usepackage{tikz} \usetikzlibrary{decorations.pathmorphing} \newcommand\randombox[1]{% \tikz{% \node[inner sep=1em,text width=.85\linewidth,align=flush left] (A) {#1}; \draw[decoration={random steps,segment length=0.4cm,amplitude=.1cm},decorate] (A.north west) -- (A.north east) -- (A.south east) -- (A.south west) -- cycle; }} \begin{document} \randombox{% {\Large Mon text en large} mon text } \end{document} ![alt text][2] [1]: https://texnique.fr/osqa/upfiles/Screen_Shot_2019-06-20_at_01.06.28.pnghttps://texnique.fr/osqa/upfiles/Screen_Shot_2019-06-20_at_01.06.28.png [2]: https://texnique.fr/osqa/upfiles/Screen_Shot_2019-06-20_at_01.19.29.png
cliquez ici pour masquer/afficher la révision 5

20 Jui '19, 05:11

samcarter's gravatar image

samcarter
8.6k2817

cliquez ici pour masquer/afficher la révision 4

20 Jui '19, 05:06

samcarter's gravatar image

samcarter
8.6k2817

cliquez ici pour masquer/afficher la révision 3

20 Jui '19, 04:59

samcarter's gravatar image

samcarter
8.6k2817

cliquez ici pour masquer/afficher la révision 2

20 Jui '19, 04:41

samcarter's gravatar image

samcarter
8.6k2817

cliquez ici pour masquer/afficher la révision 1

20 Jui '19, 04:36

samcarter's gravatar image

samcarter
8.6k2817

C'est votre première visite ici ? Consultez la FAQ !

×