Risposte nei forum create
-
AutoreRisposte
-
::
qui 😉in proposito su questo forum dice:
The pdfcrypt package provides the needed options, but encryption support of pdftex was dropped since pdfTeX-1.10a (2003-01-16), so you are out of luck. However, the manual of this package lists several free alternative ways to add this security feature to PDFs.
Ciao
Davide
::
Per esperienza personale un ebook reader è un ottimo strumento, versatile e leggero, per la lettura sopratttutto di romanyi in formato epub o equivalenti.
Purtroppo, anche se tutti i moderni lettori sono in grado di leggere anche il formato pdf, la lettura di documenti in questo fomato, soprattutto se in A4, non risulta così agevole vista la lentezza dello zoom e la difficoltà di scorrere all’interno della pagina.
Per la documentazione in formato pdf, a mio parere, sarebbe preferibile l’uso di un tablet, che però ha lo schermo retroilluminato.Davide
21 Giugno 2012 alle 13:53 in risposta a: come trovare il documento ove è utilizzato un pacchetto? #75334::
questo è il codice che ho usato per le prove, caso mai possa esserti utile`\documentclass{book}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[italian]{babel}
\usepackage{graphicx}\makeatletter
\def\maketitle{%
\cleardoublepage \thispagestyle{empty}%
\begingroup \topskip\z@skip
\null\vfil
\begingroup
\LARGE\bfseries \centering
\openup\medskipamount
\@title\par\vspace{24pt}%
\centering
\mdseries\@author\par\bigskip
\vfill
\includegraphics[height=1cm]{figure/ARS_logo_colori_rifilato.jpg}
\endgroup}
\makeatother\title{Titolo di Prova}
\author{Autore}
\begin{document}\maketitle
\chapter{Primo}
\end{document}`
un altro metodo puoi trovarlo qui:
http://en.wikibooks.org/wiki/LaTeX/Title_Creation
::
togliendo la @ in \def\maketitle a me funziona`\makeatletter
\def\maketitle{%
\cleardoublepage \thispagestyle{empty}%
\begingroup \topskip\z@skip
\null\vfil
\begingroup
\LARGE\bfseries \centering
\openup\medskipamount
\@title\par\vspace{24pt}%
\def\and{\par\medskip}\centering
\@author
\par\bigskip
\vfill
\includegraphics[height=1cm]{figure/ARS_logo_colori_rifilato.jpg}
\endgroup
}
\makeatother`oppure usando \renewcommand{\maketitle}
::
si si può, ecco un esempio di cosa ho fatto io, poi puoi provare a modificarlo a tuo piacere:`\renewcommand{\maketitle}{\begingroup%
\drop = 0.1\textheight
\thispagestyle{titlingpage}
\centering
\vspace*{\drop}
\ifdefined\theauthor
{\large\itshape \theauthor}\\[2\baselineskip]
\fi
\ifdefined\thetitle
{\Huge \thetitle}\\[\baselineskip]
\fi
\vfill
%
\cleardoublepage
\endgroup}`
-
AutoreRisposte