-
Notifications
You must be signed in to change notification settings - Fork 220
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[LELEC1370] Exam circmes Juin 2022 #889
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hello !
Merci pour ta contribution :)
Pour ce qui est du circuitikz, les diagrammes sont bons. Tu peux utiliser plusieurs fois la commande \draw
dans un environnement tikz pour définir tes chemins (personnellement j'aime bien les séparer en chemin "logique").
Sinon à part ça j'ai fait quelques review sur le rest du code mais ça devrait pas être long à régler :)
\usepackage[oldvoltagedirection]{circuitikz} | ||
\usepackage{amsmath} | ||
|
||
\begin{document} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Le \begin{document} est déjà inclus dans le document de base donc pas besoin de le rajouter
\begin{document} |
@@ -0,0 +1,106 @@ | |||
\documentclass[fr]{../../../../../../eplexam} | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pour avoir accès aux unités (voir plus bas)
\usepackage{../../../../../../eplunits} |
\section{Question Craeye : transitoire} | ||
|
||
Soit le circuit suivant, avec l'interrupteur passant de A à B en $t=0$. \\ | ||
Sachant que $\omega = 2\cdot10^6$ $rad/s$, $R = 1$ $k\Omega$, $L = 1$ $mH$ et $C = 1/6$ $nF$, calculer la valeur de $V_o(t)$ pour $t > 0$.\newline |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
C'est préférable d'utiliser la commande \SI{Nombre}{Unité}
Sachant que $\omega = 2\cdot10^6$ $rad/s$, $R = 1$ $k\Omega$, $L = 1$ $mH$ et $C = 1/6$ $nF$, calculer la valeur de $V_o(t)$ pour $t > 0$.\newline | |
Sachant que $\omega = \SI{2e6}{\radian\per\second}$, $R = \SI{1}{\kilo\ohm}$, $L = \SI{1}{\milli\henry}$ et $C =\SI[parse-numbers = false]{\frac{1}{6}}{\nano\farad}$, calculer la valeur de $V_o(t)$ pour $t > 0$. |
\newpage | ||
\section{Question Craeye : transitoire} | ||
|
||
Soit le circuit suivant, avec l'interrupteur passant de A à B en $t=0$. \\ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Soit le circuit suivant, avec l'interrupteur passant de A à B en $t=0$. \\ | |
Soit le circuit suivant, avec l'interrupteur passant de A à B en $t=0$. | |
Il est préférable d'utiliser 2 retours à la ligne plutôt que des \\
ou des \newline
C'est la première fois que j'utilise Tikz, donc désolé si c'est du spaghetti-code.