New answers tagged templates
2
Seeing document properties, the "skinny" font is identified as CMDUNH10, so you can say something like
\documentclass{article}
\usepackage[margin=2cm]{geometry}
\usepackage[T1]{fontenc}
\newcommand\lgh{\fontsize{17}{21}\usefont{T1}{cmdh}{m}{n}}
\newcommand\myrule{\par\noindent\rule{\textwidth}{4pt}\par}
\begin{document}
\myrule\medskip
\noindent{\lgh ...
7
Here you go. My code is a mild extension of this answer by Paul Gaborit.
Code
\documentclass{article}
\usepackage{tikz}
\pagestyle{empty}
\newcommand\genkoyoshi[4]{%
\def\rowopacities{#1}%
\def\colnames{#2}%
\def\size{#3}%
\def\sep{#4}%
\begin{tikzpicture}[yscale=-1]
\pgfmathsetmacro{\inc}{\size+\sep}
\newcounter{col}
\newcounter{row}
...
4
I found a suitable basis in How to color the font of a single row in a table?
\documentclass{article}
\usepackage{tabu}
\usepackage{xcolor}
\begin{document}
\begin{tabu}{ |l|l| l| l| l| } \hline
\rowfont{\color{gray!90}} 0 & 1 & 2 & 3 & 4 \\ \hline
\rowfont{\color{gray!80}} 1 & A & B & C & D \\ \hline
...
0
The following
\usepackage[greek,english]{babel}
\usepackage[utf8x]{inputenc}
should work.
2
The template can be compiled as long as you have all the needed fonts installed.
As you can read in the template preamble:
% This template uses several fonts not included with Windows/Linux by
% default. If you get compilation errors saying a font is missing, find the line
% on which the font is used and either change it to a font included with your
% ...
0
Here is a minimal working example that should do what you want. It isn't exact, but when I tried it with some previously published text the output was basically identical, bar the odd word running onto the next line.
To use, simply paste all the following into a latex file and run. I'd be keen to hear how anybody gets on with this.
% Version: 1.0.0 ...
1
Some changes to the way \maketitle is defined by the class are necessary. Do not modify the original .cls file, though; you can either use the redefinition in your .tex document, as I did in my example code below (notice the section between \makeatletter, \makeatother commands), or make a copy of acmlarge.cls, call it myacmlarge.cls and replace the ...
2
A lot depends on your intentions.
If you intend to submit your novel to agents and publishers, then I don't think LaTeX (as such) would be either necessary or a very good plan. Outside the fields where LaTeX is commonly used, that is not the format that publishers are going to want your novel in. Word is probably the most commonly used format, though they ...
3
The memoir package has a nice selection of built-in styles for chapter headings. It's also got a number of other features a novelist might want. Also, if you use it with LuaTeX then you can use system fonts easily and some advanced typographic features like microtype and selnolig. I consider all four of those features required usage for a novel (at least ...
1
Your code is not optimized. I also didn't have much time to go further. But I did some changes. See if it looks better.
\documentclass[12pt,twoside,letterpaper]{report}
\usepackage[text={4.95in,7.5in},centering,bottom=1.5in,showframe]{geometry}
\usepackage[dvipsnames]{xcolor}
\usepackage{calc}
\usepackage[explicit]{titlesec}
\usepackage{fancyhdr}
...
3
To achieve your goals, your document structure should resemble:
\documentclass[..,honors,etd,openany,..]{BYUPhys}
\let\oldToC\tableofcontents
\renewcommand{\tableofcontents}{{% Remove ToC entries
\renewcommand{\addcontentsline}[3]{}\oldToC}}
\let\oldmakepreliminarypages\makepreliminarypages
\renewcommand{\makepreliminarypages}{{% Remove ToC entries
...
0
Add \usepackage{xcolor} after \documentclass and your source will compile.
\documentclass[osd, hvmath]{copernicus_discussions} %Ocean Science Discussion
\usepackage{xcolor}
\begin{document}
\linenumbers
...
4
I tried to do something similar for a packtpub book and you can see the result: http://phobos.xtec.cat/jqueralt/IMG/pdf/packtpub.pdf.
If you like it, feel free to adapt to your needs. The code is here: http://phobos.xtec.cat/jqueralt/IMG/tex/packtpub.tex
3
Here is a proof of concept of how to handle the table (inspired by How to make tabularx columns using \whiledo?)
\documentclass{article}
\usepackage{tabularx}
\usepackage{xcolor}
\usepackage{colortbl}
\usepackage{etoolbox}
\newcounter{index}
\newcounter{temp}
\newcounter{currentline}
\newcounter{numberoflines}
%% This create a command \Line to print a row ...
1
Apologies for just giving links, but I suspect that your best bet will be to find some excel format workout logs (this page has some nice examples but it's the sort of thing where it's probably best to roll your own) and then put them though one of the methods suggested in Comprehensive list of tools that simplify the generation of LaTeX tables...
2
The question is general so is my answer.
Assumptions - less likely
you have finished your document (e.g., thesis) and will not change your document much;
... AND ...
you know roughly about LaTeX, BibTeX, Makeidx etc.;
Suggestion:
The fastest way to use the required LaTeX styles is to export all your LyX documents to LaTeX. It might be safer to create a ...
3
use package invoice: http://www.ctan.org/pkg/invoice It works well for me.
Top 50 recent answers are included


