Skip to content

Instantly share code, notes, and snippets.

PS script for ordering citations

sample of literatura.tex file:

% Pro sazbu seznamu literatury použijte jednu z následujících možností
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%1) Seznam citací definovaný přímo pomocí prostředí literatura / thebibliography

\begin{literatura}{99}

Script for check files with vlna.exe

NO WARRANTIES alternative link for download vlna.exe http://vlna32.jdem.cz/ NO WARRANTIES

\begin{table}[!ht] %pozicia nech ti neuteka po texte
\centering
\caption{Štandardy W3C pre~WebAssembly} % popis + to čo sa zobrazi v TOC
\label{table:WasmW3C} % tymto sa odkazuješ
\begin{tabular}{c|c}
WebAssembly Core Specification & \url{https://www.w3.org/TR/wasm-core-1/} \\ \hline
WebAssembly JavaScript Interface & \url{https://www.w3.org/TR/wasm-web-api-1/} \\ \hline
WebAssembly Web API & \url{https://www.w3.org/TR/wasm-js-api-1/} \\
\end{tabular}
\end{table}
@PadreSVK
PadreSVK / wasm.tex
Created May 27, 2019 16:10
wasm.tex
\begin{frame}\frametitle{WebAssembly (WASM)}
\begin{columns}[T]
\begin{column}{0.68\textwidth}
%\begin{column}{0.75\textwidth}
\begin{itemize}
\item Nízkoúrovňový jazyk pre použitie (nielen) na Webe
\item Vytvorený ako \textbf{compilation target}
\item \textbf{Webový štandard} (W3C drafts)
\item Doplnková technológia k JavaScriptu
\end{itemize}
@PadreSVK
PadreSVK / wasm.tex
Created May 27, 2019 16:10
wasm.tex
\begin{frame}\frametitle{WebAssembly (WASM)}
\begin{columns}[T]
\begin{column}{0.68\textwidth}
%\begin{column}{0.75\textwidth}
\begin{itemize}
\item Nízkoúrovňový jazyk pre použitie (nielen) na Webe
\item Vytvorený ako \textbf{compilation target}
\item \textbf{Webový štandard} (W3C drafts)
\item Doplnková technológia k JavaScriptu
\end{itemize}
@PadreSVK
PadreSVK / wasm.tex
Created May 27, 2019 16:10
wasm.tex
\begin{frame}\frametitle{WebAssembly (WASM)}
\begin{columns}[T]
\begin{column}{0.68\textwidth}
%\begin{column}{0.75\textwidth}
\begin{itemize}
\item Nízkoúrovňový jazyk pre použitie (nielen) na Webe
\item Vytvorený ako \textbf{compilation target}
\item \textbf{Webový štandard} (W3C drafts)
\item Doplnková technológia k JavaScriptu
\end{itemize}
@PadreSVK
PadreSVK / wasm.tex
Created May 27, 2019 16:10
wasm.tex
\begin{frame}\frametitle{WebAssembly (WASM)}
\begin{columns}[T]
\begin{column}{0.68\textwidth}
%\begin{column}{0.75\textwidth}
\begin{itemize}
\item Nízkoúrovňový jazyk pre použitie (nielen) na Webe
\item Vytvorený ako \textbf{compilation target}
\item \textbf{Webový štandard} (W3C drafts)
\item Doplnková technológia k JavaScriptu
\end{itemize}
@PadreSVK
PadreSVK / original.csproj
Created June 20, 2019 14:09
Original csproj generated from default template in visual studio and from dotnet CLI
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.2</TargetFramework>
</PropertyGroup>
<ItemGroup>
<!--Include Views-->
<Content Include="**/*.dothtml" Exclude="obj/**/*.*;bin/**/*.*">
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
</Content>
<!--Include MasterPage Views-->
@PadreSVK
PadreSVK / original.csproj
Created June 20, 2019 14:15
part of dotvvm csproj to simplify
<ItemGroup>
<!--Include Views-->
<Content Include="**/*.dothtml" Exclude="obj/**/*.*;bin/**/*.*">
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
</Content>
<!--Include MasterPage Views-->
<Content Include="**/*.dotmaster" Exclude="obj/**/*.*;bin/**/*.*">
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
</Content>
<!--Include Custom Control Views-->
@PadreSVK
PadreSVK / original.csproj
Last active June 28, 2019 12:56
simplified version of dotvvm csproj part 1
<ItemGroup>
<Content Include="**/*.dothtml;**/*.dotmaster;**/*.dotcontrol" Exclude="obj/**/*.*;bin/**/*.*" CopyToPublishDirectory="Always" />
</ItemGroup>