#Recreating a Latex template
1 messages · Page 1 of 1 (latest)
I hope someone can help me with this
I already somehow recreated the title sheet, but I think it can be improved quite a bit:
#let report(
title: "",
author: [],
phone: "",
email: "",
course: "",
main_color: main_color,
heading_color: heading_color,
job_color: job_color,
body
) = {
set document(author: author, title: title)
set page(numbering: none, margin: (x: 20pt, y: 20pt))
// set text(font: "Rounded Mplus 1c", lang: "en")
// set text(font: "Ubuntu", lang: "en")
// set text(font: "Helvetica", lang: "en")
set text(font: "Times New Roman", lang: "en")
show math.equation: set text(weight: 400)
align(
center,
[
#place(
top + left,
dx: 18mm,
dy: 8mm,
image(height: 35pt, "images/IES-logo.svg")
)
#place(
top + right,
dx: -18mm,
dy: 10mm,
image(height: 40pt, "images/UFR-logo.svg")
)
]
)
v(70pt)
align(
center,
line(length: 85%, stroke: 3pt)
)
// Course
v(50pt)
align(
center,
text(size: medium_title, course)
)
// Authors
v(50pt)
align(
center,
text(size: medium_title, [#author])
)
// Main title
v(100pt)
align(
center,
text(size: title_size, weight: 300, title)
)
// Copyright
v(230pt)
align(
center,
text(size: small_title_size, "by © Intelligent Embedded Systems Lab")
)
v(50pt)
align(
center,
line(length: 85%, stroke: 3pt)
)
align(center)[
#box(
width: 85%,
align(left)[
#set text(size: small_title_size)
*Date*: December 3, 2024\
*Supervisors*: Prof. Dr. Oliver Amft, Addythia Saphala
]
)
]
set page(
header: [
#line(length: 85%)
]
)
// Main body.
set par(justify: true, leading: 0.5em)
body
}
I mean the title page is not that significant anymore, but if you could help me recreate the rest it would be very helpful
And mainly I mean the header and footer with the line and stuff