I have started to build a TeXniC project for a c.v. "template". I managed to solve all problems I encountered - more or less elegantly - except two:
1. I would like to enter author, title and subject etc information in the main .tex file so that this is written as meta information to the PDF upon generating it. I have tried \author, \pdfauthor and \pdfinfo, none of that seems to work.
2. This might be a tough one:
The way I built this project is that I have one .sty file which contains the following (only the relevant stuff):
Code: Select all
\usepackage{fullpage}
\usepackage{longtable}
\renewcommand\section{\@startsection {section}{1}{\z@}
{-3.5ex \@plus -1ex \@minus -.2ex}
{2.3ex \@plus.2ex}
\newenvironment{envtable}[1]
\begin{longtable}
{@{} p{.23\textwidth} | @{\hskip .02\textwidth} p{.30\textwidth} | @{\hskip .02\textwidth} p{.35\textwidth} }}
{\end{longtable}\vskip 0.5cm}
Code: Select all
\begin{envtable}{tablename}
first column & second column & third column
\end{envtable}

I would greatly appreciate any help with these two problems. Thanks!