<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.10.0">Jekyll</generator><link href="https://aleaj.github.io/feed.xml" rel="self" type="application/atom+xml" /><link href="https://aleaj.github.io/" rel="alternate" type="text/html" /><updated>2026-03-18T21:49:38+00:00</updated><id>https://aleaj.github.io/feed.xml</id><title type="html">Alejandro Andres Juanes</title><subtitle>Personal website of Alejandro Andres Juanes - researcher and developer</subtitle><author><name>Alejandro Andres Juanes</name><email>Alejandro.AndresJuanes@ista.ac.at</email></author><entry><title type="html">Using Color Emphasis in Your Content</title><link href="https://aleaj.github.io/tutorial/design/2024/03/18/color-emphasis-guide/" rel="alternate" type="text/html" title="Using Color Emphasis in Your Content" /><published>2024-03-18T00:00:00+00:00</published><updated>2024-03-18T00:00:00+00:00</updated><id>https://aleaj.github.io/tutorial/design/2024/03/18/color-emphasis-guide</id><content type="html" xml:base="https://aleaj.github.io/tutorial/design/2024/03/18/color-emphasis-guide/"><![CDATA[<p>This post shows you how to use your beautiful color palette for emphasis in your content! You now have several ways to add <span class="text-scarlet"><strong>primary-scarlet</strong></span> and other colors to your writing.</p>

<h2 id="text-colors">Text Colors</h2>

<p>You can emphasize individual words or phrases with color:</p>

<ul>
  <li><span class="text-turquoise"><strong>Turquoise surf</strong></span> for cool highlights</li>
  <li><span class="text-cerulean"><strong>Cerulean blue</strong></span> for professional emphasis</li>
  <li><span class="text-amber"><strong>Bright amber</strong></span> for warm attention-grabbing text</li>
  <li><span class="text-scarlet"><strong>Primary scarlet</strong></span> for important warnings or key points</li>
</ul>

<h2 id="background-highlights">Background Highlights</h2>

<p>For more emphasis, you can highlight entire phrases:</p>

<p><span class="highlight-turquoise">This is highlighted in turquoise</span></p>

<p><span class="highlight-amber">This stands out with bright amber</span></p>

<p><span class="highlight-scarlet">This demands attention with scarlet</span></p>

<h2 id="emphasis-boxes">Emphasis Boxes</h2>

<p>For important information, use emphasis boxes:</p>

<div class="emphasis-turquoise">
<strong>💡 Research Insight:</strong> This is perfect for highlighting key findings or important research notes using your turquoise color.
</div>

<div class="emphasis-amber">
<strong>⚡ Important:</strong> Use amber boxes for warnings, important deadlines, or things that need immediate attention.
</div>

<div class="emphasis-scarlet">
<strong>🚨 Critical:</strong> Scarlet boxes are perfect for urgent information, error messages, or critical warnings.
</div>

<h2 id="how-to-use-these-in-your-content">How to Use These in Your Content</h2>

<h3 id="method-1-inline-html-in-markdown">Method 1: Inline HTML in Markdown</h3>

<div class="language-markdown highlighter-rouge"><div class="highlight"><pre class="highlight"><code>This is normal text with <span class="nt">&lt;span</span> <span class="na">class=</span><span class="s">"text-scarlet"</span><span class="nt">&gt;</span>scarlet emphasis<span class="nt">&lt;/span&gt;</span> in the middle.
</code></pre></div></div>

<h3 id="method-2-css-classes">Method 2: CSS Classes</h3>

<div class="language-html highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nt">&lt;span</span> <span class="na">class=</span><span class="s">"text-turquoise"</span><span class="nt">&gt;</span>**Bold turquoise text**<span class="nt">&lt;/span&gt;</span>
<span class="nt">&lt;span</span> <span class="na">class=</span><span class="s">"highlight-amber"</span><span class="nt">&gt;</span>Highlighted amber text<span class="nt">&lt;/span&gt;</span>
</code></pre></div></div>

<h3 id="method-3-emphasis-boxes">Method 3: Emphasis Boxes</h3>

<div class="language-html highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nt">&lt;div</span> <span class="na">class=</span><span class="s">"emphasis-turquoise"</span><span class="nt">&gt;</span>
<span class="nt">&lt;strong&gt;</span>Title:<span class="nt">&lt;/strong&gt;</span> Your important content here.
<span class="nt">&lt;/div&gt;</span>
</code></pre></div></div>

<h3 id="method-4-direct-css-advanced">Method 4: Direct CSS (Advanced)</h3>

<div class="language-html highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nt">&lt;span</span> <span class="na">style=</span><span class="s">"color: var(--primary-scarlet); font-weight: bold;"</span><span class="nt">&gt;</span>
Custom scarlet text
<span class="nt">&lt;/span&gt;</span>
</code></pre></div></div>

<h2 id="available-color-classes">Available Color Classes</h2>

<h3 id="text-colors-1">Text Colors:</h3>
<ul>
  <li><code class="language-plaintext highlighter-rouge">.text-turquoise</code> - <span class="text-turquoise">Turquoise surf</span></li>
  <li><code class="language-plaintext highlighter-rouge">.text-cerulean</code> - <span class="text-cerulean">Cerulean blue</span></li>
  <li><code class="language-plaintext highlighter-rouge">.text-amber</code> - <span class="text-amber">Bright amber</span></li>
  <li><code class="language-plaintext highlighter-rouge">.text-scarlet</code> - <span class="text-scarlet">Primary scarlet</span></li>
</ul>

<h3 id="highlights">Highlights:</h3>
<ul>
  <li><code class="language-plaintext highlighter-rouge">.highlight-turquoise</code> - <span class="highlight-turquoise">Turquoise highlight</span></li>
  <li><code class="language-plaintext highlighter-rouge">.highlight-amber</code> - <span class="highlight-amber">Amber highlight</span></li>
  <li><code class="language-plaintext highlighter-rouge">.highlight-scarlet</code> - <span class="highlight-scarlet">Scarlet highlight</span></li>
</ul>

<h3 id="emphasis-boxes-1">Emphasis Boxes:</h3>
<ul>
  <li><code class="language-plaintext highlighter-rouge">.emphasis-turquoise</code> - For insights and information</li>
  <li><code class="language-plaintext highlighter-rouge">.emphasis-amber</code> - For important notices</li>
  <li><code class="language-plaintext highlighter-rouge">.emphasis-scarlet</code> - For critical warnings</li>
</ul>

<h2 id="physics-examples">Physics Examples</h2>

<p>Here’s how you might use these in your physics content:</p>

<p>The <span class="text-turquoise"><strong>quantum coherence time</strong></span> in our superconducting circuits was measured to be <span class="highlight-amber">T₂ = 45 μs</span>.</p>

<div class="emphasis-scarlet">
<strong>⚠️ Safety Note:</strong> Always ensure proper microwave power levels when working with superconducting qubits to avoid decoherence.
</div>

<div class="emphasis-turquoise">
<strong>🔬 Research Finding:</strong> We observed strong coupling between photons and artificial atoms with coupling strength g/2π = 200 MHz.
</div>

<p>The colors automatically adapt to light and dark themes, so they’ll always look great! 🎨</p>]]></content><author><name>Alejandro Andres Juanes</name><email>Alejandro.AndresJuanes@ista.ac.at</email></author><category term="Tutorial" /><category term="Design" /><summary type="html"><![CDATA[Learn how to use your custom color palette for emphasis in blog posts and content]]></summary></entry><entry><title type="html">Getting Started with My Research Website</title><link href="https://aleaj.github.io/research/website/personal/2024/03/18/getting-started/" rel="alternate" type="text/html" title="Getting Started with My Research Website" /><published>2024-03-18T00:00:00+00:00</published><updated>2024-03-18T00:00:00+00:00</updated><id>https://aleaj.github.io/research/website/personal/2024/03/18/getting-started</id><content type="html" xml:base="https://aleaj.github.io/research/website/personal/2024/03/18/getting-started/"><![CDATA[<p>Hello and welcome to my freshly minted research website! This is my first official blog post as I launch this platform to share my work, thoughts, and journey in the world of research and development.</p>

<h2 id="why-this-website">Why This Website?</h2>

<p>I decided to create this personal website for several reasons:</p>

<ul>
  <li><strong>Share my research</strong>: A central place to showcase my publications, projects, and ongoing work</li>
  <li><strong>Document my journey</strong>: Reflect on challenges, breakthroughs, and lessons learned</li>
  <li><strong>Connect with others</strong>: Reach out to fellow researchers and potential collaborators</li>
  <li><strong>Build my professional presence</strong>: Create a comprehensive portfolio of my academic and professional work</li>
</ul>

<h2 id="what-to-expect">What to Expect</h2>

<p>Going forward, you can expect posts about:</p>

<h3 id="research-updates">Research Updates</h3>
<p>I’ll share updates on my current projects, including methodology insights, preliminary findings, and the occasional research roadblock (because let’s be honest, they happen!).</p>

<h3 id="technical-insights">Technical Insights</h3>
<p>Posts about tools, frameworks, and techniques I’m using in my work. This might include programming tutorials, data analysis methods, or workflow optimizations.</p>

<h3 id="conference-experiences">Conference Experiences</h3>
<p>Reflections on conferences I attend, papers I present, and interesting discussions with fellow researchers.</p>

<h3 id="academic-life">Academic Life</h3>
<p>The reality of being a researcher - the good, the challenging, and everything in between.</p>

<h2 id="current-projects">Current Projects</h2>

<p>I’m currently working on [briefly describe your main research areas]. I’m particularly excited about [specific project or direction], which I’ll be sharing more about in upcoming posts.</p>

<h2 id="lets-connect">Let’s Connect!</h2>

<p>I’m always eager to connect with fellow researchers, especially those working in [your field]. Feel free to reach out via email or connect with me on social media - you’ll find all my contact information on this site.</p>

<p>Thanks for stopping by, and I hope you’ll find something valuable here. Stay tuned for regular updates!</p>

<hr />

<p><em>This post marks the beginning of my academic blogging journey. I’m looking forward to sharing more insights and connecting with the research community through this platform.</em></p>]]></content><author><name>Alejandro Andres Juanes</name><email>Alejandro.AndresJuanes@ista.ac.at</email></author><category term="Research" /><category term="Website" /><category term="Personal" /><summary type="html"><![CDATA[Setting up my personal research website and starting my academic blog]]></summary></entry><entry><title type="html">Welcome to My Blog</title><link href="https://aleaj.github.io/personal/academia/2023/10/01/welcome/" rel="alternate" type="text/html" title="Welcome to My Blog" /><published>2023-10-01T00:00:00+00:00</published><updated>2023-10-01T00:00:00+00:00</updated><id>https://aleaj.github.io/personal/academia/2023/10/01/welcome</id><content type="html" xml:base="https://aleaj.github.io/personal/academia/2023/10/01/welcome/"><![CDATA[<p>Welcome to my personal blog! I’m excited to share this space with you, where I’ll be documenting my journey as a researcher and sharing insights from my work in [your field].</p>

<h2 id="what-you-can-expect">What You Can Expect</h2>

<p>This blog will serve as a platform for me to share:</p>

<ul>
  <li><strong>Research insights</strong>: Updates on my current projects, methodological discoveries, and paper publications</li>
  <li><strong>Academic life</strong>: Reflections on graduate school, conference experiences, and the ups and downs of research life</li>
  <li><strong>Tools and tips</strong>: Software, workflows, and techniques that have improved my productivity and research quality</li>
  <li><strong>Personal thoughts</strong>: Broader reflections on science, academia, and maintaining balance in research life</li>
</ul>

<h2 id="why-im-blogging">Why I’m Blogging</h2>

<p>As someone who has benefited tremendously from reading other researchers’ blogs and personal websites, I wanted to contribute back to this community. There’s something valuable about hearing the human side of research – the struggles, the breakthroughs, and the everyday reality of doing science.</p>

<p>I also believe that writing about my work helps me think more clearly about it. Teaching and explaining concepts forces you to understand them more deeply, and I’m hoping this blog will serve that purpose for me.</p>

<h2 id="a-bit-about-me">A Bit About Me</h2>

<p>I’m currently [your position] at [your institution], working on [brief description of research]. My research focuses on [research areas], and I’m particularly interested in [specific interests].</p>

<p>When I’m not buried in papers or code, you can find me [personal interests/hobbies]. I believe strongly in work-life balance and will definitely be writing about that journey.</p>

<h2 id="whats-coming-next">What’s Coming Next</h2>

<p>I have several posts in the pipeline covering:</p>

<ul>
  <li>My experience presenting at my first major conference</li>
  <li>A deep dive into the research methodology I’m using for my current project</li>
  <li>A review of the tools and software that have revolutionized my research workflow</li>
  <li>Reflections on choosing a research direction and finding your niche</li>
</ul>

<h2 id="lets-connect">Let’s Connect</h2>

<p>I’d love to hear from readers! If you have questions about my research, suggestions for blog topics, or just want to say hello, please don’t hesitate to <a href="mailto:Alejandro.AndresJuanes@ista.ac.at">reach out</a>.</p>

<p>You can also find me on <a href="#">LinkedIn</a> and <a href="#">Twitter</a>, where I share quick updates and engage with the broader research community.</p>

<p>Thanks for stopping by, and I hope you find something useful here. Happy reading!</p>

<hr />

<p><em>This post marks the beginning of what I hope will be a long and engaging conversation about research, academia, and life as a scientist. Stay tuned for regular updates!</em></p>]]></content><author><name>Alejandro Andres Juanes</name><email>Alejandro.AndresJuanes@ista.ac.at</email></author><category term="Personal" /><category term="Academia" /><summary type="html"><![CDATA[Introduction to my personal blog and what to expect from future posts]]></summary></entry></feed>