Moves templates for use with git stow
This commit is contained in:
parent
1571ddf953
commit
8ba6d2dc06
9 changed files with 1 additions and 0 deletions
33
templates/Templates/article.latex
Normal file
33
templates/Templates/article.latex
Normal file
|
@ -0,0 +1,33 @@
|
|||
\documentclass[12pt]{article}
|
||||
|
||||
\usepackage{geometry} % Required for adjusting page dimensions
|
||||
\usepackage{amsmath}
|
||||
\usepackage{amsthm}
|
||||
\usepackage{amssymb}
|
||||
\usepackage{amsfonts}
|
||||
\usepackage{longtable}
|
||||
\usepackage{booktabs}
|
||||
\usepackage[UKenglish]{babel}
|
||||
\geometry{
|
||||
paper=a4paper, % Change to letterpaper for US letter
|
||||
top=3cm, % Top margin
|
||||
bottom=1.5cm, % Bottom margin
|
||||
left=4.5cm, % Left margin
|
||||
right=4.5cm, % Right margin
|
||||
%showframe, % Uncomment to show how the type block is set on the page
|
||||
}
|
||||
|
||||
\title{<++>}
|
||||
\author{Jonathan Hodgson}
|
||||
\date{\today}
|
||||
|
||||
|
||||
\begin{document}
|
||||
\maketitle
|
||||
|
||||
|
||||
\section{<++>}
|
||||
<++>
|
||||
|
||||
|
||||
\end{document}
|
9
templates/Templates/fpldoc.md
Normal file
9
templates/Templates/fpldoc.md
Normal file
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
author-meta: Fellowship Productions Ltd
|
||||
title-meta: <++>
|
||||
subject: <++>
|
||||
keywords:
|
||||
- <++>
|
||||
- <++>
|
||||
---
|
||||
# <++>
|
12
templates/Templates/html
Normal file
12
templates/Templates/html
Normal file
|
@ -0,0 +1,12 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title><++></title>
|
||||
<++>
|
||||
</head>
|
||||
<body>
|
||||
<++>
|
||||
</body>
|
||||
</html>
|
||||
|
1
templates/Templates/latex
Symbolic link
1
templates/Templates/latex
Symbolic link
|
@ -0,0 +1 @@
|
|||
article.latex
|
37
templates/Templates/letter.latex
Normal file
37
templates/Templates/letter.latex
Normal file
|
@ -0,0 +1,37 @@
|
|||
\documentclass[12pt,stdletter,orderfromtodate,sigleft,a4paper,dateleft,addrfromemail,addrfromphone]{newlfm}
|
||||
\usepackage{blindtext, xfrac}
|
||||
\usepackage{longtable}
|
||||
\usepackage{booktabs}
|
||||
\usepackage[UKenglish]{babel}
|
||||
|
||||
\newcommand{\latex}{\LaTeX}
|
||||
|
||||
\newlfmP{dateskipbefore=20pt}
|
||||
\newlfmP{sigsize=20pt}
|
||||
\newlfmP{sigskipbefore=50pt}
|
||||
|
||||
\newlfmP{Headlinewd=0pt,Footlinewd=0pt}
|
||||
|
||||
\namefrom{Jonathan Hodgson}
|
||||
\addrfrom{***REMOVED*** \\
|
||||
}
|
||||
\phonefrom{***REMOVED***}
|
||||
\emailfrom{jonathan@lunarweb.co.uk}
|
||||
|
||||
\nameto{<+Recipient Name+>}
|
||||
\addrto{%
|
||||
<+Recipient Address+>
|
||||
}
|
||||
|
||||
\dateset{\today}
|
||||
\regarding{<+Subject+>}
|
||||
|
||||
\greetto{<+Dear Sir or Madam+>}
|
||||
\closeline{Yours sincerely,} %Sincerly if you know the name. Failthfully if you don't
|
||||
|
||||
\begin{document}
|
||||
\begin{newlfm}
|
||||
|
||||
<+Message+>
|
||||
\end{newlfm}
|
||||
\end{document}
|
29
templates/Templates/letter.md
Normal file
29
templates/Templates/letter.md
Normal file
|
@ -0,0 +1,29 @@
|
|||
---
|
||||
address:
|
||||
- Address Line 1
|
||||
- Address Line 2
|
||||
- Address Line 3
|
||||
- Post Code
|
||||
# return-address # From Address. You can use \email for auto configured email
|
||||
# cc
|
||||
# ps
|
||||
#encl:
|
||||
#- cv
|
||||
#- another letter
|
||||
#opening: Dear Bob,
|
||||
# closing
|
||||
#subject: My Subject
|
||||
# colorlinks: true
|
||||
# date: 1st January 2018
|
||||
# numbersections: true
|
||||
...
|
||||
|
||||
This is my letter
|
||||
|
||||
\blindtext
|
||||
|
||||
This is my letter
|
||||
|
||||
This is my letter
|
||||
|
||||
This is my letter
|
60
templates/Templates/oldletter.latex
Normal file
60
templates/Templates/oldletter.latex
Normal file
|
@ -0,0 +1,60 @@
|
|||
%----------------------------------------------------------------------------------------
|
||||
% DOCUMENT CONFIGURATION
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\documentclass[12pt,a4paper,stdletter,sigleft]{newlfm} % 10pt font size default, 11pt and 12pt are also possible
|
||||
|
||||
|
||||
%\longindentation=0pt % Un-commenting this line will push the closing "Sincerely," to the left of the page
|
||||
|
||||
|
||||
\usepackage[T1]{fontenc} % Output font encoding for international characters
|
||||
\usepackage[utf8]{inputenc} % Required for inputting international characters
|
||||
\usepackage[UKenglish]{babel}
|
||||
\usepackage{stix} % Use the Stix font by default
|
||||
|
||||
\usepackage{microtype} % Improve justification
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% YOUR NAME & ADDRESS SECTION
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\signature{Jonathan Hodgson} % Your name for the signature at the bottom
|
||||
|
||||
\address{***REMOVED*** \\ ***REMOVED***} % Your address and phone number
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\begin{document}
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% ADDRESSEE SECTION
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\begin{letter}{<++>} % Name/title of the addressee{Recipient Name \\ Recipient Address}
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% LETTER CONTENT SECTION
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\opening{\textbf{Dear Sir or Madam,}}
|
||||
|
||||
<++>
|
||||
|
||||
Thank you for your time and consideration.
|
||||
|
||||
I look forward to your reply.
|
||||
|
||||
\vspace{2\parskip} % Extra whitespace for aesthetics
|
||||
\closing{Yours failthfully,}
|
||||
\vspace{2\parskip} % Extra whitespace for aesthetics
|
||||
|
||||
%\ps{P.S. You can find additional information attached to this letter.} % Postscript text, comment this line to remove it
|
||||
|
||||
%\encl{Copyright permission form} % Enclosures with the letter, comment this line to remove it
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\end{letter}
|
||||
|
||||
\end{document}
|
22
templates/Templates/wp.gitignore
Normal file
22
templates/Templates/wp.gitignore
Normal file
|
@ -0,0 +1,22 @@
|
|||
.DS_Store
|
||||
error_log
|
||||
*.swp
|
||||
*.old
|
||||
php.ini
|
||||
.ftpquota
|
||||
\google*.html
|
||||
phpinfo.php
|
||||
Thumbs.db
|
||||
robots.txt
|
||||
*.log
|
||||
styles.min.css.map
|
||||
wp-config.php
|
||||
node_modules/
|
||||
.gruntConfig.json
|
||||
/.htaccess
|
||||
/wp-content/uploads/
|
||||
iconsfont/
|
||||
*.min.css
|
||||
*.min.js
|
||||
*.css.map
|
||||
*.js.map
|
Loading…
Add table
Add a link
Reference in a new issue