Risposte nei forum create
-
AutoreRisposte
-
::
Grazie mille, funziona perfettamente. Precisi e veloci come al solito, vi ho già raccomandati a tutto il dipartimento.Scusate se mi sono dimenticato di sostituire i comandi definiti da me, in effetti potevano essere anche loro la fonte del problema, visto che non mostravo come li avevo definiti.
::
In effetti anche in Okular si nota una lieve retinatura anche nell’eps.MODIFICA: ho scoperto che forse è proprio perché gs fa l’antialiasing che viene la retinatura. Aprendo il file con gimp e importandolo da eps, se seleziono no antialiasing va tutto bene, se lo attivo compare la retinatura!
::
Grazie mille, adesso ho risolto con il seguente codice
`\pagestyle{fancy}
\renewcommand{\chaptermark}[1]{\markboth{#1}{}}
\renewcommand{\sectionmark}[1]{\markright{\thesection\ #1}}
\fancyhf{}
\fancyhead[LE,RO]{\scshape\thepage}
\fancyhead[LO]{\scshape\rightmark}
\fancyhead[RE]{\scshape\leftmark}
\renewcommand{\headrulewidth}{0.5pt}
\renewcommand{\footrulewidth}{0pt}
\fancypagestyle{plain}
{ \fancyhead{}
\fancyfoot[CE,CO]{\thepage}
\renewcommand{\headrulewidth}{0pt}
}
`
::
Di default la classe book non mette le testatine con i filetti, comunque vi posto il sorgente del file principale della tesi. Come dovrei fare se volessi usare il maiuscoletto?`\documentclass[a4paper,11pt,openright,twoside]{book}
\usepackage{amsmath,amsfonts,amssymb}
\usepackage[italian]{babel}
\usepackage{graphicx}\usepackage[utf8]{inputenc}
\usepackage{frontespizio}
\usepackage[round]{natbib}
\usepackage{setspace}
% \usepackage{hyperref}
% \hypersetup{%
% pdfcreator=Andrea Negri%
% }\title{Tesi di Laurea}
\date{13/10/08}
%
%numeri di pagina nel frontmatter in maiuscoletto
\makeatletter
\renewcommand{\frontmatter}{%
\cleardoublepage\@mainmatterfalse
\pagenumbering{smallRoman}}
\DeclareRobustCommand{\@smrc}[1]{%
\begingroup$\m@th$\fontsize{\sf@size}{\sf@size}\selectfont#1\endgroup}
\def\smallRoman#1{\expandafter\@smallRoman\csname c@#1\endcsname}
\def\@smallRoman#1{\@smrc{\expandafter\@slowromansmallcap\romannumeral #1@}}
\def\@slowromansmallcap#1{\ifx @#1% then terminate
\else
\if i#1I\else
\if v#1V\else
\if x#1X\else
\if l#1L\else
\if c#1C\else
\if d#1D\else
\if m#1M\else
#1\fi\fi\fi\fi\fi\fi\fi
\expandafter\@slowromansmallcap
\fi
}
\makeatother
%
% per avere le pagine bianche sul verso prima di un capitolo prive di testatine
% e piè di pagina
\makeatletter
\def\cleardoublepage{\clearpage
\if@twoside
\ifodd\c@page
\else
\null\thispagestyle{empty}\clearpage
\fi
\fi}
\makeatother
%
\DeclareMathOperator{\dirac}{\delta}\begin{document}
%
%
%
\frontmatter
\input{frontespizio}
\tableofcontents
\listoffigures
\include{introduzione}
%
\mainmatter
\onehalfspacing
\include{modello_fluidodinamico}
\include{moti_meridionali}
\include{risultati}
\include{conclusioni}
\appendix
\include{poincare_theorem}
\include{appendice_v_phi}
%
\backmatter
\cleardoublepage
\addcontentsline{toc}{chapter}{\bibname}
\bibliographystyle{natbib_astro}
\bibliography{bibliografia}
%
%
%
\end{document}
`
-
AutoreRisposte