bookcover-template2.tex 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. % User guide: http://mirrors.ctan.org/macros/latex/contrib/bookcover/bookcover.pdf
  2. \documentclass[
  3. coverwidth=170mm,
  4. coverheight=240mm,
  5. spinewidth=15mm,
  6. markcolor=black,
  7. % trimmed % Show only trimmed part!
  8. ]{bookcover}
  9. %\bookcovertrimmedpart{front} % Trimmed part is the front cover
  10. %\bookcovertrimmedpart{back} % Trimmed part is the back cover
  11. %\bookcovertrimmedpart{spine} % Trimmed part is the spine
  12. \usepackage[latin]{babel}
  13. \usepackage{lipsum,microtype}
  14. \begin{document}
  15. % ----------------------------------------------------------------------
  16. % Outside cover
  17. % ----------------------------------------------------------------------
  18. \begin{bookcover}
  19. % Remark
  20. \bookcovercomponent{center}{above front}{
  21. \textcolor{red}{\textsc{Annales Mathematicae} book cover (outside)}}
  22. % Blue area on the back cover
  23. \bookcovercomponent{tikz}{bg back}{
  24. \fill[blue!50](7/48,0)--(17.5,24.5)--(17.5,0)--cycle;}
  25. % Blue area on the front cover
  26. \bookcovercomponent{tikz}{bg front}{
  27. \fill[blue!50](0,0)--(0,24.5)--(833/48,0)--cycle;}
  28. % Background color on the spine
  29. \bookcovercomponent{color}{bg spine}{blue!50}
  30. % Title on the spine
  31. \bookcovercomponent{center}{spine}{
  32. \rotatebox[origin=c]{-90}{\large\bfseries
  33. ANNALES MATHEMATICAE 43.~(2020)}}
  34. % Text and picture on the front cover
  35. \bookcovercomponent{normal}{front}[22mm,20mm,22mm,40mm]{
  36. \centering
  37. {\huge\bfseries ANNALES\\ MATHEMATICAE\\[13mm]}
  38. {\large\bfseries TOMUS 43.~(2020)}
  39. \vfill
  40. \includegraphics{./figures/bookcover-pi.pdf}
  41. \vfill
  42. {\large COMMISSIO REDACTORIUM}\\[3mm]
  43. \lipsum[2]}
  44. % Text on the back cover
  45. \bookcovercomponent{normal}{back}[22mm,10mm,22mm,30mm]{
  46. {\centering\large ABSTRACTUM\\[5mm]}
  47. \lipsum[1-4]}
  48. \end{bookcover}
  49. % ----------------------------------------------------------------------
  50. % Inside cover
  51. % ----------------------------------------------------------------------
  52. \begin{bookcover}
  53. % Remark
  54. \bookcovercomponent{center}{above inside back}{
  55. \textcolor{red}{\textsc{Annales Mathematicae} book cover (inside)}}
  56. % Background color on the whole inside cover
  57. \bookcovercomponent{color}{bg whole}{blue!50}
  58. % Text on the inside back cover
  59. \bookcovercomponent{normal}{inside back}[22mm,10mm,22mm,30mm]{
  60. \color{white}
  61. {\centering\bfseries
  62. ANNALES MATHEMATICAE\\[3mm]
  63. Acta internationalis mathematicae\par}
  64. \bigskip
  65. \lipsum[1]}
  66. \end{bookcover}
  67. \end{document}