mirror of
https://github.com/jlengrand/jlengrand.github.io.git
synced 2026-03-10 08:31:22 +00:00
1.2 KiB
1.2 KiB
layout, status, published, title, author, author_login, author_email, author_url, wordpress_id, wordpress_url, date, categories, tags, comments
| layout | status | published | title | author | author_login | author_email | author_url | wordpress_id | wordpress_url | date | categories | tags | comments | |||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| post | publish | true | Insert urls into a Latex document | Julien Lengrand-Lambert | jlengrand | julien@lengrand.fr | https://www.lengrand.fr | 598 | https://www.lengrand.fr/?p=598 | 2012-05-21 13:18:59.000000000 +02:00 |
|
|
A really simple tip today, that helped me a lot some time ago.
If you use LaTeX to create your reports, you may want to include weblinks or urls.
The process is quite simple, simply include the url package in the header of your document
{% highlight bash %}
\usepackage{url}
{% endhighlight %}
and then insert your desired url :
{% highlight bash %}
\url{https://www.lengrand.fr}
{% endhighlight %}
You may want to play a bit, a there are different url styles. Here is a simple example
{% highlight bash %}
\urlstyle{rm}
{% endhighlight %}
Of course, all those links are still active after your pdf conversion!
Long time I haven't used Latex, I tend to write everything with GDocs now :)