feat: add rules from Druk to Zrodlo rysunku included

This commit is contained in:
Krzysztof Rudnicki 2022-08-20 18:44:56 +02:00
parent df774dbc8a
commit 47401e9368
2 changed files with 64 additions and 5 deletions

Binary file not shown.

View File

@ -1,18 +1,70 @@
\documentclass{report}
\documentclass[a4paper,11pt,twoside]{report}
% From specification:
% kroj bezszeryfowy rozmiar 11
% Druk dwustronny A4
\usepackage{fontspec}
\usepackage{anyfontsize}
\usepackage{graphicx}
\usepackage{geometry}
\usepackage{leading}
\usepackage{titleps}
% From specification:
% Tytuł tabeli
% Umieszczony nad tabelą (manually by setting caption above table)
% Justowany do lewej -> raggedright
% Czcionka bezszeryfowa rozmiar 9 -> footnotesize (see: https://www.sascha-frank.com/latex-font-size.html)
% Podpis rysunku -> pod rysunkiem (manually by setting caption below table)
% Źródło rysunku/tabeli -> Pod rysunkiem lub tabelą (manually by setting caption below table)
\usepackage[font=footnotesize, justification=raggedright]{caption}
% From specification:
% Numeracja tabel i rysunków:
% Ciagła w całej pracy <-----
% Kolejna w rozdziałach
\usepackage{chngcntr}
\counterwithout{figure}{chapter}
\counterwithout{table}{chapter}
% From specification:
% Odwołania do źródeł
% Styl numeracyjny wg normy PW
% OR Styl Harwardzki <-----
% Bibliografia w układzie alfabetycznych wg nazwisk autorów (has to be ensured manually)
\usepackage{natbib}
\bibliographystyle{agsm}
% From specification:
% Numeracja stron:
% U dolu
% Po zewnetrznej stronie
% Odbicie lustrzane na stronach parzystych i nie parzystych
\renewpagestyle{plain}{%
\sethead{}{}{}
\setfoot[\thepage][][]{}{}{\thepage}
}%
\pagestyle{plain}
% From specification:
% kroj bezszeryfowy rozmiar 11
\renewcommand{\familydefault}{\sfdefault}
% From specification:
% Akapit wciecie 0.5 cm <-----
% OR bez wciecia z odstepem 4 przed akapitem
\setlength{\parindent}{0.5cm}
% From specification:
% Marginesy:
% wewnetrzny - 30 mm
% Zewnetrzny - 20 mm
% Gorny/dolny - 25 mm
\geometry{
inner=30mm,
inner=30mm,
outer=20mm,
top=25mm,
bottom=25mm,
@ -80,7 +132,7 @@
{\fontsize{11.99}{11.99}\helveticaLight konsultacje }
{\fontsize{11.99}{11.99}\helvetica dr hab. inż. Tomasz Martyn \\[46pt]}
{\fontsize{11.99}{11.99}\helvetica dr hab. inż. Tomasz Martyn \\[40pt]}
{\fontsize{11.99}{11.99}\helveticaLight Warszawa 2023 }
\end{center}
@ -89,4 +141,11 @@
\end{titlepage}
\begin{table}
\caption {Table Title}
taest
\end{table}
\end{document}