-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev'
- Loading branch information
Showing
83 changed files
with
4,628 additions
and
1,193 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
## Core latex/pdflatex auxiliary files: | ||
*.aux | ||
*.lof | ||
*.log | ||
*.lot | ||
*.fls | ||
*.out | ||
*.toc | ||
|
||
## Intermediate documents: | ||
*.dvi | ||
# these rules might exclude image files for figures etc. | ||
# *.ps | ||
# *.eps | ||
|
||
## Bibliography auxiliary files (bibtex/biblatex/biber): | ||
*.bbl | ||
*.bcf | ||
*.blg | ||
*-blx.aux | ||
*-blx.bib | ||
*.run.xml | ||
|
||
## Build tool auxiliary files: | ||
*.fdb_latexmk | ||
*.synctex.gz | ||
*.pdfsync | ||
|
||
## Auxiliary and intermediate files from other packages: | ||
|
||
# algorithms | ||
*.alg | ||
*.loa | ||
|
||
# amsthm | ||
*.thm | ||
|
||
# beamer | ||
*.nav | ||
*.snm | ||
*.vrb | ||
|
||
# glossaries | ||
*.acn | ||
*.acr | ||
*.glg | ||
*.glo | ||
*.gls | ||
|
||
# hyperref | ||
*.brf | ||
|
||
# listings | ||
*.lol | ||
|
||
# makeidx | ||
*.idx | ||
*.ilg | ||
*.ind | ||
*.ist | ||
|
||
# minitoc | ||
*.maf | ||
*.mtc | ||
*.mtc0 | ||
|
||
# minted | ||
*.pyg | ||
|
||
# nomencl | ||
*.nlo | ||
|
||
# todonotes | ||
*.tdo | ||
|
||
# xindy | ||
*.xdy | ||
# workspace files are user-specific | ||
*.sublime-workspace | ||
|
||
# project files should be checked into the repository, unless a significant | ||
# proportion of contributors will probably not be using SublimeText | ||
# *.sublime-project |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
Este arquivo contém exemplos para escrita dos resumos requeridos pelo | ||
MIEIC: | ||
- resumo-pt.tex - junto com a Makefile produz resumo-pt.pdf | ||
- Makefile - para ser usada com o pdflatex | ||
- resumo-pt.pdf - resultado final em PDF | ||
- para a versão em Inglês é necessário alterar a Makefile, o .tex | ||
nos sítios assinalados e, obviamente, o texto | ||
- os ficheiros usam a codificação UTF-8; para outras codificações | ||
é necessário alterar \usepackage[utf8]{inputenc} para a codificação | ||
usada. | ||
- é necessário usar uma versão recente do pacote caption (por exemplo, | ||
procurar no CTAN uma com "\ProvidesPackage{caption}[2008/08/24 v3.1j", | ||
ou mais recente | ||
|
||
JCL, Mon Jul 6 23:39:47 2009 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
# | ||
# Makefile for feupteses/feupthesis | ||
# | ||
# Version: Sat May 17 22:36:50 2008 | ||
# Written by JCL | ||
# | ||
|
||
# orelse | ||
# | ||
# latexmk completely automates the process of generating a LaTeX document. | ||
# Given the source files for a document, latexmk issues the appropriate | ||
# sequence of commands to generate a .dvi, .ps, .pdf or hardcopy version | ||
# of the document | ||
# | ||
# latexmk $TARGET.tex -bibtex -pdf -recorder -pvc | ||
|
||
## Basename for result in PT | ||
#TARGET=resumo | ||
|
||
## Basename for result in EN | ||
TARGET=abstract | ||
|
||
## programs | ||
LATEX=latex | ||
PDFLATEX=pdflatex | ||
BIBTEX=bibtex | ||
DVIDVI=dvidvi -m '2:0(3mm,-14mm),1(193mm,-14mm)' | ||
DVIPS=dvips -Ppdf | ||
DVI2PS=dvips -t landscape -x 707 | ||
PS2PDF=ps2pdf -dEmbedAllFonts#true | ||
MKIDX=makeindex | ||
|
||
## .tex files | ||
TEXFILES=$(wildcard *.tex **/*.tex) | ||
|
||
## BibTeX files | ||
BIB=$(wildcard *.bib) | ||
|
||
## paper | ||
PAPERSIZE=a4 | ||
|
||
main: $(TARGET).pdf | ||
|
||
index: | ||
$(MKIDX) $(TARGET) | ||
|
||
biblio: | ||
$(BIBTEX) $(TARGET) | ||
|
||
.tex.pdf: | ||
rm -f $(TARGET).pdf | ||
$(PDFLATEX) $< $@ || { rm -f $*.aux $*.idx && false ; } | ||
if grep 'There were undefined references' $*.log ; then \ | ||
$(BIBTEX) $(TARGET); $(PDFLATEX) $< $@; fi | ||
while grep 'Rerun to get cross-references right.' $*.log ; do \ | ||
$(PDFLATEX) $< $@ || { rm -f $*.aux $*.idx && false ; } ; done | ||
|
||
.tex.dvi: | ||
rm -f $*.ps $*.pdf | ||
$(LATEX) $< || { rm -f $*.dvi $*.aux $*.idx && false ; } | ||
if grep 'There were undefined references' $*.log ; then \ | ||
$(BIBTEX) $(TARGET); $(LATEX) $< $@; fi | ||
while grep 'Rerun to get cross-references right.' $*.log ; do \ | ||
$(LATEX) $< || { rm -f $*.dvi $*.aux $*.idx && false ; } ; done | ||
|
||
.dvi.ps: | ||
$(DVIPS) -t $(PAPERSIZE) $< -o $@ | ||
|
||
.dvi.dvi2: | ||
$(DVIDVI) $< $@ | ||
|
||
.dvi2.ps2: | ||
$(DVI2PS) $< -o $@ | ||
|
||
.ps.pdf: | ||
$(PS2PDF) $< $@ | ||
|
||
$(TARGET).pdf: $(TEXFILES) | ||
$(TARGET).dvi: $(TEXFILES) | ||
$(TARGET).ps: $(TARGET).dvi | ||
$(TARGET).ps2: $(TARGET).dvi2 | ||
$(TARGET).dvi2: $(TARGET).dvi | ||
|
||
## Extensions | ||
EXTS=aux toc idx ind ilg log out lof lot lol bbl blg | ||
|
||
##clean | ||
clean: | ||
for EXT in ${EXTS}; do \ | ||
find `pwd` -name \*\.$${EXT} -exec rm -v \{\} \; ; done | ||
|
||
##show PDF | ||
display: $(TARGET).pdf | ||
acroread $(TARGET).pdf & | ||
|
||
### misc | ||
.SUFFIXES: .tex .aux .toc .lof .lot .log .dvi .dvi2 .ps .ps2 .pdf .bib .bbl |
Binary file not shown.
Oops, something went wrong.