Add list of publications

This commit is contained in:
2021-12-09 16:54:14 +01:00
parent 5503446869
commit ae421a2701
4 changed files with 56 additions and 22 deletions

View File

@@ -68,13 +68,10 @@
;; Do not include the subtitle inside the title
(setq org-latex-subtitle-separate t)
(setq org-latex-subtitle-format "\\subtitle{%s}")
#+END_SRC
#+begin_src emacs-lisp
(let ((org-export-before-parsing-hook '(org-ref-glossary-before-parsing
org-ref-acronyms-before-parsing)))
(org-latex-export-to-latex))
#+end_src
(setq org-export-before-parsing-hook '(org-ref-glossary-before-parsing
org-ref-acronyms-before-parsing))
#+END_SRC
* Glossary and Acronyms - Tables :ignore:
@@ -155,10 +152,15 @@
* Test
\minitoc
** Test
A list:
- acronyms acrshort:nass acrshort:mimo acrshort:lti [[acrfull:siso][Single-Input Single-Output (SISO)]]
- glossary terms gls:ka, gls:phi.
- Bibliography citations: [[cite:&dehaeze21_activ_dampin_rotat_platf_using;&dehaeze21_mechat_approac_devel_nano_activ_stabil_system]].
A definition list:
- this :: means that
- that :: means this
Some Footnote[fn:1]
** blabla
@@ -170,6 +172,7 @@ Some Footnote[fn:1]
**** lksdfjasd
** blabla
* Source Blocks
\minitoc
** Matlab Init :noexport:ignore:
#+begin_src matlab :tangle no :exports none :results silent :noweb yes :var current_dir=(file-name-directory buffer-file-name)
<<matlab-dir>>
@@ -327,6 +330,7 @@ Numbering can be continued by using =+n= option as shown below.
#+end_src
* Images
\minitoc
** Normal Image
Figure [[fig:general_control_names]] shows the results of the Tikz code of listing [[lst:tikz_test]].
@@ -371,6 +375,7 @@ Link to subfigure [[fig:general_control_names_1]].
| <<fig:general_control_names_1>> sub figure caption | <<fig:general_control_names_2>> sub figure caption |
* Tables
\minitoc
Table [[tab:table_with_equations]] shows a table with some mathematics inside.
@@ -419,19 +424,36 @@ Table [[tab:table_with_equations]] shows a table with some mathematics inside.
| | Only SISO | Difficult Rejection of Perturbations | Need a reasonably good model of the system |
* Bibliography :ignore:
#+latex: \printbibliography[heading=bibintoc,title={Bibliography}]
* Glossary :ignore:
#+latex: \printglossary[type=\acronymtype]
#+latex: \printglossary
* Appendix :ignore:
#+latex: \appendix
* Mathematical formulas
* Comments on something
* Bibliography :ignore:
#+latex: \printbibliography[heading=bibintoc,title={Bibliography}]
* List of Publications
:PROPERTIES:
:UNNUMBERED: notoc
:END:
#+begin_export latex
\begin{refsection}[ref.bib]
% List all papers even if not cited
\nocite{*}
% Sort by year
\newrefcontext[sorting=ynt]
% Articles
\printbibliography[keyword={publication},heading={subbibliography},title={Articles},env=mypubs,type={article}]
% Proceedings
\printbibliography[keyword={publication},heading={subbibliography},title={In Proceedings},env=mypubs,type={inproceedings}]
\end{refsection}
#+end_export
* Glossary :ignore:
#+latex: \printglossary[type=\acronymtype]
#+latex: \printglossary
* Footnotes
[fn:1]this is a footnote with citation [[cite:&dehaeze21_mechat_approac_devel_nano_activ_stabil_system]].