Warning: mysqli::__construct(): (HY000/1203): User howardkn already has more than 'max_user_connections' active connections in D:\Inetpub\vhosts\howardknight.net\al.howardknight.net\includes\artfuncs.php on line 21
Failed to connect to MySQL: (1203) User howardkn already has more than 'max_user_connections' active connections
Warning: mysqli::query(): Couldn't fetch mysqli in D:\Inetpub\vhosts\howardknight.net\al.howardknight.net\index.php on line 66
Article <87h76vwzz7.fsf@universite-de-strasbourg.fr.invalid>
Deutsch   English   Français   Italiano  
<87h76vwzz7.fsf@universite-de-strasbourg.fr.invalid>

View for Bookmarking (what is this?)
Look up another Usenet article

Path: ...!news.mixmin.net!aioe.org!Faqf6A55NG1s8DSVkh3L9A.user.46.165.242.75.POSTED!not-for-mail
From: Alain Ketterlin <alain@universite-de-strasbourg.fr.invalid>
Newsgroups: fr.comp.text.tex
Subject: Re: pdfpages openleft
Date: Thu, 14 Apr 2022 15:34:20 +0200
Organization: =?utf-8?Q?Universit=C3=A9?= de Strasbourg
Message-ID: <87h76vwzz7.fsf@universite-de-strasbourg.fr.invalid>
References: <62581bf7$0$26334$426a74cc@news.free.fr>
Mime-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: quoted-printable
Injection-Info: gioia.aioe.org; logging-data="12643"; posting-host="Faqf6A55NG1s8DSVkh3L9A.user.gioia.aioe.org"; mail-complaints-to="abuse@aioe.org";
User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux)
X-Notice: Filtered by postfilter v. 0.9.2
Cancel-Lock: sha1:j3tW7LiT3zI0V1pWcegaXbfQL30=
Bytes: 2109
Lines: 35

Jean-Yves Baudais <jean-yves.baudais@insa-rennes.fr> writes:

>   La commande \includepdf du package pdfpages =C3=A0 openright en option,
> ce qui permet d'inclure la premi=C3=A8re du PDF sur une page impaire.
> J'aurais besoin d'un openleft pour ins=C3=A9rer la 4e de couverture
> (document PDF externe) sans avoir =C3=A0 v=C3=A9rifier =C3=A0 chaque comp=
ilation s'il
> faut ajouter ou pas une page vide avant cette 4e de couverture pour
> qu'elle tombe bien sur une page paire.
>   J'ai regard=C3=A9 le code de l'option openright de pdfpages.sty mais
> c'est au-del=C3=A0 de mes capacit=C3=A9s pour la transformer en openleft.=
...
>   Merci pour votre aide,

Cela peut se d=C3=A9finir de fa=C3=A7on analogue =C3=A0 \cleardoublepage.

% https://tex.stackexchange.com/questions/11707/how-to-force-output-to-a-le=
ft-or-right-page
\makeatletter
\newcommand*{\cleartoleftpage}{%
  \clearpage
    \if@twoside
    \ifodd\c@page
      \hbox{}\newpage
      \if@twocolumn
        \hbox{}\newpage
      \fi
    \fi
  \fi
}
\makeatother

C'est ind=C3=A9pendant de pdfpages, il faut placer un \cleartoleftpage avant
\includepdf.

-- Alain.