latex: page de présentation de la structure?

latex: page de présentation de la structure? - Divers - Programmation

Marsh Posté le 02-06-2006 à 16:00:24    

Bonjour,  
 
j'essaie d'obtenir un pdf a partir d'un fichier latex. Le ptit souci c'est qu'après avoir généré le PDF, ce PDF contient en 1ere page ceci :
http://img428.imageshack.us/img428/9365/clipboard5iv.th.jpg
 
Comment puis-je l'enlever? je suppose qu'il y a un paramètre a changer?
Voici le code pour passer du latex au pdf:  

Code :
  1. ######################################################################
  2. # makefile pour la génération de fichier PDF à partir de fichier TeX
  3. # utilisation : makefile monFichier.pdf
  4. # le fichier source LaTeX doit s'appeler alors monFichier.tex
  5. # peut aussi faire le ménage : makefile clean
  6. PATH=/usr/bin:/bin
  7. SHELL=/bin/bash
  8. all: $(PDFFILE)
  9. -rm -f *.toc *.aux *.dvi *.ps *.log
  10. # génération du PDF
  11. %.pdf: %.ps
  12. /usr/bin/ps2pdf $< $@
  13. # génération du PS
  14. %.ps: %.dvi
  15. /usr/bin/dvips -f $< -o $@
  16. # génération du DVI
  17. %.dvi: %.tex
  18. /usr/bin/latex $<
  19. /usr/bin/latex $<
  20. /usr/bin/latex $<
  21. # nettoyage
  22. clean:
  23. rm -f *.toc *.log *.aux *.dvi *.ps


Je précise que j'y connais pas grand chose j'essaie de comprendre avant tout  :D  
 
Merci


---------------
Direct-download.com, le moteur de recherche pour Mega
Reply

Marsh Posté le 02-06-2006 à 16:00:24   

Reply

Marsh Posté le 02-06-2006 à 16:02:39    

tu as regardé la tete qu'avait le fichier .ps ?

Reply

Marsh Posté le 02-06-2006 à 16:07:55    

De toute maniere ps2pdf c'est pas génial genial...
 
il y a un pdftex qui donne de bien meilleurs resultats à mon humble avis...
 
(Dabs le cas ou on à un fichier LaTeX bien entendu )

Reply

Marsh Posté le 02-06-2006 à 17:03:46    

Je n'ai pas compris ton problème :??:

Reply

Marsh Posté le 03-06-2006 à 21:30:34    

flo850 > non je ne savais pas qu'il y avait un fichier .ps, je vais voir s'il y en a effectivement un. Et je materai son code.
 
Jeddo > bah je veux juste que dans le pdf cette page ne s'affiche pas  [:airforceone]


---------------
Direct-download.com, le moteur de recherche pour Mega
Reply

Marsh Posté le 04-06-2006 à 22:07:54    

welcominh a écrit :

Jeddo > bah je veux juste que dans le pdf cette page ne s'affiche pas  [:airforceone]


On peut voir le fichier source ?

Reply

Marsh Posté le 06-06-2006 à 08:31:07    

Voila voila  :)  
Je mets le fichier text ci-dessous et en lien hébergé au cas où vous voulez voir ca dans un éditeur texte.  
Je donne le lien du pdf généré également.  
>> le pdf
>> le fichier latex
 
le code du latex:  

Code :
  1. \documentclass[a4paper,10pt]{article}
  2. \usepackage[latin1]{inputenc}
  3. \usepackage[T1]{fontenc}
  4. \usepackage[francais]{babel}
  5. \usepackage[counterclockwise]{rotating}
  6. \usepackage{array}
  7. \usepackage{lscape}
  8. \usepackage{longtable}
  9. \usepackage{multirow}
  10. \usepackage{pslatex}
  11. \usepackage{tabularx}
  12. %\usepackage{fancyhdr} % pour pouvoir régler les marges
  13. \usepackage{layout}
  14. % marges et compagnie
  15. %\setlength{\textwidth}{15cm}
  16. %\setlength{\headwidth}{15cm}
  17. %\setlength{\hoffset}{0.46cm}
  18. %\setlength{\oddsidemargin}{0cm}
  19. %\setlength{\evensidemargin}{0cm}
  20. %\setlength{\textheight}{24cm}
  21. %\setlength{\voffset}{-2.5cm}
  22. %\setlength{\paperwidth}{21cm}
  23. %\setlength{\paperheight}{29.7cm}
  24. %\setlength{\footskip}{1cm}
  25. \addtolength{\textwidth}{20mm}
  26. \addtolength{\marginparwidth}{-10mm}
  27. \addtolength{\hoffset}{-10mm}
  28. \addtolength{\textheight}{3cm}
  29. %\addtolength{\voffset}{-15mm}
  30. \pagestyle{empty}
  31. % macro pour l'épaisseur des lignes horizontales des tableaux
  32. \makeatletter
  33. \def\hlinewd#1{%
  34. \noalign{\ifnum0=`}\fi\hrule \@height #1 %
  35. \futurelet\reserved@a\@xhline}
  36. \makeatother
  37. % utilisation : \hlinewd{1pt}
  38. \begin{document}
  39. \layout
  40. \begin{center}
  41. \Large\textbf{Compiled data on pharmaceutical compounds}\\ \Large\textbf{(Exposure assessment)}
  42. \end{center}
  43. \vspace{2cm}
  44. \textbf {Criteria used :}\\
  45. \rule{\textwidth}{1pt}
  46. \begin{description} \item [ - ] {Compound cas =
  47. $103-90-2$} \item [ - ] {Compound name =
  48. Paracetamol} \item [ - ] {PEC type =
  49. PEC soil} \item [ - ] {Country =
  50. Denmark} \item [ - ] {Animal type =
  51. animal\_test\_1} \item [ - ] {Flow soil =
  52. $1200000 kg/ha/yr$} \item [ - ] {Ground type =
  53. Meadow}
  54. \end{description}
  55. \noindent
  56. \rule{\textwidth}{1pt}
  57. \\
  58. \vspace{1cm}
  59. \vspace{1cm}
  60. \textbf{Results :}
  61. \begin{center}
  62. \textbf{Predicted exposure concentration = 157.895 $\mu$g/L}
  63. \end{center}
  64. \newpage
  65. \setlength{\topmargin}{-1.5cm}
  66. \begin{landscape}
  67. \end{landscape}
  68. \vspace*{1cm}
  69. \noindent\large\textbf{Algorithm and datas used:}\\\\
  70. $$
  71. PEC_{soil}= \frac{C_{SA}}{WP + M}
  72. $$
  73. \begin{tabbing}
  74. \textbf{$C_{SA}$}: ~~\=Applied flow on soil\\
  75. \textbf{WP}: \>Weigth of the plowed soil\\
  76. \>if soil is plowed, WP will take value 0.25m, if not (meadow) it will take value 0.05m\\
  77. \end{tabbing}
  78. $$
  79. C_{SA}= M \times C_{E}
  80. $$
  81. \begin{tabbing}
  82. \textbf{M}: ~~\=the amount of excreta, calculated by the formula M= min($M_{N}, M_{P}$)\\
  83. \textbf{$C_{E}$}: \>the concentration in deposit\\
  84. \end{tabbing}
  85. $$
  86. M_{N}= \frac{A_{N}}{P_{N}} \times P_{E}    ~~~~~~~~~~~~~~~  M_{P}= \frac{A_{P}}{P_{P}} \times P_{E} \\
  87. $$
  88. \begin{tabbing}
  89. \\
  90. \textbf{$A_{N}$}: ~~\=the maximum allowed amount of nitrogen ($kg.ha^{-1}.year^{-1}$)\\
  91. \textbf{$A_{P}$}: \>the maximum allowed amount of phosphorus ($kg.ha^{-1}.year^{-1}$)\\
  92. \textbf{$P_{N}$}: \>the yearly production of nitrogen ($kg N.year^{-1}$)\\
  93. \textbf{$P_{P}$}: \>the yearly production of phosphorus ($kg N.year^{-1}$)\\
  94. \textbf{$P_{E}$}: \>the yearly output of excreta ($kg.year^{-1}$)\\
  95. \end{tabbing}
  96. $$
  97. C_{E}= \frac{Q}{P_{E}}
  98. $$
  99. \begin{tabbing}
  100. \\
  101. \textbf{Q}: ~~\=\=the yearly dose per place, calculated by the formula: $ Q= D \times T \times W \times N $\\
  102. \>\>The four values are extracted from database, following the criteria: \\
  103. ~~~~~~~~~~~~~~~~~\= - \textbf{compound}\\
  104.     \> - \textbf{country}\\
  105.     \> - \textbf{animal type}\\
  106. \textbf{D}: \>\>the average daily dose (mg)\\
  107. \textbf{T}: \>\>the yearly number of treatments\\
  108. \textbf{W}: \>\>the body weight of the target animal type (kg)\\
  109. \textbf{N}: \>\>the number of animals raised at one place in one year\\
  110. \end{tabbing}
  111. \end{document}


---------------
Direct-download.com, le moteur de recherche pour Mega
Reply

Marsh Posté le 06-06-2006 à 08:46:56    

Il te suffit d'enlever la ligne \layout.
 
Sinon, un petit conseil : ton document étant en anglais, il est préférable d'utiliser l'option [english] de babel.
 
 :hello:  
 
P.S. : si tu as d'autres questions concernant LaTeX, je te conseille vivement de poster sur le topic unique LaTeX.
http://forum.hardware.fr/forum2.ph [...] w=0&nojs=0

Reply

Marsh Posté le 06-06-2006 à 11:39:20    

ca marche cool  :)  
merci beaucoup pour ta patience, pour le conseil et le lien  :jap:


---------------
Direct-download.com, le moteur de recherche pour Mega
Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed