Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jriguera/pfc-fic-udc
Plantilla estándar LaTeX para memoria PFC en la Facultad de Informática de la Universidad de A Coruña. Standard LaTeX template for FYP report/book. Universidad de A Coruña
https://github.com/jriguera/pfc-fic-udc
fics latex pfc projecto udc
Last synced: about 14 hours ago
JSON representation
Plantilla estándar LaTeX para memoria PFC en la Facultad de Informática de la Universidad de A Coruña. Standard LaTeX template for FYP report/book. Universidad de A Coruña
- Host: GitHub
- URL: https://github.com/jriguera/pfc-fic-udc
- Owner: jriguera
- License: apache-2.0
- Created: 2014-09-13T23:10:51.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-06-07T22:30:37.000Z (over 9 years ago)
- Last Synced: 2024-04-30T10:25:38.588Z (7 months ago)
- Topics: fics, latex, pfc, projecto, udc
- Language: TeX
- Homepage:
- Size: 590 KB
- Stars: 8
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
pfc-fic-udc
===========Plantilla latex para el Proyecto Fin de Carrera de la Facultad de
Informática de la Universidad de A Coruña.Standard LaTeX template for final degree report/book project in FIC,
(Facultad de Informática) at UDC (Universidad de A Coruña)# Package Dependencies (Ubuntu 14.04)
* texlive
* texlive-latex-extra
* texlive-extra-utils
* texlive-latex-recommended
* texlive-bibtex-extra
* texlive-science
* texlive-pictures
* texlive-lang-spanish
* latexmk
* aspell
* aspell-es
* make_latexmk_ is not the same package as _latex-mk_. This one is a perl script
useful to use it in a standard _Makefile_. _aspell_ is an optional package
for spelling checks.# Source tex structure (`src`):
The main document where the most important variables or macros are defined
is _pfc.tex_. The style, dependencies and other macros are defined in _pfc.sty_,
but you won't need to change it.Tex files with prefix _pfc_*_ are defining the root structure of the document,
that is, the mandatory parts of the book: cover, thanks, table of contents,
glossary, bibliography, etc.The rest of the tex files are the chapters of the report.
If you want to define glosary or acronym entries, you have to edit the file
`pfc.glossary`, the same applies for the bibliography using the file `pfc.bib`.The default folder to include all the pictures is `images`.
# Use
Just edit the macros to define title, author, ... in the file `pfc.tex`.
You can also add or remove includes for each chapter.## Compile and generate PDF
If you have installed _latexmk_ and _make_ just type `make`:
```
jriguera@packard:~/devel/personal/pfc-udc/src$ make
latexmk -pdf -pdflatex="pdflatex" -use-make pfc.tex
Latexmk: This is Latexmk, John Collins, 11 Nov. 2012, version: 4.35.
**** Report bugs etc to John Collins . ****
Latexmk: applying rule 'pdflatex'...
Rule 'pdflatex': Rules & subrules not known to be previously run:
pdflatex
Rule 'pdflatex': The following rules & subrules became out-of-date:
'pdflatex'
------------...
Output written on pfc.pdf (41 pages, 294604 bytes).
Transcript written on pfc.log.
Latexmk: Found input bbl file 'pfc.bbl'
Latexmk: Log file says output to 'pfc.pdf'
Latexmk: Found bibliography file(s) [pfc.bib]
Latexmk: All targets (pfc.pdf) are up-to-date
```You can have a look to the example pdf file `pfc.pdf`.
## Spelling
Type `make spell` to check all tex files.
## Cleaning
To clean up (remove) all regeneratable files generated by latex and bibtex: `make clean`
To clean up all generated files (except the _*.tex_, _*.sty_ and _Makefile_: `make dist-clean`# Author
José Riguera López