Tom Eichlersmith

Results 198 comments of Tom Eichlersmith

For reference, the CTAN package link is https://ctan.org/pkg/tikz-feynman?lang=en This paper was written and successfully compiles to PDF on Overleaf without any special configuration. I _think_ Overleaf uses the [sharelatex image](https://hub.docker.com/r/sharelatex/sharelatex/tags)...

If you want a simple diagram for quicker testing, here is the document I used to confirm the issue locally with ar5ivist: ```tex \documentclass{article} \usepackage[compat=1.1.0]{tikz-feynman} \begin{document} \begin{figure}[!htb] \centering \begin{tikzpicture} \begin{feynman}...

I agree - unfortunately, the shading and squiggles actually have meaning in our field :laughing: I also saw this locally with ar5ivist (I just did the harder thing of putting...

I also would like this feature but from a different point of view. I have [a project](https://tomeichlersmith.github.io/denv/) and I would like to include its [man pages](https://en.wikipedia.org/wiki/Man_page) in the online mdbook...

I was able to get a solution for my situation after reading [the common mark spec on HTML blocks](https://spec.commonmark.org/0.31.2/#html-blocks). I am using the cmdrun preprocessor and wrapping the resulting _headerless_...

While it would be a big lift, [`snake_case`](https://google.github.io/styleguide/cppguide.html#Variable_Names) is actually what the Google C++ style guide suggests for variable names. (I'm guessing `clang-format` makes the choice to not check the...

Thanks :+1: I was being too quick with creating new branches! We already have a grad student here at UMN working on this (not sure on his GitHub username right...

That would be incredibly helpful, I was planning on just doing that manually.

From [these slides](https://indico.cern.ch/event/422168/contributions/1903300/subcontributions/170168/attachments/888125/1249390/OtherProcessesDW.pdf), it sounds like we need to define a child class of [`G4VExtDecayer`](https://apc.u-paris.fr/~franco/g4doxy/html/classG4VExtDecayer.html). **Or** we use [`G4PrimaryParticle`](https://apc.u-paris.fr/~franco/g4doxy/html/classG4PrimaryParticle.html)'s `SetDaughter` and `SetNext`. Although, I don't see a method for defining...