Skip to content
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

how to add table with two columns for references (persons) #195

Open
epjungd opened this issue Feb 7, 2022 · 2 comments
Open

how to add table with two columns for references (persons) #195

epjungd opened this issue Feb 7, 2022 · 2 comments

Comments

@epjungd
Copy link

epjungd commented Feb 7, 2022

0

I have been making my CV with the vitae package and I would like to add in the references section a table with my two references. I have not been able to manage to do it with tibble and brief_entries/detailed_entries.
If someone could give me some ideas I would appreciate it a lot.
Here is a picture of how I want the format to look like:
references

@Nijawi
Copy link

Nijawi commented Dec 23, 2024

I'd also like to see this feature, it surprised me that there wasn't a References/Referees section in the base template

@Nijawi
Copy link

Nijawi commented Dec 23, 2024

Found something of a workaround using minipages as suggested on this post. Other approaches to columns don't export well to PDF, but this seems to do what I need.

# References
\begin{minipage}[t]{0.45\textwidth}

```{r refs}
tribble(
  ~ Title, ~  Institution, ~ Who, ~ Email, ~ Tel,
  "Professor", "University", "John Smith", "[email protected]", "555-555", 
    "Professor", "University", "Hank Smith", "[email protected]", "555-555"
) %>% 
  detailed_entries(Title, Institution, Who, Email, Tel)
```
\end{minipage}
\begin{minipage}[t]{0.1\textwidth}
\hspace{1cm}
\end{minipage}
\begin{minipage}[t]{0.45\textwidth}
```{r refs2}
tribble(
  ~ Title, ~  Institution, ~ Who, ~ Email, ~ Tel,
  "Professor", "University", "John Smith", "[email protected]", "555-555", 
    "Professor", "University", "Hank Smith", "[email protected]", "555-555"
) %>% 
  detailed_entries(Title, Institution, Who, Email, Tel)
```
\end{minipage}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants