1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
% do-vimlatex-onwrite
\documentclass[]{article}
\usepackage[utf8]{inputenc}
\usepackage{siunitx}
\usepackage[slovene]{babel}
\usepackage[inline]{enumitem}
\usepackage[a4paper, total={7in, 10in}]{geometry}
\usepackage{hologo}
\usepackage[hidelinks,unicode]{hyperref}
\usepackage{datetime}
\usepackage{tkz-euclide}
\sisetup{output-decimal-marker = {,}, quotient-mode=fraction, per-mode=fraction} % per-mode=symbol
\settimeformat{hhmmsstime}
\newcommand{\razhroscevanje}{1}
\makeatletter
\newcommand{\xslalph}[1]{\expandafter\@xslalph\csname c@#1\endcsname}
\newcommand{\@xslalph}[1]{%
\ifcase#1\or a\or b\or c\or \v{c}\or d\or e\or f\or g\or h\or i%
\or j\or k\or l\or m\or n\or o\or p\or r\or s\or \v{s}%
\or t\or u\or v\or z\or \v{z}
\else\@ctrerr\fi%
}
\AddEnumerateCounter{\xslalph}{\@xslalph}{m}
\makeatother
\title{Naloga: Sile na klancu in lepenje}
\author{Anton Luka Šijanec, 3. a}
\begin{document}
\maketitle
\begin{abstract}
Rešitev ponedeljkove naloge pri maturitetni fiziki.
\end{abstract}
\tableofcontents
\section{Naloga}
\begin{center}
\begin{tikzpicture}
\tkzDefPoint(0,0){A} \tkzDefPoint(1,0){B} \tkzDefPoint(25:3){C}
\tkzInterLC(C,A)(C,A) \tkzGetPoints{D}{D2} \tkzInterLC(A,C)(D,C) \tkzGetPoints{E2}{E}
\tkzInterCC(E,C)(C,E) \tkzGetPoints{F2}{F} \tkzInterCC(A,D)(D,A) \tkzGetPoints{G}{G2}
\tkzDefMidPoint(C,G) \tkzGetPoint{H} \tkzDefMidPoint(D,F) \tkzGetPoint{I}
\tkzDefMidPoint(C,I) \tkzGetPoint{J} \tkzDefShiftPointCoord[J](-90:4){K}
\tkzDefLine[parallel=through K](A,C) \tkzGetPoint{L}
\tkzDefMidPoint(C,D) \tkzGetPoint{M} \tkzInterLL(J,M)(K,L) \tkzGetPoint{N}
\tkzDefMidPoint(C,H) \tkzGetPoint{O} \tkzDefLine[parallel=through K](C,O)
\tkzGetPoint{P} \tkzInterLL(P,K)(O,J) \tkzGetPoint{R}
\tkzDefMidPoint(J,K) \tkzGetPoint{S}
\tkzDrawLine[add = 5 and 6](A,B) \tkzDrawLine[add = 0 and 0](A,E)
\tkzDrawLine[dotted](K,N) \tkzDrawLine[dotted](R,K)
\tkzMarkRightAngles(R,J,N C,M,N)
\tkzDrawPolygon[fill=red!30, opacity=.3](C,D,I,H)
\tkzFillAngle[fill=green!30, opacity=.3, size=3](B,A,C) \tkzLabelAngle[pos=2](B,A,C){$\alpha$}
\tkzDrawSegments[->](J,K) \tkzLabelLine[left, pos=.69](J,K){$\vec{F_g}$}
\tkzDrawSegments[->](J,N) \tkzLabelLine[above right](J,N){$\vec{F_s}$}
\tkzDrawSegments[->](J,R) \tkzLabelLine[above](J,R){$\vec{F_d}$}
\tkzDrawPoint[shape=cross out, color=red, size=12](S)
\if\razhroscevanje1
%\tkzDrawPoints(A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,R,S)
%\tkzLabelPoints(A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,R,S)
\fi
\end{tikzpicture}
\end{center}
\section{Rešitev}
\section{Zaključek}
\hologo{LaTeX} izvorna koda dokumenta je objavljena na \url{https://git.sijanec.eu/sijanec/sola-gimb-3}. Za izdelavo dokumenta je potreben \texttt{TeXLive 2020}.
\if\razhroscevanje1
\vfill
\section*{Razhroščevalne informacije}
Te informacije so generirane, ker je omogočeno razhroščevanje. Pred objavo dokumenta izklopite razhroščevanje. To naredite tako, da nastavite ukaz \texttt{razhroščevanje} na 0 v začetku dokumenta.
Konec generiranje dokumenta \today\ ob \currenttime.
Dokument se je generiral R0qK1KR2 \SI{}{\second}. % aaasecgeninsaaa
\fi
\end{document}
|