Commit d6490b5fb5d4c84a57c71ad5092c7c6a23abcda5

Authored by Arthur HUGEAT
1 parent 970e2bac62
Exists in master

Ajout d'un premier brouillon du poster (pas complet).

Showing 5 changed files with 130 additions and 6 deletions Inline Diff

ifcs2018.aux 1 1 ifcs2018.aux
ifcs2018.bbl 2 2 ifcs2018.bbl
ifcs2018.blg 3 3 ifcs2018.blg
ifcs2018.log 4 4 ifcs2018.log
ifcs2018.out 5 5 ifcs2018.out
ifcs2018.pdf 6 6 ifcs2018.pdf
7
8 ifcs2018_poster.aux
9 ifcs2018_poster.log
10 ifcs2018_poster.out
11 ifcs2018_poster.pdf
12
*.bak 7 13 *.bak
# source: https://tex.stackexchange.com/questions/40738/how-to-properly-make-a-latex-project 1 1 # source: https://tex.stackexchange.com/questions/40738/how-to-properly-make-a-latex-project
2 2
TEX = pdflatex -shell-escape -interaction=nonstopmode -file-line-error 3 3 TEX = pdflatex -shell-escape -interaction=nonstopmode -file-line-error
BIB = bibtex 4 4 BIB = bibtex
TARGET = ifcs2018 5 5 TARGET = ifcs2018
6 6
.PHONY: all view 7 7 all: $(TARGET) $(TARGET)_poster
8 8
all : $(TARGET).pdf 9 9 view: $(TARGET)
10
view : 11
evince $(TARGET).pdf 12 10 evince $(TARGET).pdf
13 11
$(TARGET).pdf : $(TARGET).tex references.bib 14 12 view_poster: $(TARGET)_poster
13 evince $(TARGET)_poster.pdf
14
15 $(TARGET): $(TARGET).tex references.bib
$(TEX) $(TARGET).tex 15 16 $(TEX) $(TARGET).tex
$(BIB) $(TARGET) 16 17 $(BIB) $(TARGET)
$(TEX) $(TARGET).tex 17 18 $(TEX) $(TARGET).tex
$(TEX) $(TARGET).tex 18 19 $(TEX) $(TARGET).tex
19 20
21 $(TARGET)_poster:
22 $(TEX) $@.tex
23 $(TEX) $@.tex
24
clean: 20 25 clean:
rm -f $(TARGET).aux $(TARGET).log $(TARGET).out $(TARGET).bbl $(TARGET).blg 21 26 rm -f $(TARGET).aux $(TARGET).log $(TARGET).out $(TARGET).bbl $(TARGET).blg
27 rm -f $(TARGET)_poster.aux $(TARGET)_poster.log $(TARGET)_poster.out
File was created 1 \documentclass[a4paper]{article}
2 \usepackage[usenames,dvipsnames]{color}
3 \usepackage[english]{babel}
4 \usepackage{url,graphicx,enumitem,enumitem}
5
6 \definecolor{title_color}{rgb}{0.050980, 0.325490, 0.580392}
7
8 \newcommand{\newsection}[1] {
9 {\color{title_color}\section*{#1}}
10 }
11
12 \newcommand{\addblock}[2] {
13 \begin{minipage}[t]{#1}
14 #2
15 \end{minipage}
16 }
17
18 \newcommand{\addalignedblock}[3] {
19 \begin{minipage}[c]{#1}
20 \begin{#2}
21 #3
22 \end{#2}
23 \end{minipage}
24 }
25
26 \textheight=29.7cm
27 \topmargin=-3.6cm
28 \oddsidemargin=-2cm
29 \textwidth=19.5cm
30 \pagestyle{empty}
31
32 \begin{document}
33
34 % Title
35 \begin{center}
36 \textbf{{\scshape
37 \Large\color{OliveGreen}
38 Filter optimization for real time digital processing of radiofrequency signals: application
39 to oscillator metrology
40 \\}}
41 \end{center}
42
43 % Authors
44 \begin{center}
45 \addalignedblock{0.18\textwidth}{flushleft}{%
46 \includegraphics[height=1.6cm]{images/logo_ubfc}
47 }
48 \addalignedblock{0.28\textwidth}{center}{%
49 G. \textsc{Goavec-M\'erou},\\
50 P.-Y. \textsc{Bourgeois}, J.-M \textsc{Friedt}\\
51 $^{*}$FEMTO-ST, Time \& Frequency dept., Besan\c con, France
52 }
53 \addalignedblock{0.28\textwidth}{center}{%
54 A. \textsc{Hugeat}$^{*}$, J. \textsc{Bernard}\\
55 ~\\
56 FEMTO-ST, DISC dept., Besan\c con, France
57 }
58 \addalignedblock{0.18\textwidth}{flushright}{%
59 \includegraphics[height=1.4cm]{images/logo_femto}
60 }
61 \end{center}
62
63 % First part
64 \newsection{Digital signal processing of ultrastable clock signals}
65
66 Je ne sais pas trop quoi dire ici
67
68 % Second part
69 \newsection{Filter design}
70 \begin{itemize}
71 \item How to implementing filter:\\
72 \addblock{0.48\textwidth}{
73 \begin{enumerate}[noitemsep,nolistsep]
74 \item \textbf{Classical way:}\\
75 Compute the transfer function of a monolithic filter
76 \begin{itemize}[label=$\Rightarrow$, noitemsep, nolistsep]
77 {\color{Green}\item Simplest way to design filter}
78 {\color{Green}\item Great rejection}
79 {\color{Red}\item Consume lot of resources on FPGA}
80 \end{itemize}
81 \end{enumerate}
82 }
83 \addblock{0.48\textwidth}{
84 \begin{enumerate}
85 \setcounter{enumi}{1}
86 \item \textbf{Alternative way (our focus):}\\
87 Chain of little filters
88 \begin{itemize}[label=$\Rightarrow$, noitemsep, nolistsep]
89 {\color{Green}\item Great rejection}
90 {\color{Green}\item Consume less resources on FPGA}
91 {\color{Red}\item Harder way to design filter}
92 \end{itemize}
93 \end{enumerate}
94 }
95 \item The 2\textsuperscript{nd} way could be consider as an optimization problem:
96 \begin{itemize}[noitemsep,nolistsep]
97 \item One or many performance criteria (rejection, noise, throughput...)
98 \item Limited resources (on FPGA)
99 \end{itemize}
images/logo_femto.png

6.04 KB

images/logo_ubfc.png

104 KB